/* ============================================
   ROAST & REVEL — Artisan Café
   Style Sheet
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --espresso: #2C1810;
  --espresso-dark: #1A0F0A;
  --espresso-light: #4A2C1A;
  --coffee: #6F4E37;
  --cream: #F5F0EB;
  --cream-light: #FAF6F2;
  --white: #FAFAFA;
  --gold: #C8A97E;
  --gold-light: #D4A574;
  --gold-dark: #8B6F47;

  --text-dark: #2C1810;
  --text-muted: #6F4E37;
  --text-light: #8B6F47;
  --border: rgba(44, 24, 16, 0.1);
  --border-gold: rgba(200, 169, 126, 0.25);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.12);
  --shadow-gold: 0 8px 30px rgba(200, 169, 126, 0.35);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY HELPERS ===== */
.text-gold { color: var(--gold); }
.text-espresso { color: var(--espresso); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-coffee { color: var(--coffee); }
.bg-cream { background: var(--cream); }
.bg-espresso { background: var(--espresso); }
.bg-white { background: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--gold);
  color: var(--espresso-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--espresso-dark);
  transform: translateY(-2px);
}
.btn-espresso {
  background: var(--espresso);
  color: var(--white);
}
.btn-espresso:hover {
  background: var(--espresso-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-cream {
  background: var(--cream);
  color: var(--espresso-dark);
}
.btn-cream:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-coffee {
  background: var(--coffee);
  color: var(--white);
}
.btn-coffee:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav.scrolled {
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(44, 24, 16, 0.15);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(250, 250, 250, 0.8);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-page { color: var(--gold); }
.nav-links a.active-page::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44, 24, 16, 0.75) 0%, rgba(26, 15, 10, 0.5) 50%, rgba(44, 24, 16, 0.75) 100%),
    url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1600&q=80') center/cover;
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 20px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 126, 0.3);
  padding: 8px 24px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250, 250, 250, 0.7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 250, 250, 0.4);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200, 169, 126, 0.5), transparent);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--espresso-dark);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44, 24, 16, 0.85), rgba(26, 15, 10, 0.7)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1600&q=80') center/cover;
  opacity: 0.3;
}
.page-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 12px;
}
.page-hero p {
  position: relative;
  color: rgba(250, 250, 250, 0.6);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}
.section-desc-light { color: rgba(250, 250, 250, 0.6); }
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

/* ===== STORY SECTION ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.story-image:hover img { transform: scale(1.03); }
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.15), transparent);
}
.story-image .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(250, 250, 250, 0.95);
  color: var(--espresso-dark);
  padding: 12px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.story-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.story-content h2 span { color: var(--gold); }
.story-content .sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.story-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.story-content .signature {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--espresso);
  font-size: 1.05rem;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* ===== SIGNATURE DRINKS ===== */
.signature-section {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.signature-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.05), transparent);
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.drink-card {
  background: rgba(250, 250, 250, 0.05);
  border: 1px solid rgba(200, 169, 126, 0.1);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.drink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.drink-card:hover::before { transform: translateX(100%); }
.drink-card:hover {
  background: rgba(250, 250, 250, 0.08);
  transform: translateY(-6px);
  border-color: rgba(200, 169, 126, 0.25);
}
.drink-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200, 169, 126, 0.2);
  transition: border-color 0.4s;
}
.drink-card:hover .drink-icon { border-color: rgba(200, 169, 126, 0.5); }
.drink-icon img { width: 100%; height: 100%; object-fit: cover; }
.drink-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.drink-card .price {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.drink-card p {
  color: rgba(250, 250, 250, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== MENU ===== */
.menu-section { background: var(--white); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 28px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.menu-tab:hover { color: var(--espresso); }
.menu-tab.active {
  color: var(--espresso);
  border-bottom-color: var(--gold);
}
.menu-items { display: none; }
.menu-items.active { display: grid; }
.menu-items {
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  animation: fadeUp 0.5s forwards;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}
.menu-item-info h4 {
  font-size: 1.02rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.menu-item-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
}
.menu-item .item-price {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 24px;
}

/* ===== AMBIANCE ===== */
.ambiance {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--espresso-dark);
  overflow: hidden;
}
.ambiance-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 24, 16, 0.88) 0%, rgba(26, 15, 10, 0.3) 100%),
    url('https://images.unsplash.com/photo-1445116572660-236099ec97a0?w=1600&q=80') center/cover;
  transform: scale(1.05);
  transition: transform 8s;
}
.ambiance:hover .ambiance-bg { transform: scale(1); }
.ambiance-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.ambiance-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.ambiance-content p {
  color: rgba(250, 250, 250, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.ambiance-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.ambiance-stat { text-align: center; }
.ambiance-stat .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 600;
}
.ambiance-stat .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(250, 250, 250, 0.45);
  margin-top: 4px;
}

/* ===== TESTIMONIALS / WORDS ===== */
.testimonials-section {
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  position: relative;
  border: 1px solid rgba(44, 24, 16, 0.06);
  transition: all 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.testimonial-author .role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 8px;
}
.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: span 1; }
.gallery-grid-page .gallery-item { height: 300px; }
.gallery-grid-page .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }
.gallery-grid-page .gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(250, 250, 250, 0.4);
  padding: 8px 20px;
}

/* ===== RESERVATIONS ===== */
.reservation-section {
  background: linear-gradient(135deg, var(--espresso-dark) 0%, var(--espresso) 100%);
  position: relative;
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.reservation-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.reservation-info p {
  color: rgba(250, 250, 250, 0.55);
  margin-bottom: 32px;
  line-height: 1.8;
}
.reservation-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.reservation-detail .icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.reservation-detail .detail-text h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.reservation-detail .detail-text p {
  color: rgba(250, 250, 250, 0.45);
  font-size: 0.85rem;
  margin-bottom: 0;
}
.reservation-form {
  background: rgba(250, 250, 250, 0.05);
  border: 1px solid rgba(200, 169, 126, 0.1);
  border-radius: 4px;
  padding: 40px;
}
.reservation-form h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(250, 250, 250, 0.45);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(250, 250, 250, 0.06);
  border: 1px solid rgba(200, 169, 126, 0.15);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 250, 250, 0.2);
}
.form-group select option { color: var(--text-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== MAP ===== */
.map-container {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}
.map-placeholder {
  background: var(--cream);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.map-placeholder svg { margin-bottom: 12px; }
.map-placeholder small {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--espresso-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p {
  color: rgba(250, 250, 250, 0.35);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(250, 250, 250, 0.35);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social a:hover svg { fill: var(--espresso-dark); }
.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(250, 250, 250, 0.25);
  font-size: 0.78rem;
}

/* ===== ANIMATIONS ===== */
/* Base reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Directional reveals */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children — add to parent */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.stagger-children.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.stagger-children.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.stagger-children.visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.85s; }

/* Keyframe animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 0.4; transform: translateY(-20px) scale(1.2); }
  100% { opacity: 0; transform: translateY(-40px) scale(0.8); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(200, 169, 126, 0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.page-fade {
  animation: pageIn 0.6s ease-out;
}

/* Decorative steam for hero or drink sections */
.steam-container { position: absolute; pointer-events: none; }
.steam-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to top, rgba(200,169,126,0.4), transparent);
  border-radius: 2px;
  animation: steam 3s ease-in-out infinite;
}

/* ===== SECTION INDEX CARDS (index page) ===== */
.section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.section-card:hover::before { transform: scaleX(1); }
.section-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.section-card .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.section-card:hover .card-icon { background: var(--gold); }
.section-card:hover .card-icon svg { stroke: var(--white); }
.section-card h3 {
  font-size: 1.15rem;
  color: var(--espresso);
  margin-bottom: 8px;
}
.section-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.section-card .card-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.3s;
}
.section-card:hover .card-link { color: var(--espresso); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid { gap: 48px; }
  .drinks-grid, .section-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-grid-page { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-page .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 300px; }
  .gallery-grid-page .gallery-item:nth-child(6) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 15, 10, 0.98);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: block; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-image img { height: 360px; }
  .story-content { order: -1; }
  .drinks-grid, .section-cards { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .ambiance { height: auto; padding: 80px 0; }
  .ambiance-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid-page { grid-template-columns: 1fr; }
  .gallery-grid-page .gallery-item { height: 240px !important; }
  .gallery-grid-page .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-grid-page .gallery-item:nth-child(6) { grid-column: span 1; }
  .reservation-grid { grid-template-columns: 1fr; gap: 40px; }
  .reservation-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 150px);
  }
  .gallery-grid-page .gallery-item { height: 200px !important; }
}
