/* ============================================================
   MERAAK — A Culinary Tale
   Design tokens
   ============================================================ */
:root{
  --espresso:      #241811;
  --espresso-2:    #2f2019;
  --espresso-soft: #3c2a20;
  --ivory:         #F5EBDC;
  --ivory-soft:    #EEDFC7;
  --rust:          #B75C36;
  --rust-2:        #9C4A2A;
  --sage:          #6E7B57;
  --brass:         #C9A227;
  --line:          rgba(245,235,220,0.14);
  --line-dark:     rgba(36,24,17,0.12);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Work Sans", -apple-system, sans-serif;
  --font-mono:    "Space Mono", monospace;

  --container: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.9,.28,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--ivory);
  color:var(--espresso);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:2px solid var(--brass); outline-offset:3px; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 28px; }

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--rust);
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--rust);
  display:inline-block;
}
.on-dark .eyebrow{ color:var(--brass); }
.on-dark .eyebrow::before{ background:var(--brass); }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.05;
  margin:0;
  letter-spacing:-0.01em;
}
h2{ font-size:clamp(30px,4.4vw,52px); font-weight:500; }
h3{ font-size:clamp(20px,2.4vw,26px); font-weight:600; }
p{ margin:0; }
.lede{ font-size:clamp(16px,1.6vw,19px); color:var(--espresso-soft); max-width:56ch; }
.on-dark .lede{ color:var(--ivory-soft); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:transform .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--rust); color:var(--ivory); }
.btn-primary:hover{ background:var(--rust-2); }
.btn-outline{ border-color:currentColor; color:var(--ivory); }
.btn-outline:hover{ background:var(--ivory); color:var(--espresso); }
.btn-dark{ border-color:var(--espresso); color:var(--espresso); }
.btn-dark:hover{ background:var(--espresso); color:var(--ivory); }
.btn-block{ width:100%; justify-content:center; }

/* ============ Reveal on scroll ============ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ============ Perforated ticket divider (signature motif) ============ */
.ticket-divider{
  position:relative;
  height:34px;
  background:var(--ivory);
}
.ticket-divider::before{
  content:"";
  position:absolute; left:0; right:0; top:50%;
  border-top:2px dashed var(--line-dark);
}
.ticket-divider::after{
  content:"";
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:14px; height:14px; border-radius:50%;
  background:var(--espresso);
}
.ticket-divider.dark{ background:var(--espresso); }
.ticket-divider.dark::before{ border-color:var(--line); }
.ticket-divider.dark::after{ background:var(--ivory); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.site-header.scrolled{
  background:rgba(36,24,17,0.92);
  backdrop-filter:blur(10px);
  padding:10px 28px;
  box-shadow:0 8px 30px rgba(0,0,0,0.25);
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{
  height:56px; width:56px; object-fit:contain;
  transition:height .4s var(--ease);
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.site-header.scrolled .brand img{ height:44px; }
.brand-word{
  font-family:var(--font-display);
  font-size:21px; letter-spacing:.04em;
  color:var(--ivory);
}
.brand-word small{
  display:block; font-family:var(--font-mono);
  font-size:9px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--brass); font-weight:normal; margin-top:2px;
}

.main-nav ul{ display:flex; gap:34px; align-items:center; }
.main-nav a{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--ivory-soft);
  position:relative; padding:4px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--brass); transition:width .3s var(--ease);
}
.main-nav a:hover::after{ width:100%; }
.nav-cta{
  background:var(--rust); color:var(--ivory) !important; padding:11px 20px;
  border-radius:var(--radius);
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ background:var(--brass); color:var(--espresso) !important; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:8px;
}
.nav-toggle span{ width:26px; height:2px; background:var(--ivory); transition:.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; min-height:100svh;
  display:flex; align-items:flex-end;
  color:var(--ivory);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  animation:heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{ from{ transform:scale(1.12);} to{ transform:scale(1);} }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(36,24,17,.35) 0%, rgba(36,24,17,.35) 40%, rgba(20,13,9,.92) 100%),
    linear-gradient(90deg, rgba(20,13,9,.55) 0%, rgba(20,13,9,0) 45%);
}
.hero-content{
  position:relative; z-index:1;
  width:100%;
  padding:0 28px 88px;
  max-width:var(--container); margin:0 auto;
}
.hero-tag{
  font-family:var(--font-mono); font-size:13px; letter-spacing:.22em;
  text-transform:uppercase; color:var(--brass);
  display:flex; align-items:center; gap:12px; margin-bottom:22px;
  opacity:0; animation:fadeUp .9s var(--ease) .3s forwards;
}
.hero-tag span{ width:34px; height:1px; background:var(--brass); }
.hero h1{
  font-size:clamp(52px,10vw,132px);
  color:var(--ivory);
  opacity:0; animation:fadeUp 1s var(--ease) .45s forwards;
}
.hero h1 em{ font-style:italic; color:var(--rust); }
.hero-sub{
  margin-top:20px; max-width:560px;
  font-size:clamp(15px,1.6vw,18px); color:var(--ivory-soft);
  opacity:0; animation:fadeUp 1s var(--ease) .6s forwards;
}
.hero-actions{
  display:flex; gap:16px; flex-wrap:wrap; margin-top:36px;
  opacity:0; animation:fadeUp 1s var(--ease) .75s forwards;
}
@keyframes fadeUp{ from{opacity:0; transform:translateY(22px);} to{opacity:1; transform:none;} }

.hero-scroll{
  position:absolute; right:28px; bottom:28px; z-index:1;
  writing-mode:vertical-rl; color:var(--ivory-soft);
  font-family:var(--font-mono); font-size:11px; letter-spacing:.2em;
  display:flex; align-items:center; gap:10px;
  opacity:0; animation:fadeUp 1s var(--ease) 1s forwards;
}
.hero-scroll::after{
  content:""; display:block; width:1px; height:46px; background:var(--ivory-soft);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{ 0%,100%{ transform:scaleY(1); opacity:.5;} 50%{ transform:scaleY(.5); opacity:1;} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{
  background:var(--espresso); color:var(--ivory);
  overflow:hidden; padding:16px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.marquee-track{
  display:flex; width:max-content;
  animation:marquee 34s linear infinite;
}
.marquee-track span{
  font-family:var(--font-mono); font-size:14px; letter-spacing:.1em;
  text-transform:uppercase; padding:0 26px; white-space:nowrap;
  display:flex; align-items:center; gap:26px;
}
.marquee-track span::after{ content:"✦"; color:var(--brass); }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============================================================
   SECTION generic
   ============================================================ */
section{ position:relative; }
.section{ padding:112px 0; }
.section.on-dark{ background:var(--espresso); color:var(--ivory); }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom:56px; flex-wrap:wrap;
}

/* ============================================================
   ABOUT / AMBIANCE
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; }
.about-copy .stat-row{ display:flex; gap:40px; margin-top:36px; flex-wrap:wrap; }
.stat{ font-family:var(--font-display); }
.stat b{ display:block; font-size:34px; color:var(--rust); }
.stat span{ font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--espresso-soft); }

.gallery-intro{ margin-bottom:44px; }
.gallery-masonry{
  column-count:4; column-gap:12px;
}
.gallery-masonry a{
  position:relative; display:block; overflow:hidden; border-radius:var(--radius);
  margin-bottom:12px; break-inside:avoid;
}
.gallery-masonry a:nth-child(3n+1) img{ aspect-ratio:3/4; }
.gallery-masonry a:nth-child(3n+2) img{ aspect-ratio:1/1; }
.gallery-masonry a:nth-child(3n) img{ aspect-ratio:4/5; }
.gallery-masonry img{ width:100%; height:auto; object-fit:cover; display:block; transition:transform .6s var(--ease); }
.gallery-masonry a:hover img{ transform:scale(1.06); }
.gallery-masonry a::after{
  content:"\2197"; position:absolute; top:10px; right:10px;
  width:32px; height:32px; border-radius:50%; background:rgba(245,235,220,.92);
  color:var(--espresso); display:flex; align-items:center; justify-content:center;
  font-size:15px; opacity:0; transition:opacity .3s, transform .3s; transform:scale(.7);
}
.gallery-masonry a:hover::after{ opacity:1; transform:scale(1); }
.gallery-more{ text-align:center; margin-top:36px; }

/* ============================================================
   FOOD / TASTE SECTION
   ============================================================ */
.food-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.food-card{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4;
}
.food-card img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.food-card:hover img{ transform:scale(1.1) rotate(-1deg); }
.food-card::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(20,13,9,.88));
  opacity:.75; transition:opacity .4s;
}
.food-card:hover::before{ opacity:.9; }
.food-card-tag{
  position:absolute; left:16px; bottom:16px; right:16px; z-index:1;
  color:var(--ivory); font-family:var(--font-mono); font-size:12px;
  letter-spacing:.08em; text-transform:uppercase;
}
.food-card-tag b{ display:block; font-family:var(--font-display); font-size:19px; font-weight:500; margin-top:4px; letter-spacing:0; text-transform:none; }

/* ============================================================
   MENU
   ============================================================ */
.menu-intro{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom:50px; }
.menu-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px;
}
.menu-card{
  position:relative; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:3/4; background:var(--espresso-soft);
}
.menu-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.menu-card:hover img{ transform:scale(1.06); }
.menu-card-label{
  position:absolute; inset:auto 0 0 0; padding:14px;
  background:linear-gradient(180deg, transparent, rgba(20,13,9,.85));
  color:var(--ivory); font-family:var(--font-mono); font-size:11px;
  letter-spacing:.1em; text-transform:uppercase;
}
.menu-cta{
  margin-top:52px; display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:24px; padding:32px; border:1px solid var(--line-dark);
  border-radius:var(--radius);
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; align-items:center; }
.video-reels{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.video-embed{
  position:relative; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line);
}
.video-embed iframe{ width:100%; border:none; display:block; }
.follow-row{ display:flex; align-items:center; gap:14px; margin-top:30px; }
.follow-icon{
  width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0;
  transition:transform .3s var(--ease);
}
.follow-icon:hover{ transform:scale(1.08) rotate(-6deg); }
.follow-icon svg{ width:24px; height:24px; }
@media (max-width:980px){
  .video-grid{ grid-template-columns:1fr; }
  .video-reels{ grid-template-columns:1fr; max-width:380px; margin:0 auto; }
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--line-dark); border:1px solid var(--line-dark); }
.event-card{
  background:var(--ivory); padding:40px 28px; transition:background .35s, color .35s;
  position:relative;
}
.event-card:hover{ background:var(--espresso); color:var(--ivory); }
.event-num{ font-family:var(--font-mono); font-size:12px; color:var(--rust); }
.event-card h3{ margin:18px 0 12px; }
.event-card p{ font-size:14.5px; color:var(--espresso-soft); }
.event-card:hover p{ color:var(--ivory-soft); }
.event-card:hover .event-num{ color:var(--brass); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-track{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.review-card{
  background:var(--ivory); color:var(--espresso); padding:34px 30px;
  border-radius:var(--radius); border:1px solid var(--line-dark);
}
.review-stars{ color:var(--brass); letter-spacing:2px; font-size:15px; margin-bottom:16px; }
.review-quote{ font-family:var(--font-display); font-size:19px; line-height:1.4; margin-bottom:22px; }
.review-name{ font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--rust); }
.reviews-link{ margin-top:44px; text-align:center; }

/* ============================================================
   BOOKING
   ============================================================ */
.book-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.book-card{
  padding:38px 30px; border:1px solid var(--line); border-radius:var(--radius);
  display:flex; flex-direction:column; gap:18px; transition:transform .35s var(--ease), border-color .35s;
}
.book-card:hover{ transform:translateY(-6px); border-color:var(--brass); }
.book-icon{ width:46px; height:46px; }
.book-card h3{ color:var(--ivory); }
.book-card p{ color:var(--ivory-soft); font-size:14px; }

/* ============================================================
   FIND US
   ============================================================ */
.find-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line-dark); border-radius:var(--radius); overflow:hidden; }
.find-info{ padding:56px; }
.find-info dl{ margin-top:30px; display:grid; gap:20px; }
.find-info dt{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em; color:var(--rust); margin-bottom:4px; }
.find-info dd{ margin:0; font-size:16px; }
.find-map iframe{ width:100%; height:100%; min-height:420px; border:none; filter:sepia(.15) saturate(1.1); }
.social-row{ display:flex; gap:14px; margin-top:32px; }
.social-row a{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center; transition:.3s;
}
.social-row a:hover{ background:var(--rust); border-color:var(--rust); color:var(--ivory); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--espresso); color:var(--ivory-soft); padding:64px 0 26px; }
.footer-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:40px; border-bottom:1px solid var(--line); }
.footer-brand{ display:flex; align-items:center; gap:14px; }
.footer-brand img{ height:46px; }
.footer-nav{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-nav h4{ color:var(--ivory); font-size:13px; font-family:var(--font-mono); letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; font-weight:400;}
.footer-nav li{ margin-bottom:10px; font-size:14px; }
.footer-nav a:hover{ color:var(--brass); }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:24px; font-size:12.5px; color:rgba(245,235,220,.5); flex-wrap:wrap; gap:10px; }

/* ============================================================
   BOOKING STICKY BAR (mobile)
   ============================================================ */
.sticky-book{
  position:fixed; left:0; right:0; bottom:0; z-index:90;
  display:none; grid-template-columns:1fr 1fr 1fr;
  background:var(--espresso); border-top:1px solid var(--line);
}
.sticky-book a{
  text-align:center; padding:14px 6px; font-family:var(--font-mono);
  font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--ivory);
  border-right:1px solid var(--line);
}
.sticky-book a:last-child{ border-right:none; background:var(--rust); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; z-index:95;
  width:60px; height:60px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(37,211,102,.45);
  animation:wa-pulse 2.2s ease-in-out infinite;
}
.whatsapp-float svg{ width:30px; height:30px; }
@keyframes wa-pulse{
  0%,100%{ box-shadow:0 10px 30px rgba(37,211,102,.45); transform:scale(1); }
  50%{ box-shadow:0 10px 42px rgba(37,211,102,.75); transform:scale(1.07); }
}
@media (max-width:980px){
  .whatsapp-float{ right:16px; bottom:70px; width:52px; height:52px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}

/* ============================================================
   EVENT CARD ENQUIRY LINK
   ============================================================ */
.event-enquiry{
  display:inline-flex; align-items:center; gap:8px; margin-top:20px;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--sage);
}
.event-card:hover .event-enquiry{ color:var(--brass); }
.event-enquiry svg{ width:14px; height:14px; }

/* ============================================================
   BOOKING FORM CARD
   ============================================================ */
.book-form-card{
  grid-column:1/-1;
  background:rgba(245,235,220,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:40px;
  display:grid; grid-template-columns:0.9fr 1.4fr; gap:40px; align-items:start;
}
.book-form-card h3{ color:var(--ivory); }
.book-form-card .lede{ margin-top:12px; }
.book-form{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.book-form .field-full{ grid-column:1/-1; }
.book-form label{
  display:block; font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ivory-soft); margin-bottom:7px;
}
.book-form input, .book-form select{
  width:100%; padding:12px 14px; background:rgba(245,235,220,.06);
  border:1px solid var(--line); border-radius:var(--radius); color:var(--ivory);
  font-family:var(--font-body); font-size:14.5px;
}
.book-form input::placeholder{ color:rgba(245,235,220,.4); }
.book-form select{ appearance:none; }
.book-form input:focus, .book-form select:focus{ border-color:var(--brass); }
.book-form button{ margin-top:4px; }
@media (max-width:980px){
  .book-form-card{ grid-template-columns:1fr; padding:28px 22px; }
  .book-form{ grid-template-columns:1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position:fixed; inset:0; z-index:200; background:rgba(20,13,9,.94);
  display:none; align-items:center; justify-content:center; padding:40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-height:88vh; max-width:100%; border-radius:2px; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:24px; right:28px; background:none; border:none;
  color:var(--ivory); font-size:32px; line-height:1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .main-nav, .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .video-grid{ grid-template-columns:1fr; }
  .events-grid{ grid-template-columns:repeat(2,1fr); }
  .reviews-track{ grid-template-columns:1fr; }
  .book-grid{ grid-template-columns:1fr; }
  .find-grid{ grid-template-columns:1fr; }
  .menu-grid{ grid-template-columns:repeat(3,1fr); }
  .sticky-book{ display:grid; }
  .section{ padding:80px 0; }
  body{ padding-bottom:52px; }
}
@media (max-width: 600px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:120px; }
  .gallery-grid a, .gallery-grid a:nth-child(n){ grid-column:span 1; grid-row:span 2; }
  .gallery-grid a:nth-child(1){ grid-column:span 2; grid-row:span 3; }
  .menu-grid{ grid-template-columns:repeat(2,1fr); }
  .events-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:15vw; }
  .hero-content{ padding-bottom:64px; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float{
  position:fixed; right:22px; bottom:28px; z-index:95;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,.35);
  animation:waPulse 2.4s ease-in-out infinite;
  transition:transform .3s;
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:30px; height:30px; }
@keyframes waPulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(37,211,102,.55), 0 10px 26px rgba(0,0,0,.35); }
  50%{ box-shadow:0 0 0 14px rgba(37,211,102,0), 0 10px 26px rgba(0,0,0,.35); }
}
.whatsapp-label{
  position:fixed; right:88px; bottom:42px; z-index:95;
  background:var(--espresso); color:var(--ivory);
  font-family:var(--font-mono); font-size:11px; letter-spacing:.06em;
  padding:8px 14px; border-radius:20px; white-space:nowrap;
  opacity:0; transform:translateX(8px); pointer-events:none;
  transition:opacity .3s, transform .3s;
}
.whatsapp-float:hover + .whatsapp-label,
.whatsapp-label:hover{ opacity:1; transform:none; pointer-events:auto; }
@media (max-width:980px){
  .whatsapp-float{ bottom:78px; right:18px; width:52px; height:52px; }
  .whatsapp-float svg{ width:26px; height:26px; }
  .whatsapp-label{ display:none; }
}

/* ============================================================
   BOOK STRIP (moved just under hero) + RESERVATION FORM
   ============================================================ */
.book-strip{ background:var(--espresso-2); color:var(--ivory); padding:80px 0 88px; }
.book-strip .section-head h2{ color:var(--ivory); }
.reserve-layout{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.reserve-form{
  background:var(--espresso); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:16px; }
.field label{
  display:block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--brass); margin-bottom:8px;
}
.field input, .field select, .field textarea{
  width:100%; background:rgba(245,235,220,.06); border:1px solid var(--line);
  border-radius:var(--radius); padding:12px 14px; color:var(--ivory);
  font-family:var(--font-body); font-size:14.5px;
}
.field input::placeholder, .field textarea::placeholder{ color:rgba(245,235,220,.35); }
.field select{ appearance:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat:no-repeat; background-position:right 12px center; background-size:16px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--brass); }
.form-note{ font-size:12.5px; color:var(--ivory-soft); opacity:.7; margin-top:14px; }

/* ============================================================
   FILMSTRIP GALLERY (ambiance)
   ============================================================ */
.filmstrip-wrap{ position:relative; }
.filmstrip{
  display:flex; gap:14px; overflow-x:auto; padding:6px 6px 18px;
  scroll-snap-type:x proximity; scrollbar-width:thin; scrollbar-color:var(--rust) transparent;
}
.filmstrip::-webkit-scrollbar{ height:6px; }
.filmstrip::-webkit-scrollbar-thumb{ background:var(--rust); border-radius:10px; }
.filmstrip a{
  position:relative; flex:0 0 auto; width:260px; height:340px;
  border-radius:var(--radius); overflow:hidden; scroll-snap-align:start;
}
.filmstrip a:nth-child(3n+1){ width:320px; }
.filmstrip img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.filmstrip a:hover img{ transform:scale(1.08); }
.filmstrip a::after{
  content:"\2197"; position:absolute; top:10px; right:10px;
  width:30px; height:30px; border-radius:50%; background:rgba(245,235,220,.9);
  color:var(--espresso); display:flex; align-items:center; justify-content:center;
  font-size:15px; opacity:0; transition:opacity .3s, transform .3s; transform:scale(.7);
}
.filmstrip a:hover::after{ opacity:1; transform:scale(1); }

/* ============================================================
   FOOD GALLERY
   ============================================================ */
.food-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.food-card{ position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4; }
.food-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.food-card:hover img{ transform:scale(1.08); }
.food-card-label{
  position:absolute; inset:auto 0 0 0; padding:16px;
  background:linear-gradient(180deg, transparent, rgba(20,13,9,.9));
  color:var(--ivory); font-family:var(--font-display); font-size:17px;
}

/* ============================================================
   MULTI VIDEO GRID
   ============================================================ */
.reel-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.reel-grid .video-embed{ max-width:none; }
.video-heading-row{ display:flex; align-items:center; gap:14px; margin-bottom:10px; }
.ig-badge{
  display:inline-flex; align-items:center; gap:8px; width:fit-content;
  border:1px solid var(--line); padding:8px 16px; border-radius:20px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.06em; color:var(--ivory);
  margin-top:24px;
}
.ig-badge svg{ width:16px; height:16px; }
.ig-badge:hover{ border-color:var(--brass); color:var(--brass); }

@media (max-width: 980px){
  .reserve-layout{ grid-template-columns:1fr; }
  .food-grid{ grid-template-columns:repeat(2,1fr); }
  .reel-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
}

/* ============================================================
   MENU PAGE (menu.html)
   ============================================================ */
.menu-hero{
  padding:170px 0 60px; background:var(--espresso); color:var(--ivory); text-align:center;
}
.menu-hero .eyebrow{ justify-content:center; }
.menu-hero p.lede{ margin:18px auto 0; text-align:center; }
.menu-page-section{ padding:70px 0; border-bottom:1px solid var(--line-dark); }
.menu-page-section:last-of-type{ border-bottom:none; }
.menu-cat-head{ display:flex; align-items:baseline; justify-content:space-between; margin-bottom:34px; gap:20px; flex-wrap:wrap; }
.menu-cat-head h2{ font-size:clamp(26px,3vw,36px); }
.dish-list{ display:grid; grid-template-columns:1fr 1fr; gap:0 60px; }
.dish{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:16px 0; border-bottom:1px dashed var(--line-dark); }
.dish-name{ font-family:var(--font-display); font-size:18px; }
.dish-tag{ display:block; font-family:var(--font-mono); font-size:11px; color:var(--espresso-soft); margin-top:4px; letter-spacing:.03em; }
.dish-price{ font-family:var(--font-mono); color:var(--rust); font-size:15px; white-space:nowrap; }
.menu-disclaimer{
  margin-top:20px; font-size:13px; color:var(--espresso-soft); border:1px dashed var(--line-dark);
  padding:16px 20px; border-radius:var(--radius);
}
@media (max-width:700px){
  .dish-list{ grid-template-columns:1fr; }
  .menu-hero{ padding:150px 0 50px; }
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; z-index:99; background:var(--espresso);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:30px;
  transform:translateY(-100%); transition:transform .5s var(--ease);
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav a{
  font-family:var(--font-display); font-size:30px; color:var(--ivory);
}
