/* ═══════════════════════════════════════════════
   88 THAI HOUSE — STYLESHEET (Gold & White Theme)
   Palette: White #FFFFFF · Gold #C9A84C · Cream #FBF8F2
            Charcoal #1C1C1E · Emerald #1A3D2B
═══════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --gold-dark: #A07C28;
  --gold-pale: #F5ECD4;
  --white: #FFFFFF;
  --cream: #FBF8F2;
  --cream-dark: #F0EAE0;
  --charcoal: #1C1C1E;
  --charcoal-light: #2C2C2E;
  --emerald: #1A3D2B;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888880;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ─── UTILITIES ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white { background: var(--white); color: var(--gold); }
.btn-white:hover { background: var(--cream); }
.btn.full-width { width: 100%; text-align: center; display: block; }

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── STICKY BAR ─────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.sticky-phone svg { color: var(--gold); flex-shrink: 0; }
.sticky-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.sticky-cta:hover { background: var(--gold-dark); }

/* ─── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
}
.nav-logo { display: flex; align-items: baseline; gap: 0.5rem; }
.logo-88 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
/* Hero: white logo text; after scroll: dark */
.nav:not(.scrolled) .logo-text { color: var(--white); }
.nav.scrolled .logo-text { color: var(--text-dark); }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-cta {
  border: 1.5px solid var(--gold) !important;
  padding: 0.5rem 1.2rem !important;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav:not(.scrolled) .nav-hamburger span { background: var(--white); }
.nav.scrolled .nav-hamburger span { background: var(--text-dark); }
.nav-hamburger span { display: block; width: 24px; height: 1px; transition: all 0.3s; }

/* ─── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 80%; max-width: 320px; height: 100vh;
  background: var(--white);
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 5rem 2.5rem 2rem;
  border-left: 2px solid var(--gold-pale);
  box-shadow: -4px 0 30px rgba(0,0,0,0.08);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 1.5rem; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(26,61,43,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 25%, rgba(201,168,76,0.18) 0%, transparent 45%),
    linear-gradient(160deg, #0d0d0e 0%, #1C1C1E 45%, #101210 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; opacity: 0.9;
}
.hero-title {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.2rem; margin-bottom: 1.5rem;
}
.title-88 {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 700; color: var(--gold);
  line-height: 0.9; letter-spacing: -0.02em;
}
.title-thai {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 300; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--white);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ─── INTRO BAND ─────────────────────────────── */
.intro-band { 
  background: var(--gold); 
  padding: 2rem 1rem; /* Slightly more padding for breathing room */
}

.band-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* ─── MENU CHAPTERS ──────────────────────────── */
.menu-section { padding: 7rem 0; background: var(--cream); }
.chapters-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.chapter-card { position: relative; overflow: hidden; cursor: pointer; background: var(--white); }
.chapter-image { position: relative; height: 280px; overflow: hidden; }
.chapter-img-1 { background: linear-gradient(135deg, #c9a84c22, #1a3d2b33, #f5ecd4); }
.chapter-img-2 { background: linear-gradient(135deg, #c9a84c33, #c4927a22, #fff8ee); }
.chapter-img-3 { background: linear-gradient(135deg, #1a3d2b22, #c9a84c22, #f0f5f2); }
.chapter-img-4 { background: linear-gradient(135deg, #c4927a22, #c9a84c33, #fff5f0); }
.chapter-image::after {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem; color: rgba(201,168,76,0.18); pointer-events: none;
}
.chapter-img-1::after { content: '✦'; }
.chapter-img-2::after { content: '◈'; }
.chapter-img-3::after { content: '⬡'; }
.chapter-img-4::after { content: '❋'; }
.chapter-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 40%, rgba(201,168,76,0.08) 100%);
  transition: background 0.4s;
}
.chapter-card:hover .chapter-overlay { background: linear-gradient(to bottom, rgba(255,255,255,0) 20%, rgba(201,168,76,0.15) 100%); }
.chapter-number {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.chapter-body {
  padding: 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.chapter-card:hover .chapter-body { border-bottom-color: var(--gold); }
.chapter-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.chapter-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.75rem; }
.chapter-desc { font-size: 0.98rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.2rem; }
.chapter-link { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); transition: letter-spacing 0.3s; }
.chapter-card:hover .chapter-link { letter-spacing: 0.25em; }

/* ─── LIVE MENU ──────────────────────────────── */
.live-menu-section { padding: 7rem 0; background: var(--white); }
.menu-tabs {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 3rem;
}
.menu-tab {
  padding: 0.85rem 1.8rem;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
  background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s; margin-bottom: -1px;
}
.menu-tab:hover { color: var(--gold); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 500; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-chapter-title {
  text-align: center; margin-bottom: 2rem;
}
.menu-chapter-title h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--text-dark);
}
.menu-chapter-title p { font-size: 0.88rem; color: var(--text-light); font-style: italic; }
.menu-items-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
  display: flex; justify-content: space-between; align-items: start; gap: 1rem;
}
.menu-item:nth-child(odd) { border-right: 1px solid var(--cream-dark); }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.menu-item-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.menu-item-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.4rem; }
.menu-tag {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-pale);
  padding: 0.15rem 0.5rem; background: var(--gold-pale);
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
  white-space: nowrap;
}
.menu-loading { text-align: center; padding: 3rem; color: var(--text-light); font-style: italic; }
.menu-price-note {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.75rem; color: var(--gold);
  background: var(--gold-pale); padding: 0.35rem 1rem;
  letter-spacing: 0.05em;
}
.menu-item-price { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; }
.menu-item-price-note { font-size: 0.65rem; color: var(--text-light); white-space: nowrap; }
.menu-print-btn {
  display: flex; justify-content: center; margin-top: 3rem;
}

/* ─── STORY ──────────────────────────────────── */
.story-section { background: var(--charcoal); padding: 7rem 0; }
.story-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.story-image-frame {
  position: relative; padding-bottom: 125%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
}
.story-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(0,0,0,0.15) 100%);
}
.ornament { font-size: 5rem; color: rgba(201,168,76,0.15); }
.story-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 90px; height: 90px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.badge-88 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.badge-text { font-size: 0.5rem; letter-spacing: 0.15em; color: var(--white); }
.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  color: var(--white); margin-bottom: 2rem; line-height: 1.2;
}
.story-title em { color: var(--gold); font-style: italic; }
.story-text p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; line-height: 1.85; }
.story-text strong { color: var(--gold); font-weight: 500; }
.story-closing { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); font-style: italic; margin: 2rem 0; }

/* ─── MENU CTA BAND ─────────────────────────── */
.menu-cta-band { background: var(--charcoal); padding: 4rem 0; }
.menu-cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.menu-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 0.4rem;
}
.menu-cta-sub {
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}
@media (max-width: 600px) {
  .menu-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── CATERING ───────────────────────────────── */
.catering-section { padding: 3.5rem 0; background: var(--cream); border-top: 1px solid var(--cream-dark); }
.catering-simple {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.catering-simple-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.catering-simple-desc {
  font-size: 1rem; color: var(--text-light); line-height: 1.7; max-width: 480px;
}
.catering-simple-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 700px) {
  .catering-simple { flex-direction: column; align-items: flex-start; }
}

/* ─── REVIEWS ────────────────────────────────── */
.reviews-section { padding: 7rem 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.review-card {
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,0.1); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.review-text {
  font-family: var(--font-display);
  font-size: 1.15rem; font-style: italic;
  color: var(--text-mid); line-height: 1.75; margin-bottom: 1.2rem;
}
.review-author { font-size: 0.82rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }

/* ─── RESERVATION ────────────────────────────── */
.reserve-section { background: var(--charcoal); padding: 7rem 0; }
.reserve-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300;
  color: var(--white); margin-bottom: 1rem; line-height: 1.1;
}
.reserve-subtitle { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; line-height: 1.75; }
.reserve-phone {
  display: inline-block;
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--gold); transition: color 0.2s;
}
.reserve-phone:hover { color: var(--gold-light); }
.reserve-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body); font-size: 1rem;
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: 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(255,255,255,0.2); }
.form-group select option { background: var(--charcoal-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 0.5rem; }
.form-note a { color: var(--gold); }
.form-success { text-align: center; padding: 4rem 2rem; border: 1px solid rgba(201,168,76,0.3); }
.success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.form-success p { color: rgba(255,255,255,0.5); }

/* ─── FOOTER ─────────────────────────────────── */
.footer { background: var(--charcoal); padding: 5rem 0 2rem; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }
.footer-logo .logo-text { color: rgba(255,255,255,0.6); }
.footer-address { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 1rem; }
.footer-phone { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; transition: color 0.2s; }
.footer-phone:hover { color: var(--gold-light); }
.footer-hours p { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-hours strong { color: rgba(255,255,255,0.7); }
.footer-map { border: 1px solid rgba(201,168,76,0.15); overflow: hidden; }
.footer-map iframe { display: block; filter: grayscale(40%) invert(5%); }
.footer-links h4 { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; margin-bottom: 2rem; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-social a { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1); padding-top: 2rem;
  text-align: center; max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
.footer-bottom em { color: rgba(201,168,76,0.5); }

/* ─── PRINTABLE MENU ─────────────────────────── */
@media print {
  .nav, .sticky-bar, .hero, .intro-band, .chapters-grid,
  .story-section, .catering-section, .reviews-section,
  .reserve-section, .footer, .menu-tabs, .menu-print-btn { display: none !important; }
  body { background: #fff; color: #000; }
  .live-menu-section { padding: 0; }
  .print-menu-header { display: block !important; text-align: center; padding: 2rem 0 1rem; border-bottom: 2px solid #C9A84C; margin-bottom: 2rem; }
  .menu-panel { display: block !important; page-break-inside: avoid; margin-bottom: 2rem; }
  .menu-items-grid { grid-template-columns: 1fr 1fr; }
  .menu-item { padding: 0.75rem; border: none; border-bottom: 1px solid #eee; }
  .menu-item:nth-child(odd) { border-right: 1px solid #eee; }
  .menu-item-name { font-size: 1rem; color: #000; }
  .menu-item-desc { color: #555; }
  .menu-item-price { color: #C9A84C; }
}
.print-menu-header { display: none; }

/* ─── ANIMATIONS ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .story-inner, .reserve-inner, .catering-inner { gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .chapters-grid { grid-template-columns: 1fr; gap: 1px; }
  .chapter-image { height: 200px; }
  .story-inner, .catering-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-image-frame { padding-bottom: 70%; }
  .story-visual { order: -1; }
  .catering-highlights { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reserve-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; }
  .menu-tabs { gap: 0; }
  .menu-tab { padding: 0.75rem 1rem; font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .title-88 { font-size: 7rem; }
  .container { padding: 0 1.25rem; }
  .catering-actions { flex-direction: column; }
}
