/* ============================================
   TAKI — Design tokens (from Brand Guidelines)
   ============================================ */
:root{
  --olive: #1E380E;
  --olive-deep: #142808;
  --ivory: #FEF8E6;
  --champagne: #F7E7CE;
  --white: #FFFCF7;
  --onyx: #050505;
  --gold: #AB8E4B;
  --gold-light: #F8DC80;
  --gold-grad: linear-gradient(120deg, #AB8E4B 0%, #F8DC80 45%, #AB8E4B 100%);

  --font-display: 'Playfair Display', 'Georgia', serif; /* stand-in for IvyPresto Display */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-script: 'Alex Brush', cursive; /* stand-in for Above the Beyond Script */

  --ease: cubic-bezier(.22,1,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--ivory);
  color:var(--olive);
  font-family:var(--font-body);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ font-family:var(--font-display); font-weight:600; line-height:1.1; }
.script{ font-family:var(--font-script); font-weight:400; }
.accent{ color:var(--gold); }
.accent-gold{ color:var(--gold-light); }
::selection{ background:var(--gold-light); color:var(--olive); }

.section-eyebrow{
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:.72rem;
  font-weight:600;
  color:var(--gold);
  margin-bottom:.9rem;
}
.section-eyebrow.light{ color:var(--gold-light); }

.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.95rem 2.1rem;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.85rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-3px); }
.btn-gold{ background:var(--gold-grad); background-size:200% 100%; color:var(--olive-deep); box-shadow:0 10px 30px -10px rgba(171,142,75,.6); }
.btn-gold:hover{ background-position:100% 0; box-shadow:0 16px 34px -8px rgba(171,142,75,.75); }
.btn-ghost{ border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-ghost:hover{ background:rgba(255,255,255,.12); }
.btn-outline{ border-color:var(--olive); color:var(--olive); }
.btn-outline:hover{ background:var(--olive); color:var(--ivory); }
.btn-sm{ padding:.7rem 1.4rem; font-size:.72rem; }
.btn-lg{ padding:1.15rem 2.8rem; font-size:.95rem; }

/* ============ Scroll reveal (JS toggles .in-view) ============ */
.reveal-fade, .reveal-up{
  opacity:0;
  transition:opacity .9s var(--ease), transform .9s var(--ease);
  will-change:opacity, transform;
}
.reveal-fade{ transform:translateY(0); }
.reveal-up{ transform:translateY(34px); }
.reveal-fade.in-view, .reveal-up.in-view{ opacity:1; transform:translateY(0); }
.delay-1.in-view{ transition-delay:.12s; }
.delay-2.in-view{ transition-delay:.24s; }
.delay-3.in-view{ transition-delay:.36s; }

/* ============ Cursor glow + scroll progress ============ */
.cursor-glow{
  position:fixed; top:0; left:0; width:26px; height:26px; border-radius:50%;
  background:radial-gradient(circle, rgba(248,220,128,.55), transparent 70%);
  pointer-events:none; z-index:9999; transform:translate(-50%,-50%);
  transition:opacity .3s ease, transform .12s ease-out;
  opacity:0; mix-blend-mode:screen;
}
@media(hover:hover) and (pointer:fine){ .cursor-glow.active{ opacity:1; } }

.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:var(--gold-grad); z-index:9998; transition:width .1s linear;
}

/* ============ NAV ============ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:1.1rem 0;
  transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled{
  background:rgba(30,56,14,.92);
  backdrop-filter:blur(10px);
  padding:.6rem 0;
  box-shadow:0 10px 30px -14px rgba(0,0,0,.4);
}
.nav-inner{
  max-width:1280px; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
}
.nav-logo-img{ height:34px; transition:height .4s var(--ease); }
.nav.scrolled .nav-logo-img{ height:28px; }
.nav-links{ display:flex; gap:2.1rem; }
.nav-links a{
  color:var(--white); font-size:.82rem; text-transform:uppercase; letter-spacing:.12em; font-weight:500;
  position:relative; padding-bottom:4px;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold-light);
  transition:width .35s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{
  background:var(--gold-grad); color:var(--olive-deep); padding:.6rem 1.5rem; border-radius:999px;
  font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  transition:transform .3s var(--ease);
}
.nav-cta:hover{ transform:translateY(-2px); }
.nav-burger{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-burger span{ width:24px; height:2px; background:var(--white); border-radius:2px; transition:transform .3s var(--ease), opacity .3s; }
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero{
  position:relative; height:100svh; min-height:560px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; }
.hero-bg-img{
  width:100%; height:100%; object-fit:cover; object-position:center 30%;
  transform:scale(1.12);
  animation:heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom{ from{ transform:scale(1.12); } to{ transform:scale(1); } }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(5,8,3,.55) 0%, rgba(10,15,6,.45) 40%, rgba(5,8,3,.85) 100%);
}
.hero-leaf-float{
  position:absolute; font-size:2.4rem; opacity:.25; filter:blur(.3px);
  animation:floatY 7s ease-in-out infinite;
  pointer-events:none;
}
.leaf-1{ top:18%; left:8%; animation-delay:0s; }
.leaf-2{ bottom:15%; right:10%; animation-delay:2s; font-size:3rem; }
@keyframes floatY{ 0%,100%{ transform:translateY(0) rotate(0deg);} 50%{ transform:translateY(-22px) rotate(8deg);} }

.hero-content{
  position:relative; z-index:2; text-align:center; color:var(--white);
  padding:0 1.5rem; max-width:760px;
}
.eyebrow{
  text-transform:uppercase; letter-spacing:.35em; font-size:.72rem; font-weight:600;
  color:var(--gold-light); margin-bottom:1.6rem;
}
.hero-logo{ width:min(420px, 70vw); margin:0 auto 1.6rem; }
.hero-tagline{
  font-family:var(--font-heading); font-style:italic; font-size:clamp(1.1rem,2.4vw,1.5rem);
  color:var(--champagne); margin-bottom:1.2rem;
}
.hero-am-pm{
  display:flex; align-items:center; justify-content:center; gap:1rem; margin-bottom:2.4rem;
  font-family:var(--font-display); letter-spacing:.3em; font-size:.9rem; color:var(--gold-light);
}
.hero-am-pm-line{ width:60px; height:1px; background:var(--gold-light); opacity:.6; }
.hero-actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom:2.2rem; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid rgba(255,255,255,.6); border-radius:20px;
  display:flex; justify-content:center; padding-top:8px; z-index:2;
}
.scroll-cue-dot{ width:5px; height:5px; border-radius:50%; background:var(--gold-light); animation:scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot{ 0%{ transform:translateY(0); opacity:1;} 70%{ transform:translateY(14px); opacity:0;} 100%{ opacity:0;} }

/* ============ MARQUEE ============ */
.marquee{
  background:var(--olive); color:var(--gold-light); overflow:hidden; padding:.9rem 0;
  border-top:1px solid rgba(248,220,128,.25); border-bottom:1px solid rgba(248,220,128,.25);
}
.marquee-track{
  display:flex; gap:.8rem; white-space:nowrap; width:max-content;
  font-family:var(--font-heading); font-style:italic; font-size:1.05rem; letter-spacing:.03em;
  animation:marquee 26s linear infinite;
}
.marquee-track span.dot{ opacity:.5; padding:0 .4rem; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============ STORY ============ */
.story{ padding:7.5rem 2rem; max-width:1280px; margin:0 auto; }
.story-inner{ display:grid; grid-template-columns:1fr 1.1fr; gap:4.5rem; align-items:center; }
.story-media{ position:relative; border-radius:28px 28px 4px 28px; overflow:hidden; box-shadow:0 30px 60px -25px rgba(30,56,14,.4); }
.story-media img{ height:560px; object-fit:cover; width:100%; transition:transform .8s var(--ease); }
.story-media:hover img{ transform:scale(1.05); }
.story-media-badge{
  position:absolute; bottom:1.4rem; left:1.4rem; background:rgba(30,56,14,.85); backdrop-filter:blur(6px);
  color:var(--gold-light); padding:.8rem 1.4rem; border-radius:999px; font-size:1.4rem;
  border:1px solid rgba(248,220,128,.3);
}
.story-text h2{ font-size:clamp(2rem,3.4vw,2.9rem); margin-bottom:1.4rem; color:var(--olive-deep); }
.story-text p{ font-size:1rem; line-height:1.85; color:#3c4a30; margin-bottom:1.1rem; max-width:52ch; }
.story-values{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }
.value-pill{
  display:flex; align-items:center; gap:.6rem; background:var(--champagne); padding:.7rem 1.3rem;
  border-radius:999px; font-size:.82rem; font-weight:600; color:var(--olive-deep);
  transition:transform .3s var(--ease), background .3s var(--ease);
}
.value-pill:hover{ transform:translateY(-3px); background:var(--gold-light); }
.value-num{ font-family:var(--font-display); color:var(--gold); font-size:.9rem; }

/* ============ DAY / NIGHT TOGGLE ============ */
.daynight{
  position:relative; padding:7rem 2rem; text-align:center; overflow:hidden;
  background:linear-gradient(160deg, var(--olive-deep), var(--olive) 60%, #24401a);
  color:var(--white);
  transition:background 1.2s var(--ease);
}
.daynight.mode-pm{ background:linear-gradient(160deg, #050505, #14200a 55%, #1E380E); }
.daynight-inner{ max-width:820px; margin:0 auto; position:relative; z-index:2; }
.daynight h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); margin-bottom:2.6rem; color:var(--white); }
.daynight-switch{
  display:inline-flex; background:rgba(255,255,255,.08); border:1px solid rgba(248,220,128,.3);
  border-radius:999px; padding:.35rem; margin-bottom:2.6rem;
}
.dn-btn{
  border:none; background:transparent; color:var(--champagne); padding:.75rem 1.6rem; border-radius:999px;
  font-family:var(--font-body); font-weight:600; font-size:.82rem; cursor:pointer; transition:all .4s var(--ease);
}
.dn-btn.active{ background:var(--gold-grad); color:var(--olive-deep); }
.daynight-panel{ position:relative; min-height:130px; }
.dn-content{
  position:absolute; inset:0; opacity:0; transform:translateY(14px); transition:opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events:none;
}
.dn-content.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
.dn-content h3{ font-family:var(--font-heading); font-size:1.6rem; margin-bottom:.8rem; color:var(--gold-light); }
.dn-content p{ color:var(--champagne); line-height:1.8; max-width:56ch; margin:0 auto; }

/* ============ FLAVOURS / CAROUSEL ============ */
.flavours{ padding:7.5rem 2rem 6rem; text-align:center; }
.flavours h2{ font-size:clamp(2rem,3.4vw,2.9rem); color:var(--olive-deep); margin-bottom:.8rem; }
.flavours-sub{ color:#556444; max-width:52ch; margin:0 auto 3.2rem; }

.carousel{ position:relative; max-width:1200px; margin:0 auto; }
.carousel-track{
  display:flex; gap:1.6rem; overflow-x:auto; scroll-snap-type:x mandatory; padding:1rem 3vw 1.5rem;
  scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{ display:none; }
.carousel-slide{
  position:relative; flex:0 0 auto; width:min(300px, 72vw); scroll-snap-align:center;
  border-radius:20px; overflow:hidden; box-shadow:0 22px 45px -20px rgba(30,56,14,.4);
}
.carousel-slide img{ height:400px; width:100%; object-fit:cover; transition:transform .6s var(--ease); }
.carousel-slide:hover img{ transform:scale(1.08); }
.carousel-caption{
  position:absolute; left:0; right:0; bottom:0; padding:1.6rem 1.2rem .9rem;
  background:linear-gradient(to top, rgba(5,8,3,.85), transparent);
  color:var(--gold-light); font-family:var(--font-heading); font-style:italic; font-size:1.05rem; text-align:left;
}
.carousel-arrow{
  position:absolute; top:45%; transform:translateY(-50%); z-index:3;
  width:46px; height:46px; border-radius:50%; border:1px solid var(--olive);
  background:var(--ivory); color:var(--olive); font-size:1.5rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:all .3s var(--ease);
}
.carousel-arrow:hover{ background:var(--olive); color:var(--ivory); }
.carousel-prev{ left:-6px; }
.carousel-next{ right:-6px; }
.carousel-dots{ display:flex; justify-content:center; gap:.5rem; margin-top:1.5rem; }
.carousel-dots .dot{
  width:8px; height:8px; border-radius:50%; background:var(--champagne); cursor:pointer; border:none;
  transition:all .3s var(--ease);
}
.carousel-dots .dot.active{ background:var(--gold); width:24px; border-radius:6px; }

/* ============ LINEUP ============ */
.lineup{ background:var(--champagne); padding:7.5rem 2rem; }
.lineup-inner{ max-width:1100px; margin:0 auto; text-align:center; }
.lineup h2{ font-size:clamp(2rem,3.4vw,2.9rem); color:var(--olive-deep); margin-bottom:3rem; }

.tonight-card{
  background:var(--olive); color:var(--white); border-radius:26px; padding:2.4rem 2.6rem;
  text-align:left; position:relative; overflow:hidden; margin-bottom:2.6rem;
  box-shadow:0 30px 60px -25px rgba(30,56,14,.55);
}
.tonight-card::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(248,220,128,.18), transparent 55%);
}
.live-badge{
  display:inline-flex; align-items:center; gap:.5rem; background:rgba(248,220,128,.15);
  color:var(--gold-light); padding:.4rem 1rem; border-radius:999px; font-size:.72rem;
  text-transform:uppercase; letter-spacing:.12em; font-weight:700; margin-bottom:1.3rem;
  border:1px solid rgba(248,220,128,.35); position:relative; z-index:1;
}
.live-dot{ width:8px; height:8px; border-radius:50%; background:#ff5b5b; animation:pulse 1.5s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.4; transform:scale(1.4);} }
.tonight-body{ display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; position:relative; z-index:1; }
.tonight-label{ text-transform:uppercase; letter-spacing:.15em; font-size:.72rem; color:var(--gold-light); margin-bottom:.5rem; }
.tonight-info h3{ font-family:var(--font-heading); font-style:italic; font-size:clamp(1.4rem,2.6vw,2rem); color:var(--white); margin-bottom:.4rem; }
.tonight-time{ color:var(--champagne); font-size:.9rem; }

.week-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:.9rem; }
.week-card{
  background:var(--ivory); border-radius:16px; padding:1.3rem .8rem; text-align:center;
  border:1px solid rgba(30,56,14,.1); transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.week-card:hover{ transform:translateY(-6px); box-shadow:0 18px 30px -16px rgba(30,56,14,.3); }
.week-card.is-today{ background:var(--olive); color:var(--white); }
.week-day{ display:block; font-family:var(--font-display); font-size:1.05rem; margin-bottom:.6rem; color:var(--gold); }
.week-card.is-today .week-day{ color:var(--gold-light); }
.week-event{ font-size:.7rem; line-height:1.4; color:#5a6a4a; display:block; }
.week-card.is-today .week-event{ color:var(--champagne); }
.lineup-note{ margin-top:2rem; font-size:.85rem; color:#5a6a4a; }
.lineup-note a{ color:var(--gold); font-weight:700; text-decoration:underline; }

/* ============ GALLERY ============ */
.gallery{ padding:7.5rem 2rem; text-align:center; }
.gallery h2{ font-size:clamp(2rem,3.4vw,2.9rem); color:var(--olive-deep); margin-bottom:3rem; }
.gallery-grid{
  max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px; gap:1rem;
}
.gallery-item{ overflow:hidden; border-radius:18px; cursor:pointer; position:relative; }
.gallery-item.span-2{ grid-column:span 2; grid-row:span 2; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.gallery-item:hover img{ transform:scale(1.1); }
.gallery-item::after{
  content:'+'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-size:2rem; color:var(--white); background:rgba(30,56,14,0); opacity:0;
  transition:all .35s var(--ease); font-family:var(--font-display); pointer-events:none;
}
.gallery-item:hover::after{ opacity:1; background:rgba(30,56,14,.35); }
.gallery-ig-btn{ margin-top:3rem; }

.lightbox{
  position:fixed; inset:0; background:rgba(5,8,3,.94); z-index:2000;
  display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none;
  transition:opacity .35s var(--ease); padding:3rem;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:90vw; max-height:85vh; border-radius:12px; transform:scale(.92); transition:transform .35s var(--ease); }
.lightbox.open img{ transform:scale(1); }
.lightbox-close{
  position:absolute; top:2rem; right:2.5rem; background:none; border:none; color:var(--white);
  font-size:2.4rem; cursor:pointer; line-height:1;
}

/* ============ RESERVE ============ */
.reserve{
  position:relative; background:var(--olive-deep); color:var(--white); text-align:center;
  padding:8rem 2rem; overflow:hidden;
}
.reserve-pattern{
  position:absolute; inset:0; opacity:.06;
  background-image:radial-gradient(circle, var(--gold-light) 1.5px, transparent 1.5px);
  background-size:26px 26px;
}
.reserve-inner{ position:relative; z-index:1; max-width:640px; margin:0 auto; }
.reserve h2{ font-size:clamp(2rem,3.6vw,3rem); margin-bottom:1.2rem; color:var(--white); }
.reserve-sub{ color:var(--champagne); margin-bottom:2.4rem; line-height:1.7; }
.wa-icon{ font-size:1.1rem; }
.reserve-phone{ margin-top:1.6rem; font-size:.9rem; color:var(--champagne); }
.reserve-phone a{ color:var(--gold-light); font-weight:700; text-decoration:underline; }

/* ============ FOOTER ============ */
.site-footer{ background:var(--olive); color:var(--champagne); padding:5rem 2rem 2rem; }
.footer-inner{
  max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:3rem;
  padding-bottom:3rem; border-bottom:1px solid rgba(248,220,128,.15);
}
.footer-logo{ height:34px; margin-bottom:1rem; }
.footer-tag{ font-size:1.4rem; margin-bottom:1.4rem; }
.footer-social{ display:flex; gap:.9rem; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(248,220,128,.35);
  display:flex; align-items:center; justify-content:center; color:var(--gold-light);
  transition:all .3s var(--ease);
}
.footer-social a:hover{ background:var(--gold-light); color:var(--olive-deep); transform:translateY(-3px); }
.footer-col h4{
  font-family:var(--font-body); text-transform:uppercase; letter-spacing:.12em; font-size:.78rem;
  color:var(--gold-light); margin-bottom:1.1rem; font-weight:700;
}
.footer-col p{ font-size:.86rem; line-height:1.8; margin-bottom:.5rem; opacity:.9; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{ max-width:1280px; margin:0 auto; padding-top:1.6rem; text-align:center; font-size:.78rem; opacity:.65; }

.back-to-top{
  position:fixed; bottom:1.8rem; right:1.8rem; width:46px; height:46px; border-radius:50%;
  background:var(--gold-grad); color:var(--olive-deep); display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; z-index:400; opacity:0; pointer-events:none; transform:translateY(12px);
  transition:all .4s var(--ease); box-shadow:0 14px 30px -12px rgba(0,0,0,.4);
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }

/* ============ COUNTDOWN ============ */
.countdown{
  max-width:480px; margin:0 auto 3rem; background:var(--olive-deep); color:var(--white);
  border-radius:20px; padding:1.6rem 1.4rem; text-align:center;
  box-shadow:0 20px 40px -20px rgba(30,56,14,.5);
}
.countdown-label{
  text-transform:uppercase; letter-spacing:.18em; font-size:.7rem; color:var(--gold-light);
  margin-bottom:1rem; font-weight:600;
}
.countdown-units{ display:flex; justify-content:center; gap:1.2rem; }
.cd-unit{ display:flex; flex-direction:column; align-items:center; min-width:52px; }
.cd-unit span{
  font-family:var(--font-display); font-size:1.9rem; color:var(--gold-light); line-height:1;
  font-variant-numeric:tabular-nums;
}
.cd-unit small{ font-size:.62rem; text-transform:uppercase; letter-spacing:.1em; color:var(--champagne); margin-top:.4rem; }

/* ============ MOOD QUIZ ============ */
.quiz{ background:var(--champagne); padding:7.5rem 2rem; text-align:center; }
.quiz-inner{ max-width:760px; margin:0 auto; }
.quiz h2{ font-size:clamp(2rem,3.4vw,2.9rem); color:var(--olive-deep); margin-bottom:.8rem; }
.quiz-sub{ color:#5a6a4a; margin-bottom:2.6rem; }
.quiz-note{ display:block; font-size:.78rem; opacity:.75; margin-top:.3rem; }
.quiz-options{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:2.5rem; }
.quiz-option{
  display:flex; flex-direction:column; align-items:center; gap:.7rem; background:var(--ivory);
  border:1px solid rgba(30,56,14,.12); border-radius:18px; padding:1.6rem 1rem; cursor:pointer;
  font-family:var(--font-body); font-weight:600; font-size:.85rem; color:var(--olive-deep);
  transition:all .35s var(--ease);
}
.quiz-option:hover{ transform:translateY(-6px); background:var(--gold-light); box-shadow:0 18px 34px -18px rgba(30,56,14,.4); }
.quiz-option.selected{ background:var(--olive); color:var(--white); }
.quiz-emoji{ font-size:1.8rem; }
.quiz-result{
  max-height:0; overflow:hidden; opacity:0; transition:max-height .6s var(--ease), opacity .5s var(--ease);
}
.quiz-result.show{ max-height:400px; opacity:1; }
.quiz-result-card{
  background:var(--olive); color:var(--white); border-radius:22px; padding:2.4rem;
  box-shadow:0 25px 50px -22px rgba(30,56,14,.5);
}
.quiz-result-label{ text-transform:uppercase; letter-spacing:.18em; font-size:.7rem; color:var(--gold-light); margin-bottom:.8rem; }
.quiz-result-card h3{ font-family:var(--font-heading); font-style:italic; font-size:1.9rem; color:var(--gold-light); margin-bottom:.8rem; }
.quiz-result-card p{ color:var(--champagne); line-height:1.8; margin-bottom:1.4rem; max-width:44ch; margin-left:auto; margin-right:auto; }
.quiz-result-card .btn-outline{ border-color:var(--gold-light); color:var(--gold-light); }
.quiz-result-card .btn-outline:hover{ background:var(--gold-light); color:var(--olive-deep); }

/* ============ TESTIMONIALS ============ */
.testimonials{ padding:7.5rem 2rem; text-align:center; background:var(--ivory); }
.testimonials-inner{ max-width:720px; margin:0 auto; }
.testimonials h2{ font-size:clamp(2rem,3.4vw,2.9rem); color:var(--olive-deep); margin-bottom:.6rem; }
.testimonials-flag{ font-size:.8rem; color:#8a7a4a; margin-bottom:3rem; font-style:italic; }
.t-slider{ position:relative; min-height:210px; }
.t-slide{
  position:absolute; inset:0; opacity:0; transform:translateY(14px); pointer-events:none;
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.t-slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
.t-stars{ color:var(--gold); font-size:1.1rem; letter-spacing:.2em; margin-bottom:1.2rem; }
.t-quote{ font-family:var(--font-heading); font-style:italic; font-size:1.35rem; line-height:1.6; color:var(--olive-deep); margin-bottom:1.2rem; }
.t-author{ font-size:.8rem; text-transform:uppercase; letter-spacing:.1em; color:#8a7a4a; font-weight:600; }
.t-dots{ display:flex; justify-content:center; gap:.5rem; margin-top:2rem; }
.t-dots .dot{ width:8px; height:8px; border-radius:50%; background:var(--champagne); border:none; cursor:pointer; transition:all .3s var(--ease); }
.t-dots .dot.active{ background:var(--gold); width:24px; border-radius:6px; }

/* ============ INSTAGRAM STRIP ============ */
.ig-strip{ background:var(--olive-deep); padding:7rem 2rem; text-align:center; }
.ig-strip-inner{ max-width:960px; margin:0 auto; }
.ig-strip h2{ font-size:clamp(1.9rem,3.2vw,2.7rem); color:var(--white); margin-bottom:.8rem; }
.ig-strip-note{ color:var(--champagne); font-size:.82rem; max-width:52ch; margin:0 auto 2.4rem; opacity:.85; }
.ig-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:.7rem; margin-bottom:2.6rem; }
.ig-tile{ position:relative; display:block; border-radius:10px; overflow:hidden; aspect-ratio:1; }
.ig-tile img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.ig-tile-icon{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:1.6rem;
  color:var(--white); background:rgba(30,56,14,0); opacity:0; transition:all .35s var(--ease);
}
.ig-tile:hover img{ transform:scale(1.12); }
.ig-tile:hover .ig-tile-icon{ opacity:1; background:rgba(30,56,14,.4); }

/* ============ RESERVE — divider + form ============ */
.reserve-divider{
  display:flex; align-items:center; gap:1rem; color:var(--champagne); font-size:.75rem;
  text-transform:uppercase; letter-spacing:.12em; margin:2.6rem 0 1.8rem; opacity:.8;
}
.reserve-divider::before, .reserve-divider::after{ content:''; flex:1; height:1px; background:rgba(248,220,128,.3); }
.reserve-form{ text-align:left; background:rgba(255,255,255,.05); border:1px solid rgba(248,220,128,.2); border-radius:20px; padding:1.8rem; }
.reserve-form-note{ font-size:.72rem; color:var(--champagne); opacity:.75; margin-bottom:1.2rem; line-height:1.6; }
.reserve-form-note code{ background:rgba(248,220,128,.15); padding:.1rem .4rem; border-radius:4px; }
.reserve-form-note a{ color:var(--gold-light); text-decoration:underline; }
.form-row{ display:flex; gap:.9rem; margin-bottom:.9rem; flex-wrap:wrap; }
.form-row input{
  flex:1; min-width:120px; padding:.85rem 1rem; border-radius:10px; border:1px solid rgba(248,220,128,.3);
  background:rgba(255,255,255,.08); color:var(--white); font-family:var(--font-body); font-size:.85rem;
}
.form-row input::placeholder{ color:rgba(255,252,247,.5); }
.form-row input:focus{ outline:none; border-color:var(--gold-light); background:rgba(255,255,255,.14); }
.btn-outline-light{ border:1px solid var(--gold-light); color:var(--gold-light); background:transparent; }
.btn-outline-light:hover{ background:var(--gold-light); color:var(--olive-deep); }
.reserve-form-status{ margin-top:1rem; font-size:.8rem; color:var(--gold-light); min-height:1.2em; }

/* ============ FIND US / MAP ============ */
.find-us{ background:var(--ivory); padding:7.5rem 2rem; }
.find-us-inner{ max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1.2fr; gap:3.5rem; align-items:center; }
.find-us-text h2{ font-family:var(--font-display); font-size:clamp(1.9rem,3.2vw,2.6rem); color:var(--olive-deep); margin:.6rem 0 1.2rem; }
.find-us-text p{ color:#556444; line-height:1.8; margin-bottom:.6rem; }
.find-us-text .btn{ margin-top:1.2rem; }
.find-us-map{ border-radius:22px; overflow:hidden; box-shadow:0 30px 60px -25px rgba(30,56,14,.4); height:360px; }
.find-us-map iframe{ width:100%; height:100%; border:0; filter:grayscale(.15) sepia(.08); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:980px){
  .story-inner{ grid-template-columns:1fr; gap:2.5rem; }
  .story-media img{ height:380px; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .week-grid{ grid-template-columns:repeat(4,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
}
@media (max-width:760px){
  .nav-links, .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
  .nav-links.open{
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    background:var(--olive); padding:1.5rem 2rem; gap:1.2rem;
  }
  .hero-am-pm-line{ width:30px; }
  .tonight-body{ flex-direction:column; align-items:flex-start; }
  .week-grid{ grid-template-columns:repeat(2,1fr); }
  .carousel-arrow{ display:none; }
}
@media (max-width:520px){
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-item.span-2{ grid-column:span 1; grid-row:span 1; height:280px; }
}
@media (max-width:860px){
  .find-us-inner{ grid-template-columns:1fr; }
  .find-us-map{ height:300px; }
  .quiz-options{ grid-template-columns:repeat(2,1fr); }
  .ig-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:600px){
  .countdown-units{ gap:.7rem; }
  .cd-unit{ min-width:44px; }
  .cd-unit span{ font-size:1.4rem; }
  .form-row{ flex-direction:column; }
  .t-quote{ font-size:1.1rem; }
}
