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

/* ---------- Brand fonts: Copperplate Gothic ---------- */
@font-face {
  font-family: "Copperplate Gothic";
  font-weight: 100 450;              /* Light → body / secondary */
  font-display: swap;
  src: url("assets/fonts/copperplate-light.woff2") format("woff2");
}
@font-face {
  font-family: "Copperplate Gothic";
  font-weight: 451 900;             /* Bold → headings / primary */
  font-display: swap;
  src: url("assets/fonts/copperplate-bold.woff2") format("woff2");
}

: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: "Copperplate Gothic", "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: "Copperplate Gothic", "Playfair Display", 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; flex: 0 0 auto; }
.nav__logo {
  height: clamp(52px, 4.6vw, 66px); width: auto; display: block;
  filter: brightness(1.12) drop-shadow(0 2px 12px rgba(0,0,0,.6));
}
.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: "Copperplate Gothic", "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(46px, 8.4vw, 128px);
  line-height: 1.0; letter-spacing: -.01em;
  max-width: 14ch; margin: 0 auto;
  padding: 0.08em 0.04em;                 /* room so descenders never clip */
  background: linear-gradient(105deg,
    var(--sand) 0%, var(--gold) 26%, #fff7e6 42%, var(--gold) 58%, var(--terracotta) 82%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 44px rgba(228,184,115,.30)) drop-shadow(0 16px 44px rgba(0,0,0,.6));
  animation: shimmer 7s linear infinite;
}
.hero__title .word { display: inline-block; will-change: transform, opacity; }
.hero__title .em { font-style: italic; }
@keyframes shimmer { to { background-position: -220% center; } }

.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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", serif; font-weight: 600;
  font-size: clamp(40px, 6.4vw, 96px); line-height: 1.06; letter-spacing: -.012em; text-wrap: balance;
  background: linear-gradient(180deg, #fbf2de 0%, var(--sand) 76%, #c79b58 126%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h2 em {
  font-style: italic; -webkit-text-fill-color: transparent;
  background: linear-gradient(105deg, var(--gold) 0%, #fff7e6 45%, var(--ember) 78%, var(--gold) 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6.5s linear infinite;
}

/* reveal words on scroll — padding gives descenders/italics room so
   overflow:hidden never clips them; negative margin keeps the leading tight */
.reveal-line { overflow: hidden; display: block; padding-bottom: 0.22em; margin-bottom: -0.16em; }
.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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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: 170px; height: auto; }
.form__ok h3 { font-family: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", serif; font-size: 14px; letter-spacing: .3em; color: var(--terracotta); }
.offer__gem { width: 124px; margin: 16px 0 22px; opacity: .92; filter: drop-shadow(0 12px 24px rgba(0,0,0,.5)); }
.offer__pct {
  display: block; margin: 12px 0 4px; line-height: 1;
  font-family: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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; min-width: 0;
  border: 1px solid var(--char-line);
  background: linear-gradient(160deg, var(--char), var(--espresso));
  height: clamp(340px, 42vw, 540px);   /* fixed height → width comes only from the grid track */
  box-shadow: 0 50px 100px -50px rgba(0,0,0,.8);
}
.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: "Copperplate Gothic", "Playfair Display", serif; letter-spacing: .18em; color: var(--terracotta);
}
@media (max-width: 860px) {
  .amb__grid { grid-template-columns: 1fr; }
  .amb__item { height: clamp(260px, 62vw, 380px); }
}

/* ---------- Vibes: feature video + gallery ---------- */
.vibes__video {
  position: relative; margin: 0 0 22px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--char-line); aspect-ratio: 16 / 9;
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.9); isolation: isolate;
}
.vibes__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vibes__video::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(18,14,10,.15) 0%, transparent 30%, transparent 62%, rgba(18,14,10,.7) 100%);
}
.vibes__video figcaption {
  position: absolute; left: 24px; bottom: 20px; z-index: 2;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--cream);
}
.vibes__video figcaption span { color: var(--ember); }
.vibes__sound {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 100px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--cream);
  background: rgba(18,14,10,.6); border: 1px solid var(--char-line); backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.vibes__sound svg { width: 17px; height: 17px; fill: var(--gold); }
.vibes__sound:hover { transform: translateY(-2px); border-color: var(--terracotta); background: rgba(199,91,57,.18); }

.vibes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vibes__grid .amb__item { height: clamp(220px, 24vw, 340px); }
@media (max-width: 860px) { .vibes__grid { grid-template-columns: repeat(2, 1fr); } .vibes__grid .amb__item { height: clamp(200px, 44vw, 300px); } }
@media (max-width: 520px) { .vibes__grid { grid-template-columns: 1fr; } .vibes__grid .amb__item { height: clamp(240px, 64vw, 340px); } }

/* ============================================================
   OUR STORY (About)
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.about__head { position: relative; }
.about__tag { margin-top: 22px; font-family: "Copperplate Gothic", "Playfair Display", serif; font-style: italic; font-size: clamp(19px, 2.4vw, 28px); color: var(--gold); }
.about__stat { margin-top: 42px; display: flex; align-items: baseline; gap: 18px; }
.about__stat b {
  font-family: "Copperplate Gothic", "Playfair Display", serif; font-weight: 700;
  font-size: clamp(88px, 11vw, 168px); line-height: 1; padding: 0.06em 0.06em 0.1em;
  background: linear-gradient(105deg, var(--gold) 0%, #fff7e6 40%, var(--gold) 55%, var(--terracotta) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 34px rgba(228,184,115,.4));
  animation: shimmer 6s linear infinite;
}
.about__stat span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }
.about__body { padding-top: 6px; }
.about__body p { margin-bottom: 22px; color: var(--cream-dim); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.8; max-width: 60ch; text-wrap: pretty; }
.about__body p em { color: var(--cream); font-style: italic; }
.about__quote {
  margin-top: 34px; padding-left: 24px; border-left: 2px solid var(--terracotta);
  font-family: "Copperplate Gothic", "Playfair Display", serif; font-size: clamp(20px, 2.4vw, 30px); color: var(--cream); line-height: 1.4;
}
.about__quote span { color: var(--ember); font-style: italic; display: block; margin-top: 6px; }
.about__sparkle { position: absolute; top: -10px; right: 2%; width: 62px; height: 62px; opacity: .8; z-index: 4; }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; gap: 36px; } .about__sparkle { display: none; } }

/* ============================================================
   THE SHALIMAR CHRONICLES (timeline)
   ============================================================ */
.chron__head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.chron__head .kicker { justify-content: center; }
.chron__head .kicker::before { display: none; }
.chron__head .h2 { margin: 0 auto; }
.chron__timeline { position: relative; max-width: 720px; margin: 0 auto; }
.chron__rail { position: absolute; left: 150px; top: 12px; bottom: 10px; width: 2px; background: var(--char-line); overflow: hidden; }
.chron__progress { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(180deg, var(--gold), var(--ember), var(--terracotta)); }
.chron__item { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 62px; padding: 0 0 48px; align-items: start; }
.chron__item:last-child { padding-bottom: 0; }
.chron__year { font-family: "Copperplate Gothic", "Playfair Display", serif; font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); color: var(--gold); text-align: right; line-height: 1; padding: 2px 8px 0 0; white-space: nowrap; }
.chron__item::before {
  content: ""; position: absolute; left: 144px; top: 8px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--espresso); border: 2px solid var(--terracotta); z-index: 2; box-shadow: 0 0 0 5px rgba(199,91,57,.12);
}
.chron__card h3 { font-family: "Copperplate Gothic", "Playfair Display", serif; font-weight: 500; font-size: clamp(22px, 2.4vw, 28px); color: var(--cream); margin-bottom: 8px; }
.chron__card p { color: var(--cream-dim); font-size: 15.5px; line-height: 1.65; max-width: 46ch; }
.chron__card p em { color: var(--ember); font-style: italic; }
@media (max-width: 560px) {
  .chron__rail { left: 7px; }
  .chron__item { grid-template-columns: 1fr; gap: 8px; padding-left: 34px; }
  .chron__item::before { left: 1px; }
  .chron__year { text-align: left; }
}

/* ============================================================
   BOOK PANEL (District)
   ============================================================ */
.bookpanel {
  position: relative; border-radius: 20px; padding: clamp(30px, 4vw, 48px); text-align: center; overflow: hidden;
  background: linear-gradient(170deg, rgba(36,26,18,.88), rgba(18,14,10,.94));
  border: 1px solid var(--char-line); box-shadow: 0 60px 120px -60px rgba(0,0,0,.9);
}
.bookpanel::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--gold), var(--ember), var(--terracotta)); }
.bookpanel__logo { width: 150px; margin: 0 auto 22px; opacity: .95; filter: drop-shadow(0 14px 28px rgba(0,0,0,.5)); }
.bookpanel h3 { font-family: "Copperplate Gothic", "Playfair Display", serif; font-weight: 500; font-size: clamp(24px, 3vw, 32px); color: var(--cream); }
.bookpanel p { margin: 12px auto 26px; color: var(--cream-dim); font-size: 15px; max-width: 34ch; line-height: 1.6; }
.bookpanel__btn { width: 100%; justify-content: center; }
.bookpanel__alt { display: block; margin-top: 16px; font-size: 13px; color: var(--muted); }
.bookpanel__alt a { color: var(--sand); transition: color .3s var(--ease-out); }
.bookpanel__alt a:hover { color: var(--ember); }

/* ============================================================
   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: "Copperplate Gothic", "Playfair Display", serif; font-size: 14px; letter-spacing: .12em;
  color: var(--terracotta); border: 1px solid var(--char-line);
}
.bookcard h3, .form__head h3 { font-family: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic", "Playfair Display", 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: block; }
.contact__list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; margin-top: 48px;
  border-top: 1px solid var(--char-line);
}
.cline {
  display: grid; grid-template-columns: 1fr; gap: 10px; align-content: start;
  padding: 30px 0;
}
.cline:not(:first-child) { border-left: 1px solid var(--char-line); padding-left: 36px; }
.cline .lab { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--terracotta); }
.cline .val { font-size: clamp(18px, 2vw, 24px); font-family: "Copperplate Gothic", "Playfair Display", serif; color: var(--cream); }
.cline .val small { display: block; font-family: "Copperplate Gothic"; 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: "Copperplate Gothic", "Playfair Display", 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: "Copperplate Gothic"; 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; }
.footer__logo { height: 76px; width: auto; }
.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); }

/* ============================================================
   PREMIUM CENTERING — Apple-style centered section rhythm
   ============================================================ */
.kicker { justify-content: center; }
.kicker::before, .kicker::after { display: none; }
.h2 { text-align: center; margin-left: auto; margin-right: auto; }

/* Our Story → centered column */
.about__grid { grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; text-align: center; }
.about__head { position: static; }
.about__tag { margin-top: 20px; }
.about__stat { justify-content: center; margin-top: 40px; }
.about__body { text-align: left; max-width: 60ch; margin: 46px auto 0; }
.about__body p { margin-left: auto; margin-right: auto; }
.about__quote {
  border-left: none; padding-left: 0; text-align: center; margin-top: 46px;
  max-width: 40ch; margin-left: auto; margin-right: auto;
  font-size: clamp(22px, 2.6vw, 32px);
}
.about__sparkle { right: auto; left: 50%; transform: translateX(-50%); top: -18px; }

/* Book → centered stack */
.reserve__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; text-align: center; }
.reserve__intro p { margin-left: auto; margin-right: auto; }
.reserve__hours { max-width: 420px; margin: 40px auto 0; text-align: left; }
.bookpanel { margin-top: 40px; }

/* Contact → centered head + centered band */
#contact .h2 { text-align: center; }
.contact__list { max-width: 980px; margin-left: auto; margin-right: auto; }

/* Signature intro helper stays centered */
.sig__head, .offer__head { text-align: center; }

/* ============================================================
   FOLLOW ALONG (contact socials)
   ============================================================ */
.follow { margin-top: 52px; text-align: center; }
.follow__lab {
  display: block; font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 20px;
}
.follow__links { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.follow__link {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 100px;
  border: 1px solid var(--char-line); background: rgba(36,26,18,.5);
  font-size: 14px; letter-spacing: .02em; color: var(--cream); overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out);
}
.follow__link svg { width: 18px; height: 18px; fill: var(--gold); transition: fill .35s var(--ease-out); }
.follow__link:hover { transform: translateY(-3px); border-color: rgba(228,184,115,.6); background: rgba(199,91,57,.14); }
.follow__link:hover svg { fill: #fff7e6; }
@media (max-width: 480px) { .follow__links { flex-direction: column; align-items: stretch; } .follow__link { justify-content: center; } }

/* ============================================================
   GLAMOUR LAYER — shine, gold, cursor light, spotlight surfaces
   ============================================================ */

/* cursor-reactive gold light that follows the pointer across the page */
.spotlight {
  position: fixed; inset: 0; z-index: 4; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--cx, 50%) var(--cy, -20%), rgba(232,176,110,.13), transparent 68%);
  mix-blend-mode: screen; transition: opacity .6s var(--ease-out); will-change: background;
}
@media (hover: hover) and (pointer: fine) { .spotlight { opacity: 1; } }

/* glamorous gold kicker with flanking hairlines */
.kicker { color: var(--gold); gap: 14px; }
.kicker::before, .kicker::after {
  display: inline-block !important; content: ""; width: 34px; height: 1px; vertical-align: middle;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* spotlight surfaces — gold glow follows cursor inside cards, gold edge on hover */
[data-spotlight] { position: relative; isolation: isolate; }
[data-spotlight]::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 3; opacity: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(232,176,110,.16), transparent 62%);
  transition: opacity .45s var(--ease-out);
}
[data-spotlight]:hover::after { opacity: 1; }
[data-spotlight] { transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out); }
[data-spotlight]:hover { border-color: rgba(228,184,115,.55); box-shadow: 0 40px 90px -50px rgba(228,184,115,.35), 0 30px 80px -40px rgba(0,0,0,.7); }

/* primary button — sweeping shine on hover */
.btn--primary { isolation: isolate; }
.btn--primary .shine, .btn--primary::after { will-change: transform; }
.btn--primary > .sheen {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; border-radius: inherit; overflow: hidden;
}
.btn--primary .sheen::before {
  content: ""; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,248,230,.55), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease-out);
}
.btn--primary:hover .sheen::before { left: 130%; }

/* thin shimmering gold divider between major sections */
.goldline { position: relative; height: 1px; width: min(1100px, 86vw); margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(228,184,115,.55), transparent); }
.goldline::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 22%; height: 3px; border-radius: 3px;
  background: radial-gradient(closest-side, rgba(255,247,230,.9), transparent);
  filter: blur(1px); animation: glide 5.5s var(--ease-in-out) infinite;
}
@keyframes glide { 0%,100% { left: 2%; } 50% { left: 76%; } }

/* refined tag & quote glow */
.about__tag { text-shadow: 0 0 30px rgba(228,184,115,.25); }
.about__quote span { text-shadow: 0 0 26px rgba(224,122,77,.25); }

@media (prefers-reduced-motion: reduce) {
  .hero__title, .h2 em, .about__stat b { animation: none !important; }
  .goldline::before { animation: none !important; }
}

/* ============================================================
   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); }
  /* contact band → stacked */
  .contact__list { grid-template-columns: 1fr; margin-top: 36px; }
  .cline:not(:first-child) { border-left: none; padding-left: 0; border-top: 1px solid var(--char-line); }
  .cline { padding: 22px 0; }
}
@media (max-width: 600px) {
  .sig__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .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__logo { height: 38px; }
  .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; }

  .cline .val { font-size: 20px; }
}
@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; }

/* ============================================================
   COPPERPLATE GOTHIC TUNING — brand typography
   ============================================================ */
/* body / secondary → Light weight, tuned for legibility of an all-caps face */
body { font-weight: 300; letter-spacing: .015em; }
p, li, .hero__sub, .about__body p, .chron__card p, .bookpanel p, .bookpanel__alt,
.reserve__intro p, .offer__head p, .sig__head p, .form__hint, .form__legal, .tilt p,
.cline .val small, .reserve__hours, .footer__bottom, .follow__link {
  font-weight: 300; letter-spacing: .012em; line-height: 1.7;
}
/* headings / primary → Bold weight so the 451–900 face is selected */
.hero__title, .h2, .about__stat b, .chron__year, .offer__pct,
.bookpanel h3, .chron__card h3, .about__quote, .about__tag, .cline .val,
h3, .btn, .kicker, .hero__eyebrow, .footer__logo, .amb__item figcaption {
  font-weight: 700;
}
/* engraved caps want air; keep display sizes in check (caps are wide) */
.kicker, .hero__eyebrow { letter-spacing: .3em; }
.hero__title { letter-spacing: .015em; font-size: clamp(38px, 7vw, 98px); max-width: 16ch; }
.h2 { letter-spacing: .02em; font-size: clamp(34px, 5.4vw, 82px); }
.about__stat b { letter-spacing: .01em; }
.chron__year { letter-spacing: .04em; }
.btn { letter-spacing: .06em; }
/* Copperplate has no italic — emphasis via colour/weight, never faux-oblique */
em, i, .about__quote span, .emo__q em, .about__body p em, .chron__card p em,
.about__tag, .form__ok p, .hero__title .em, .h2 em { font-style: normal !important; }
