/* ============================================================
   SHALIMAR — Bar & Restaurant
   Palette pulled from the logo: terracotta on warm sand.
   ============================================================ */

:root {
  /* Brand colours sampled from the logo */
  --sand:           #DEBB83;
  --sand-light:     #EAD4A8;
  --terracotta:     #C75B39;
  --terracotta-deep:#A8492B;
  --ember:          #E07A4D;
  --gold:           #E4B873;

  /* Warm near-black surfaces */
  --espresso:       #120E0A;
  --espresso-2:     #1A140E;
  --char:           #241A12;
  --char-line:      #3A2A1D;

  --cream:          #F4E7CE;
  --cream-dim:      #C9B492;
  --muted:          #8C7A60;

  /* Motion — strong custom curves (Emil Kowalski) */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --shell: min(1280px, 92vw);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html, body { background: var(--espresso); }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  /* Lenis controls scroll; keep native as fallback */
}
body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

::selection { background: var(--terracotta); color: var(--espresso); }

/* Display serif for headings */
.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: .005em;
}

/* ---------- Atmospheric overlays (depth) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)} 16%{transform:translate(-4%,3%)}
  33%{transform:translate(3%,-5%)} 50%{transform:translate(-3%,4%)}
  66%{transform:translate(5%,2%)} 83%{transform:translate(-2%,-4%)} 100%{transform:translate(0,0)}
}
.vignette {
  position: fixed; inset: 0; z-index: 88; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 0%, transparent 55%, rgba(0,0,0,.55) 100%);
}

/* WebGL gem canvas — fixed behind everything */
#gem-canvas {
  position: fixed; inset: 0; z-index: 1;
  width: 100vw; height: 100vh;
  pointer-events: none;
  will-change: opacity, transform;
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 100; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: var(--sand-light); transform: translate(-50%,-50%); }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid var(--sand);
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s, background .3s, border-color .3s;
}
.cursor-ring.is-hot { width: 64px; height: 64px; background: rgba(199,91,57,.18); border-color: var(--ember); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 54px);
  transition: padding .5s var(--ease-out), background .5s var(--ease-out), backdrop-filter .5s var(--ease-out);
}
.nav::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,14,10,.82), rgba(18,14,10,0));
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.nav.scrolled { padding-top: 14px; padding-bottom: 14px; }
.nav.scrolled::after { opacity: 1; }
.nav.scrolled { backdrop-filter: blur(10px); }

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 30px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.nav__brand b {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 22px; letter-spacing: .34em; padding-left: .34em;
  color: var(--cream);
}
.nav__actions { display: flex; align-items: center; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 100px; font-weight: 600; font-size: 14px;
  letter-spacing: .02em; overflow: hidden; white-space: nowrap;
  transition: transform .16s var(--ease-out), color .35s var(--ease-out), box-shadow .4s var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn span { position: relative; z-index: 2; }
.btn .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; position: relative; z-index: 2; }

.btn--primary { color: var(--espresso); box-shadow: 0 8px 30px -8px rgba(199,91,57,.65); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, var(--gold), var(--ember) 45%, var(--terracotta));
  transition: transform .5s var(--ease-out);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: 1; transform: translateY(101%);
  background: linear-gradient(135deg, var(--sand-light), var(--gold));
  transition: transform .5s var(--ease-out);
}
.btn--primary:hover::after { transform: translateY(0); }

.btn--ghost {
  color: var(--cream); border: 1px solid var(--char-line);
}
.btn--ghost::before {
  content:""; position:absolute; inset:0; z-index:1; border-radius:inherit;
  background: var(--cream); transform: scale(.2); opacity: 0;
  transition: transform .45s var(--ease-out), opacity .45s var(--ease-out);
}
.btn--ghost:hover { color: var(--espresso); }
.btn--ghost:hover::before { transform: scale(1.2); opacity: 1; }
.btn--lg { padding: 17px 36px; font-size: 15px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 2;
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(20px, 4vw, 54px);
}
.hero__inner { width: var(--shell); margin: 0 auto; text-align: center; position: relative; }
.hero__inner::before {
  content: ""; position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
  width: min(720px, 100%); aspect-ratio: 1; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(224,122,77,.20), rgba(199,91,57,.08) 45%, transparent 72%);
  filter: blur(18px);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 26px;
}
.hero__eyebrow .ln { width: 42px; height: 1px; background: linear-gradient(90deg, transparent, var(--terracotta)); }
.hero__eyebrow .ln.r { background: linear-gradient(90deg, var(--terracotta), transparent); }

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(40px, 7.4vw, 108px);
  line-height: .98; letter-spacing: .01em;
  max-width: 15ch; margin: 0 auto;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 58%, var(--terracotta) 125%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 36px rgba(224,122,77,.28)) drop-shadow(0 14px 40px rgba(0,0,0,.55));
}
.hero__title .word { display: inline-block; will-change: transform, opacity; }
.hero__title .em {
  font-style: italic;
  -webkit-text-fill-color: var(--ember); /* override the gradient clip for emphasis */
}

.hero__sub {
  margin: 26px auto 0; max-width: 540px;
  font-size: clamp(15px, 1.6vw, 18px); color: var(--cream-dim); line-height: 1.7;
}
.hero__meta {
  margin-top: 14px; font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--sand);
}
.hero__cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll .lottie { width: 34px; height: 56px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative; z-index: 3; overflow: hidden;
  border-top: 1px solid var(--char-line); border-bottom: 1px solid var(--char-line);
  background: rgba(18,14,10,.6); backdrop-filter: blur(4px);
  padding: 20px 0;
}
.marquee__track { display: flex; width: max-content; gap: 0; will-change: transform; }
.marquee__track span {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(22px, 3vw, 38px); color: var(--cream);
  padding: 0 34px; display: inline-flex; align-items: center; gap: 34px;
}
.marquee__track span::after {
  content: "◆"; font-style: normal; font-size: .5em; color: var(--terracotta);
}

/* ============================================================
   SECTION FRAME
   ============================================================ */
.section { position: relative; z-index: 3; padding: clamp(90px, 14vh, 180px) clamp(20px, 4vw, 54px); }
.section--solid { background: linear-gradient(180deg, var(--espresso), var(--espresso-2)); }
.shell { width: var(--shell); margin: 0 auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .36em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 22px;
}
.kicker::before { content:""; width: 28px; height: 1px; background: var(--terracotta); }

.h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: clamp(38px, 6vw, 88px); line-height: 1.02; letter-spacing: .01em;
  color: var(--cream);
}
.h2 em { font-style: italic; color: var(--ember); }

/* reveal words on scroll */
.reveal-line { overflow: hidden; display: block; }
.reveal-line > span { display: inline-block; will-change: transform; }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.story__copy p { margin-top: 26px; color: var(--cream-dim); font-size: 17px; max-width: 46ch; }
.story__stats { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; }
.stat b {
  font-family: "Cormorant Garamond", serif; font-size: clamp(40px, 5vw, 64px);
  color: var(--gold); display: block; line-height: 1;
}
.stat span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.story__visual { position: relative; aspect-ratio: 4/5; }
.gemcard {
  position: absolute; inset: 0; border-radius: 18px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(224,122,77,.4), transparent 55%),
    linear-gradient(160deg, var(--char), var(--espresso));
  border: 1px solid var(--char-line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.8), inset 0 1px 0 rgba(244,231,206,.06);
  display: grid; place-items: center;
}
.gemcard img { width: 64%; opacity: .9; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); will-change: transform; }
.story__sparkle { position: absolute; width: 90px; height: 90px; z-index: 4; }
.story__sparkle.a { top: -22px; right: 12%; }
.story__sparkle.b { bottom: 8%; left: -24px; width: 64px; height: 64px; }

/* ============================================================
   SIGNATURE — tilt cards
   ============================================================ */
.sig__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 56px; }
.sig__head p { color: var(--cream-dim); max-width: 36ch; }

.sig__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tilt {
  position: relative; border-radius: 16px; padding: 28px 26px 30px;
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(170deg, rgba(36,26,18,.9), rgba(18,14,10,.92));
  border: 1px solid var(--char-line);
  transform-style: preserve-3d; will-change: transform;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
  overflow: hidden;
}
.tilt::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background: radial-gradient(80% 60% at 50% 0%, var(--g1, rgba(224,122,77,.5)), transparent 70%);
  transition: opacity .5s var(--ease-out);
}
.tilt::after {
  /* glare */
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(255,240,220,.25), transparent 45%);
  transition: opacity .4s var(--ease-out);
}
.tilt:hover { border-color: var(--terracotta); box-shadow: 0 50px 90px -50px rgba(199,91,57,.6); }
.tilt:hover::after { opacity: 1; }
.tilt > * { transform: translateZ(40px); }
.tilt__num {
  position: absolute; top: 22px; left: 26px; transform: translateZ(60px);
  font-family: "Cormorant Garamond", serif; font-size: 14px; letter-spacing: .2em; color: var(--cream);
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
/* dish photo fills the card; gradient keeps text legible */
.tilt__media { position: absolute; inset: 0; z-index: 0; transform: translateZ(0); }
.tilt__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.06); transition: transform .7s var(--ease-out), filter .7s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.tilt:hover .tilt__media img { transform: scale(1.14); filter: saturate(1.15) contrast(1.05); }
.tilt__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,14,10,.12) 0%, rgba(18,14,10,.5) 44%, rgba(18,14,10,.93) 100%);
}
.tilt::before { z-index: 1; mix-blend-mode: screen; opacity: .35; }
.tilt:hover::before { opacity: .6; }
.tilt__tag { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--sand); }
.tilt h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 27px; margin: 8px 0 8px; color: var(--cream); }
.tilt p { font-size: 13.5px; color: var(--cream-dim); line-height: 1.55; }
.tilt__price {
  margin-top: 16px; font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.tilt__price::before { content:""; width: 18px; height: 1px; background: var(--terracotta); }

/* ============================================================
   RESERVE
   ============================================================ */
.reserve { position: relative; z-index: 3; overflow: hidden;
  background:
    radial-gradient(90% 120% at 85% 20%, rgba(199,91,57,.18), transparent 55%),
    linear-gradient(180deg, var(--espresso-2), var(--espresso));
  padding: clamp(90px, 14vh, 170px) clamp(20px, 4vw, 54px);
}
.reserve__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.reserve__intro p { margin-top: 24px; color: var(--cream-dim); max-width: 42ch; font-size: 17px; }
.reserve__hours { margin-top: 40px; border-top: 1px solid var(--char-line); padding-top: 24px; }
.reserve__hours .row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; border-bottom: 1px dashed rgba(58,42,29,.6); }
.reserve__hours .row span:last-child { color: var(--sand); }

.form { position: relative; background: rgba(20,15,10,.6); border: 1px solid var(--char-line);
  border-radius: 20px; padding: clamp(26px, 3vw, 40px); backdrop-filter: blur(6px);
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.9);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; margin-top: 16px; }
.field label { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: rgba(36,26,18,.7); border: 1px solid var(--char-line); color: var(--cream);
  font: inherit; font-size: 15px; transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field input::placeholder { color: var(--muted); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(199,91,57,.18);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9B492' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.form .btn { width: 100%; justify-content: center; margin-top: 24px; }
.form__ok {
  position: absolute; inset: 0; z-index: 5; border-radius: 20px;
  background: linear-gradient(180deg, var(--char), var(--espresso));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center; padding: 40px; opacity: 0; pointer-events: none; transform: scale(.96);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.form__ok.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.form__ok .mark { width: 70px; height: 70px; }
.form__ok h3 { font-family: "Cormorant Garamond", serif; font-size: 30px; color: var(--cream); }
.form__ok p { color: var(--cream-dim); max-width: 30ch; }

/* ============================================================
   EMOTIONAL
   ============================================================ */
.emo { position: relative; z-index: 3; text-align: center; }
.emo__inner { width: min(900px, 92vw); margin: 0 auto; }
.emo .kicker { justify-content: center; }
.emo .kicker::before { display: none; }
.emo__q {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(28px, 4.6vw, 62px); line-height: 1.12; letter-spacing: .005em;
  color: var(--cream); margin-bottom: 22px;
}
.emo__q em { font-style: italic; color: var(--ember); }
.emo__q.dim { color: var(--cream-dim); margin-bottom: 40px; }
.emo__q.dim em { color: var(--terracotta); }
.emo__p { margin: 0 auto; max-width: 52ch; font-size: clamp(15px,1.7vw,19px); color: var(--cream-dim); line-height: 1.8; }
.emo__line {
  margin-top: 30px; font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(20px, 2.6vw, 34px); color: var(--gold);
}
.emo__sparkle { position: absolute; top: 8%; left: 50%; transform: translateX(-50%); width: 70px; height: 70px; opacity: .8; }

/* ============================================================
   OFFER
   ============================================================ */
.offer__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.offer__head .kicker { justify-content: center; }
.offer__head .kicker::before { display: none; }
.offer__head .h2 { margin: 0 auto; }
.offer__head p { margin-top: 22px; color: var(--cream-dim); font-size: 17px; }
.offer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer__card {
  position: relative; padding: 40px 30px 34px; border-radius: 18px; overflow: hidden;
  background: linear-gradient(170deg, rgba(36,26,18,.85), rgba(18,14,10,.92));
  border: 1px solid var(--char-line);
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.offer__card::before {
  content:""; position:absolute; inset:0 0 auto 0; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--ember), var(--terracotta));
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out);
}
.offer__card:hover { transform: translateY(-8px); border-color: var(--terracotta); box-shadow: 0 50px 90px -55px rgba(199,91,57,.6); }
.offer__card:hover::before { transform: scaleX(1); }
.offer__no { font-family: "Cormorant Garamond", serif; font-size: 14px; letter-spacing: .3em; color: var(--terracotta); }
.offer__gem { width: 64px; margin: 18px 0 24px; opacity: .85; filter: drop-shadow(0 12px 24px rgba(0,0,0,.5)); }
.offer__pct {
  display: block; margin: 12px 0 4px; line-height: 1;
  font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: clamp(56px, 7vw, 92px);
  background: linear-gradient(160deg, var(--gold), var(--ember)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.offer__card h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 26px; color: var(--cream); margin-bottom: 10px; }
.offer__card--big h3 { font-size: 22px; color: var(--gold); margin-top: -2px; }
.offer__card p { font-size: 14.5px; color: var(--cream-dim); line-height: 1.6; }
.offer__note {
  margin-top: 44px; text-align: center; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sand); display: flex; align-items: center; justify-content: center; gap: 12px;
}
.dotpulse { width: 9px; height: 9px; border-radius: 50%; background: var(--ember); position: relative; }
.dotpulse::after { content:""; position:absolute; inset:0; border-radius:50%; border:1px solid var(--ember); animation: ping 2.4s var(--ease-out) infinite; }

/* ============================================================
   AMBIENCE
   ============================================================ */
.amb__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.amb__head .kicker { justify-content: center; }
.amb__head .kicker::before { display: none; }
.amb__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: stretch;
}
.amb__item {
  position: relative; margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--char-line);
  background: linear-gradient(160deg, var(--char), var(--espresso));
  aspect-ratio: 3 / 2; min-height: 280px;
  box-shadow: 0 50px 100px -50px rgba(0,0,0,.8);
}
.amb__item--tall { aspect-ratio: auto; }
.amb__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06); will-change: transform;
  transition: transform 1.2s var(--ease-out), filter 1.2s var(--ease-out);
  filter: saturate(1.02);
}
.amb__item:hover img { transform: scale(1.12); filter: saturate(1.12); }
.amb__item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(18,14,10,.78) 100%);
}
.amb__item figcaption {
  position: absolute; left: 22px; bottom: 18px; z-index: 2;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--cream);
  display: flex; align-items: center; gap: 12px;
}
.amb__item figcaption span {
  font-family: "Cormorant Garamond", serif; letter-spacing: .18em; color: var(--terracotta);
}
@media (max-width: 860px) {
  .amb__grid { grid-template-columns: 1fr; }
  .amb__item, .amb__item--tall { aspect-ratio: 3 / 2; }
}

/* ============================================================
   RESERVE — Google Form embed
   ============================================================ */
.reserve__incl { list-style: none; margin: 26px 0 22px; display: grid; gap: 12px; }
.reserve__incl li {
  position: relative; padding-left: 30px; font-size: 16px; color: var(--cream);
}
.reserve__incl li::before {
  content: "◆"; position: absolute; left: 0; top: 1px; color: var(--terracotta); font-size: 12px;
}
.reserve__hint { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

/* District booking card */
.bookcard {
  margin-top: 30px; padding: 22px 22px 24px; border-radius: 16px;
  border: 1px solid var(--char-line);
  background: linear-gradient(160deg, rgba(36,26,18,.7), rgba(18,14,10,.82));
}
.bookcard__row, .form__head { display: flex; gap: 14px; align-items: flex-start; }
.form__head { margin-bottom: 18px; }
.bookcard__no {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif; font-size: 14px; letter-spacing: .12em;
  color: var(--terracotta); border: 1px solid var(--char-line);
}
.bookcard h3, .form__head h3 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 22px; color: var(--cream); line-height: 1.1; }
.bookcard p, .form__hint { font-size: 13.5px; color: var(--cream-dim); margin-top: 5px; line-height: 1.5; }
.bookcard__btn { width: 100%; justify-content: center; margin-top: 18px; }
.form__legal { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 14px; }

.form-embed {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 560px;
  background: linear-gradient(180deg, #f6efe2, #efe5d2);
  border: 1px solid var(--char-line);
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.9);
}
.form-embed__bar {
  display: flex; gap: 7px; padding: 14px 16px; background: rgba(18,14,10,.9); border-bottom: 1px solid var(--char-line);
  position: relative; z-index: 2;
}
.form-embed__bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--char-line); }
.form-embed__bar span:first-child { background: var(--terracotta); }
.form-embed__bar span:nth-child(2) { background: var(--ember); }
.form-embed__bar span:nth-child(3) { background: var(--gold); }
.form-embed iframe { width: 100%; height: 620px; border: 0; display: block; background: #f6efe2; }
.form-embed iframe[hidden] { display: none; }
.form-embed__ph {
  position: absolute; inset: 47px 0 0 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 40px;
  background: linear-gradient(180deg, var(--char), var(--espresso)); color: var(--cream);
}
.form-embed__ph img { width: 60px; opacity: .85; }
.form-embed__ph h3 { font-family: "Cormorant Garamond", serif; font-size: 26px; }
.form-embed__ph p { color: var(--cream-dim); max-width: 34ch; font-size: 14px; line-height: 1.6; }
.form-embed__ph code { color: var(--gold); font-family: ui-monospace, monospace; font-size: 12.5px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: stretch; }
.contact__list { display: grid; gap: 4px; margin-top: 40px; }
.cline {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--char-line);
}
.cline:last-child { border-bottom: 1px solid var(--char-line); }
.cline .lab { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--terracotta); }
.cline .val { font-size: clamp(18px, 2vw, 24px); font-family: "Cormorant Garamond", serif; color: var(--cream); }
.cline .val small { display: block; font-family: "Manrope"; font-size: 13px; color: var(--cream-dim); letter-spacing: 0; margin-top: 4px; }
.cline a.val:hover { color: var(--ember); }
.cline .maps-link { color: var(--terracotta); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; margin-top: 10px; transition: color .3s var(--ease-out); }
a.cline:hover .maps-link { color: var(--ember); }

.map-cta {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; align-items: center; padding: 11px 20px; border-radius: 100px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream);
  background: rgba(18,14,10,.72); border: 1px solid var(--char-line); backdrop-filter: blur(6px);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.map-cta:hover { transform: translateX(-50%) translateY(-2px); border-color: var(--terracotta); background: rgba(199,91,57,.16); }

.contact__map {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 420px;
  border: 1px solid var(--char-line); background: linear-gradient(160deg, var(--char), var(--espresso));
  display: grid; place-items: center;
}
.contact__map .grid-lines {
  position: absolute; inset: 0; opacity: .4;
  background-image:
    linear-gradient(rgba(199,91,57,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,91,57,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
          mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
}
.contact__map .grid-lines.map-pan { animation: mapPan 26s linear infinite; }
@keyframes mapPan { from { background-position: 0 0, 0 0; } to { background-position: 44px 44px, 44px 44px; } }

.contact__map .pin { position: relative; text-align: center; z-index: 2; width: 100%; padding: 0 24px; }
.contact__map .pin img { width: 64px; margin: 0 auto 14px; animation: float 5s ease-in-out infinite; }
.contact__map .pin b { font-family: "Cormorant Garamond", serif; font-size: 24px; letter-spacing: .26em; padding-left:.26em; }

/* live open/closed badge */
.contact__map .live {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  padding: 7px 14px; border-radius: 100px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--char-line); background: rgba(18,14,10,.55); backdrop-filter: blur(4px); color: var(--cream);
}
.contact__map .live i {
  width: 8px; height: 8px; border-radius: 50%; background: #57c06a; position: relative;
  box-shadow: 0 0 0 0 rgba(87,192,106,.6); animation: livePulse 2s var(--ease-out) infinite;
}
.contact__map .live.closed i { background: var(--terracotta); box-shadow: 0 0 0 0 rgba(199,91,57,.6); animation-name: livePulseR; }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(87,192,106,.55)} 100%{box-shadow:0 0 0 10px rgba(87,192,106,0)} }
@keyframes livePulseR { 0%{box-shadow:0 0 0 0 rgba(199,91,57,.55)} 100%{box-shadow:0 0 0 10px rgba(199,91,57,0)} }

/* scrolling address marquee */
.contact__map .addr-marquee { overflow: hidden; margin-top: 12px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.contact__map .addr-track { display: inline-flex; align-items: center; gap: 14px; white-space: nowrap; animation: addrScroll 18s linear infinite; }
.contact__map .addr-track span { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--sand); }
.contact__map .addr-track i { color: var(--terracotta); font-size: 8px; font-style: normal; }
@keyframes addrScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.contact__map .coords {
  display: block; margin-top: 16px; font-family: "Manrope"; font-size: 11px; letter-spacing: .12em;
  color: var(--muted); font-variant-numeric: tabular-nums;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.contact__map .ping { position: absolute; left: 50%; top: 38%; width: 14px; height: 14px; transform: translate(-50%,-50%); }
.contact__map .ping::before {
  content:""; position:absolute; inset:0; border-radius:50%; background: var(--ember);
}
.contact__map .ping::after {
  content:""; position:absolute; inset:0; border-radius:50%; border:1px solid var(--ember);
  animation: ping 2.4s var(--ease-out) infinite;
}
@keyframes ping { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(6);opacity:0} }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 3; background: var(--espresso); border-top: 1px solid var(--char-line);
  padding: 60px clamp(20px, 4vw, 54px) 40px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { height: 38px; }
.footer__brand b { font-family: "Cormorant Garamond", serif; font-size: 26px; letter-spacing: .34em; padding-left:.34em; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--char-line);
  display: grid; place-items: center; transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.footer__social a:hover { transform: translateY(-3px); border-color: var(--terracotta); background: rgba(199,91,57,.12); }
.footer__social svg { width: 17px; height: 17px; fill: var(--cream-dim); }
.footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--char-line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .04em; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sig__grid { grid-template-columns: repeat(2, 1fr); }
  .reserve__grid, .contact__grid { grid-template-columns: 1fr; }
  .reserve__intro { order: 1; }
}
@media (max-width: 760px) {
  .offer__grid { grid-template-columns: 1fr; gap: 16px; }
  .section { padding: clamp(64px, 10vh, 110px) clamp(18px, 5vw, 40px); }
  .reserve, .offer { padding: clamp(64px, 10vh, 110px) clamp(18px, 5vw, 40px); }
}
@media (max-width: 600px) {
  .sig__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .cline { grid-template-columns: 1fr; gap: 6px; }
  .form-embed { min-height: 480px; }
  .form-embed iframe { height: 540px; }

  /* compact nav */
  .nav { padding: 12px 16px; padding-top: calc(12px + env(safe-area-inset-top)); }
  .nav.scrolled { padding-top: calc(10px + env(safe-area-inset-top)); padding-bottom: 10px; }
  .nav__brand b { display: none; }
  .nav__brand img { height: 26px; }
  .nav__actions { gap: 8px; }
  .nav .btn { padding: 10px 15px; font-size: 13px; }
  .nav .btn--primary .dot { display: none; }
  .nav .lbl-extra { display: none; }   /* "Reserve a Table" -> "Reserve" */

  /* hero */
  .hero__eyebrow { letter-spacing: .22em; gap: 9px; font-size: 11px; flex-wrap: wrap; justify-content: center; }
  .hero__eyebrow .ln { width: 26px; }
  .hero__sub { font-size: 15px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta .btn { justify-content: center; }

  /* offer cards a touch tighter */
  .offer__card { padding: 30px 24px 28px; }

  /* contact / map */
  .contact__map { min-height: 360px; }
  .cline .val { font-size: 20px; }
  .map-cta { font-size: 11px; padding: 10px 16px; bottom: 16px; }
}
@media (max-width: 380px) {
  .hero__eyebrow .ln { display: none; }
  .hero__title { font-size: clamp(38px, 13vw, 52px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .contact__map .pin img, .contact__map .ping::after,
  .map-pan, .addr-track, .contact__map .live i { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* Initial hidden states for JS-driven reveals (kept visible if JS fails) */
.js .pre-hide { opacity: 0; }
