/* ============================================================
   LEONARDO MIAMI — Italian Restaurant & Late Night, Miami Beach
   Design system: 1930s–50s glamour, emerald + champagne gold
   ============================================================ */

:root{
  --ink:#0b110c;
  --emerald-950:#101a12;
  --emerald-900:#142016;
  --emerald-800:#1b2a1d;
  --emerald:#2d3d2e;
  --emerald-600:#3b4f3c;
  --cream:#f4f0e8;
  --cream-dim:#cfcabd;
  --cream-mute:#9ba295;
  /* Gold matches the live site exactly. Sampled from the approved site
     2026-08-05: it uses exactly one gold, #b8986a, across 36 elements.
     We were shipping #c9a86a, a visibly brighter, more saturated tone.
     --gold-bright stays as a lighter derived tone for small text and hover
     states on dark grounds, where #b8986a alone gets muddy. */
  --gold:#b8986a;
  --gold-bright:#e6cd92;
  --champagne:#dccaa0;
  --amber:#d59a55;      /* Act I — Aperitivo */
  --leaf:#5c7d55;       /* Act II — Dinner */
  --wine:#8a3346;       /* Act III — Late Night */

  --font-display:"Cinzel",serif;
  --font-serif:"Cormorant Garamond",Georgia,serif;
  --font-body:"Open Sans","Helvetica Neue",Arial,sans-serif;

  --maxw:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  background:var(--emerald-950);
  color:var(--cream);
  line-height:1.65;
  font-weight:300;
  overflow-x:hidden;
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
}
body.no-scroll{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
::selection{background:var(--gold);color:var(--ink)}

/* film grain + vignette overlay */
body::after{
  content:"";position:fixed;inset:0;z-index:9;pointer-events:none;
  background:radial-gradient(120% 100% at 50% 0%,transparent 55%,rgba(0,0,0,.35) 100%);
  mix-blend-mode:multiply;opacity:.7;
}

/* ---------- typography ---------- */
.eyebrow{
  font-family:var(--font-body);font-weight:600;
  font-size:.72rem;letter-spacing:.42em;text-transform:uppercase;
  color:var(--gold);display:inline-block;
}
h1,h2,h3{font-family:var(--font-display);font-weight:600;line-height:1.12;letter-spacing:.02em}
.display{
  font-family:var(--font-display);font-weight:600;
  font-size:clamp(2.4rem,6vw,5rem);line-height:1.06;letter-spacing:.03em;
  text-transform:uppercase;
}
.serif-lead{
  font-family:var(--font-serif);font-weight:400;
  font-size:clamp(1.35rem,2.4vw,1.9rem);line-height:1.5;color:var(--cream-dim);
}
.section-title{
  font-family:var(--font-display);font-weight:600;
  font-size:clamp(1.9rem,4vw,3rem);text-transform:uppercase;letter-spacing:.04em;
}
p{font-size:1.02rem}

/* gold hairline divider */
.rule{display:flex;align-items:center;gap:1rem;justify-content:center}
.rule::before,.rule::after{content:"";height:1px;width:60px;background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.rule .dot{width:6px;height:6px;border:1px solid var(--gold);transform:rotate(45deg)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.6em;
  font-family:var(--font-display);font-weight:500;
  font-size:.78rem;letter-spacing:.22em;text-transform:uppercase;
  padding:1.05em 2.2em;position:relative;transition:.5s var(--ease);
  border:1px solid var(--gold);color:var(--gold-bright);overflow:hidden;
}
.btn::before{content:"";position:absolute;inset:0;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .5s var(--ease);z-index:-1}
.btn:hover{color:var(--ink)}
.btn:hover::before{transform:scaleX(1)}
.btn--solid{background:var(--gold);color:var(--ink);border-color:var(--gold)}
.btn--solid::before{background:var(--gold-bright)}
.btn--ghost{border-color:rgba(244,240,232,.35);color:var(--cream)}
.btn--ghost::before{background:var(--cream)}

/* ---------- layout helpers ---------- */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 clamp(1.2rem,5vw,3rem)}
section{position:relative}
.reveal{opacity:0;transform:translateY(38px);transition:opacity 1s var(--ease-out),transform 1s var(--ease-out)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.12s}.reveal.d2{transition-delay:.24s}.reveal.d3{transition-delay:.36s}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader{
  position:fixed;inset:0;z-index:1000;background:var(--emerald-950);
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:1.4rem;
  transition:opacity .9s ease,visibility .9s;
}
#preloader.done{opacity:0;visibility:hidden}
#preloader img{width:min(260px,55vw);opacity:0;transform:translateY(14px);animation:plFade 1.3s var(--ease-out) forwards}
#preloader .pl-line{width:0;height:1px;background:var(--gold);animation:plLine 1.6s .5s var(--ease) forwards}
#preloader .pl-sub{font-family:var(--font-display);font-size:.7rem;letter-spacing:.5em;color:var(--cream-mute);text-transform:uppercase;opacity:0;animation:plFade 1s .8s forwards}
@keyframes plFade{to{opacity:1;transform:none}}
@keyframes plLine{to{width:min(220px,45vw)}}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:120;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.5rem clamp(1.2rem,5vw,3rem);transition:.5s var(--ease);
}
.nav.scrolled{background:rgba(16,26,18,.92);backdrop-filter:blur(12px);padding:.85rem clamp(1.2rem,5vw,3rem);box-shadow:0 1px 0 rgba(201,168,106,.18)}
.nav__logo img{height:46px;transition:.5s var(--ease)}
.nav.scrolled .nav__logo img{height:38px}
.nav__links{display:flex;align-items:center;gap:2.1rem}
.nav__links a{font-family:var(--font-display);font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;color:var(--cream);position:relative;padding:.2rem 0}
.nav__links a::after{content:"";position:absolute;left:0;bottom:-3px;height:1px;width:0;background:var(--gold);transition:width .4s var(--ease)}
.nav__links a:hover{color:var(--gold-bright)}
.nav__links a:hover::after{width:100%}
.nav__cta{margin-left:.4rem}
.nav__burger{display:none;flex-direction:column;gap:5px;width:30px;z-index:130}
.nav__burger span{height:1.5px;width:100%;background:var(--cream);transition:.4s var(--ease)}
.nav__burger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav__burger.open span:nth-child(2){opacity:0}
.nav__burger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* mobile menu */
.mobile-menu{
  position:fixed;inset:0;z-index:115;background:var(--emerald-950);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.5rem;
  opacity:0;visibility:hidden;transition:.5s var(--ease);
}
.mobile-menu.open{opacity:1;visibility:visible}
.mobile-menu a{font-family:var(--font-display);font-size:1.4rem;letter-spacing:.14em;text-transform:uppercase;color:var(--cream);opacity:.9}
.mobile-menu a:hover{color:var(--gold-bright)}

/* ============================================================
   HERO
   ============================================================ */
.hero{height:100svh;min-height:640px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.hero__slides{position:absolute;inset:0}
.hero__slide{position:absolute;inset:0;opacity:0;transition:opacity 2s var(--ease);background-size:cover;background-position:center;transform:scale(1.08);animation:kenburns 12s linear infinite alternate}
.hero__slide.active{opacity:1}
@keyframes kenburns{from{transform:scale(1.05)}to{transform:scale(1.16)}}
.hero::before{content:"";position:absolute;inset:0;z-index:2;background:
  linear-gradient(180deg,rgba(11,17,12,.72) 0%,rgba(11,17,12,.28) 32%,rgba(11,17,12,.55) 72%,rgba(11,17,12,.95) 100%)}
.hero__inner{position:relative;z-index:3;text-align:center;padding:0 1.4rem;max-width:960px}
.hero__tag{margin-bottom:1.6rem;color:var(--cream);opacity:.85;font-size:.68rem}
.hero__title{color:var(--cream);text-shadow:0 2px 40px rgba(0,0,0,.5)}
.hero__sub{font-family:var(--font-serif);font-style:italic;font-size:clamp(1.1rem,2vw,1.5rem);color:var(--champagne);margin-top:1.2rem;letter-spacing:.04em}
.hero__cta{display:flex;gap:1rem;justify-content:center;margin-top:2.6rem;flex-wrap:wrap}
.hero__scroll{position:absolute;bottom:1.8rem;left:50%;transform:translateX(-50%);z-index:3;display:flex;flex-direction:column;align-items:center;gap:.6rem;color:var(--cream-mute)}
.hero__scroll span{font-size:.6rem;letter-spacing:.35em;text-transform:uppercase}
.hero__scroll .line{width:1px;height:44px;background:linear-gradient(var(--gold),transparent);position:relative;overflow:hidden}
.hero__scroll .line::after{content:"";position:absolute;top:-50%;left:0;width:100%;height:50%;background:var(--gold-bright);animation:scrolldot 2s var(--ease) infinite}
@keyframes scrolldot{0%{top:-50%}100%{top:100%}}
.hero__dots{position:absolute;bottom:2rem;right:clamp(1.2rem,5vw,3rem);z-index:3;display:flex;gap:.55rem}
.hero__dots button{width:8px;height:8px;border:1px solid var(--gold);border-radius:50%;transition:.4s}
.hero__dots button.on{background:var(--gold)}

/* ============================================================
   STORY / INTRO
   ============================================================ */
.story{background:var(--emerald);padding:clamp(5rem,11vw,9rem) 0;text-align:center;position:relative}
.story .wrap{max-width:920px}
.story .section-title{color:var(--cream);margin:1.6rem 0}
.story p{color:var(--cream-dim);font-family:var(--font-serif);font-size:clamp(1.15rem,2vw,1.5rem);line-height:1.6;margin:0 auto 1.4rem;max-width:760px}
.story .btn{margin-top:1.8rem}
.story__ornament{font-family:var(--font-display);color:var(--gold);font-size:1.4rem;letter-spacing:.5em;margin-bottom:.4rem}

/* ============================================================
   EVENING THAT EVOLVES — signature interactive
   ============================================================ */
.evolve{position:relative;min-height:100svh;overflow:hidden;display:flex;align-items:center;padding:clamp(4rem,9vw,7rem) 0;transition:background 1.2s var(--ease)}
.evolve__bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.4s var(--ease);transform:scale(1.05)}
.evolve__bg.on{opacity:.34}
.evolve::before{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(9,14,10,.6),rgba(9,14,10,.85))}
.evolve .wrap{position:relative;z-index:2;width:100%}
.evolve__head{text-align:center;margin-bottom:clamp(2rem,5vw,3.6rem)}
.evolve__head .section-title{color:var(--cream)}
.evolve__clock{
  font-family:var(--font-display);font-size:clamp(3.4rem,11vw,7rem);line-height:1;
  color:var(--act-accent,var(--gold-bright));text-align:center;letter-spacing:.05em;
  text-shadow:0 4px 60px rgba(0,0,0,.45);transition:color 1s var(--ease);
}
.evolve__meridian{font-size:.32em;letter-spacing:.2em;vertical-align:super;margin-left:.15em}
.evolve__acts{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin:2.4rem 0 1.6rem;background:rgba(201,168,106,.2)}
.evolve__act{
  background:rgba(12,20,14,.55);padding:1.6rem 1.4rem;text-align:center;cursor:pointer;
  transition:.5s var(--ease);border-top:2px solid transparent;position:relative;
}
.evolve__act:hover{background:rgba(12,20,14,.8)}
.evolve__act.active{background:rgba(12,20,14,.9);border-top-color:var(--act-accent,var(--gold))}
.evolve__act h3{font-size:1.05rem;color:var(--cream);letter-spacing:.14em;margin-bottom:.3rem}
.evolve__act .time{font-family:var(--font-body);font-size:.68rem;letter-spacing:.28em;text-transform:uppercase;color:var(--act-accent,var(--gold));font-weight:600}
.evolve__act .mood{font-family:var(--font-serif);font-style:italic;color:var(--cream-mute);font-size:.98rem;margin-top:.5rem}
.evolve__stage{max-width:720px;margin:0 auto;text-align:center;min-height:150px}
.evolve__stage .lead{font-family:var(--font-serif);font-size:clamp(1.25rem,2.4vw,1.7rem);line-height:1.55;color:var(--cream-dim);transition:.5s;margin-bottom:1.2rem}
.evolve__now{display:inline-flex;align-items:center;gap:.7rem;font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;color:var(--act-accent,var(--gold));border:1px solid rgba(201,168,106,.35);padding:.55rem 1.1rem;border-radius:2rem}
.evolve__eq{display:inline-flex;align-items:flex-end;gap:2px;height:14px}
.evolve__eq span{width:2.5px;background:var(--act-accent,var(--gold));animation:eq 1s ease-in-out infinite}
.evolve__eq span:nth-child(2){animation-delay:.2s}.evolve__eq span:nth-child(3){animation-delay:.4s}.evolve__eq span:nth-child(4){animation-delay:.1s}
@keyframes eq{0%,100%{height:4px}50%{height:14px}}
.evolve__slider{margin:2.2rem auto 0;max-width:640px}
.evolve__slider input{width:100%;-webkit-appearance:none;appearance:none;height:2px;background:linear-gradient(90deg,var(--amber),var(--leaf),var(--wine));outline:none;border-radius:2px}
.evolve__slider input::-webkit-slider-thumb{-webkit-appearance:none;width:22px;height:22px;border-radius:50%;background:var(--act-accent,var(--gold-bright));border:2px solid var(--ink);cursor:pointer;box-shadow:0 0 18px var(--act-accent,var(--gold))}
.evolve__slider input::-moz-range-thumb{width:22px;height:22px;border-radius:50%;background:var(--gold-bright);border:2px solid var(--ink);cursor:pointer}
.evolve__slider .marks{display:flex;justify-content:space-between;margin-top:.7rem;font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--cream-mute)}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars{background:var(--emerald-900);padding:clamp(4.5rem,10vw,8rem) 0}
.pillars__head{text-align:center;margin-bottom:3rem}
.pillars__head .section-title{color:var(--cream);margin-top:1rem}
.pillars__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem}
.pillar{position:relative;aspect-ratio:3/4.2;overflow:hidden;border:1px solid rgba(201,168,106,.18);display:flex;align-items:flex-end;isolation:isolate}
.pillar img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1;transition:transform 1.1s var(--ease),filter .6s;filter:saturate(.85) brightness(.7)}
.pillar::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,transparent 30%,rgba(9,14,10,.9))}
.pillar:hover img{transform:scale(1.09);filter:saturate(1) brightness(.82)}
.pillar__body{padding:1.6rem 1.4rem;position:relative}
.pillar h3{font-size:1.3rem;color:var(--cream);letter-spacing:.1em}
.pillar .num{font-family:var(--font-serif);font-style:italic;color:var(--gold);font-size:1rem}
.pillar p{font-size:.86rem;color:var(--cream-dim);margin-top:.5rem;max-height:0;opacity:0;overflow:hidden;transition:.6s var(--ease)}
.pillar:hover p{max-height:120px;opacity:1;margin-top:.7rem}
.pillar .soon{position:absolute;top:1rem;right:1rem;font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--ink);background:var(--gold);padding:.25rem .6rem}

/* ============================================================
   TABLE / gallery split
   ============================================================ */
.table{background:var(--emerald);padding:clamp(4.5rem,10vw,8rem) 0}
.table__grid{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.table__copy .section-title{color:var(--cream);margin:1rem 0 1.4rem}
.table__copy p{color:var(--cream-dim);font-family:var(--font-serif);font-size:1.25rem;line-height:1.6;margin-bottom:1.6rem}
.table__gallery{position:relative;aspect-ratio:4/5;overflow:hidden;border:1px solid rgba(201,168,106,.22)}
.table__gallery img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.4s var(--ease);transform:scale(1.04)}
.table__gallery img.on{opacity:1}
.table__gallery .tabs{position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);z-index:3;display:flex;gap:.5rem}
.table__gallery .tabs button{width:34px;height:2px;background:rgba(244,240,232,.35)}
.table__gallery .tabs button.on{background:var(--gold)}

/* ============================================================
   SPACE — parallax editorial gallery
   ============================================================ */
.space{background:var(--emerald-950);padding:clamp(4.5rem,10vw,8rem) 0}
.space__head{text-align:center;max-width:760px;margin:0 auto clamp(2.5rem,6vw,4rem)}
.space__head .section-title{color:var(--cream);margin-top:1rem}
.space__head p{color:var(--cream-dim);font-family:var(--font-serif);font-size:1.2rem;margin-top:1rem}
/* Rows are PINNED, not `auto`. With auto rows the implicit row grew to the
   intrinsic height of whatever image landed in it, so a portrait frame made
   its whole row 1009px tall next to a 377px row. That is what made the boxes
   look wrong. A clamped row height makes every cell a deliberate rectangle
   and the images crop into it via object-fit:cover. */
.space__grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1rem;grid-auto-rows:clamp(140px,13vw,200px)}
.space__cell{position:relative;overflow:hidden;border:1px solid rgba(201,168,106,.14)}
.space__cell img{width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease);filter:brightness(.82)}
.space__cell:hover img{transform:scale(1.07);filter:brightness(.95)}
.space__cell figcaption{position:absolute;left:1rem;bottom:.9rem;font-family:var(--font-display);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--cream);text-shadow:0 1px 12px rgba(0,0,0,.8);z-index:2}
.space__cell::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(9,14,10,.75))}
/* FOUR cells, each naming its start and end COLUMN LINE so the mosaic tiles
   with no holes. The old rules used `span N` and leaned on auto-placement,
   which is what left a ragged last row the moment the cell count changed.
   Top row splits 50/50, bottom row 33/67, so it reads as a composition rather
   than four equal squares. A fifth cell (the DJ booth, once that photo is
   shot) goes back to: a 1/4, b 4/7, c 5/7, d 1/4, e 4/7 over three rows. */
.c-a{grid-column:1/4;grid-row:span 2}
.c-b{grid-column:4/7;grid-row:span 2}
.c-c{grid-column:1/3;grid-row:span 2}
.c-d{grid-column:3/7;grid-row:span 2}

/* ============================================================
   MENU
   ============================================================ */
.menu{background:var(--emerald-900);padding:clamp(4.5rem,10vw,8rem) 0}
.menu__head{text-align:center;margin-bottom:2.4rem}
.menu__head .section-title{color:var(--cream);margin-top:1rem}
.menu__tabs{display:flex;gap:1.4rem;justify-content:center;margin:1.6rem 0 2.8rem}
.menu__tabs button{font-family:var(--font-display);font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;color:var(--cream-mute);padding-bottom:.4rem;border-bottom:1px solid transparent;transition:.4s}
.menu__tabs button.on{color:var(--gold-bright);border-color:var(--gold)}
.menu__panel{display:none}
.menu__panel.on{display:block;animation:fadeUp .7s var(--ease)}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
.menu__cols{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5rem)}
.menu__group{margin-bottom:2.4rem;break-inside:avoid}
/* One heading above a two-column list. The h3 keeps its own 1.1rem gap, so the
   spacing below it matches a normal group's heading-to-first-dish gap. */
.menu__group--span{margin-bottom:0}
.menu__group h3{font-family:var(--font-display);color:var(--gold);font-size:1.05rem;letter-spacing:.2em;text-transform:uppercase;margin-bottom:1.1rem;padding-bottom:.5rem;border-bottom:1px solid rgba(201,168,106,.22)}
.dish{margin-bottom:1.05rem}
.dish__name{font-family:var(--font-serif);font-size:1.28rem;font-weight:600;color:var(--cream);letter-spacing:.01em}
.dish__desc{font-size:.9rem;color:var(--cream-mute);line-height:1.5;margin-top:.15rem}
.menu__note{text-align:center;color:var(--cream-mute);font-family:var(--font-serif);font-style:italic;font-size:1.05rem;margin-top:1.5rem}
.menu__cta{text-align:center;margin-top:2.4rem}

/* ============================================================
   RESERVE BAND
   ============================================================ */
.reserve{position:relative;padding:clamp(5rem,12vw,9rem) 0;text-align:center;overflow:hidden}
.reserve__bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.4) saturate(.9);transform:scale(1.05)}
.reserve::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,17,12,.75),rgba(11,17,12,.85))}
.reserve .wrap{position:relative;z-index:2}
.reserve .section-title{color:var(--cream);margin:1.2rem 0}
.reserve p{color:var(--cream-dim);font-family:var(--font-serif);font-size:1.25rem;max-width:560px;margin:0 auto 2rem}
.reserve__hours{display:flex;gap:2.5rem;justify-content:center;flex-wrap:wrap;margin-top:2.6rem}
.reserve__hours div{text-align:center}
.reserve__hours .h-label{font-family:var(--font-display);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.reserve__hours .h-val{font-size:.9rem;color:var(--cream-dim);line-height:1.7}

/* ============================================================
   CIRCLE (newsletter)
   ============================================================ */
.circle{background:var(--emerald);padding:clamp(4rem,9vw,7rem) 0;text-align:center}
.circle .wrap{max-width:660px}
.circle .section-title{color:var(--cream);margin:1rem 0}
.circle p{color:var(--cream-dim);font-family:var(--font-serif);font-size:1.2rem;margin-bottom:2rem}
.circle__form{display:flex;gap:.7rem;max-width:480px;margin:0 auto;flex-wrap:wrap}
.circle__form input{flex:1;min-width:220px;background:transparent;border:1px solid rgba(201,168,106,.4);color:var(--cream);padding:1em 1.2em;font-family:var(--font-body);font-size:.92rem;letter-spacing:.02em}
.circle__form input::placeholder{color:var(--cream-mute)}
.circle__form input:focus{outline:none;border-color:var(--gold)}
.circle__msg{margin-top:1rem;color:var(--gold-bright);font-family:var(--font-serif);font-style:italic;min-height:1.4em}

/* ============================================================
   VISIT / FOOTER
   ============================================================ */
.visit{background:var(--emerald-950);padding:clamp(4rem,9vw,7rem) 0 0}
.visit__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,4rem);align-items:start;margin-bottom:3.5rem}
.visit__grid>*{min-width:0}
.visit__map{aspect-ratio:16/12;border:1px solid rgba(201,168,106,.22);overflow:hidden;filter:grayscale(.3) contrast(1.05)}
.visit__map iframe{width:100%;height:100%;border:0;filter:invert(.92) hue-rotate(180deg)}
.visit__info .section-title{color:var(--cream);margin-bottom:1.5rem}
.visit__row{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid rgba(201,168,106,.14)}
.visit__row .k{font-family:var(--font-display);font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);min-width:130px}
.visit__row .v{color:var(--cream-dim);font-size:.95rem;line-height:1.7;min-width:0;overflow-wrap:anywhere}
.visit__row .v a:hover{color:var(--gold-bright)}

.footer{border-top:1px solid rgba(201,168,106,.18);padding:3rem 0 2rem;text-align:center}
.footer__logo img{height:60px;margin:0 auto 1.6rem}
.footer__social{display:flex;gap:1.4rem;justify-content:center;margin-bottom:1.8rem}
.footer__social a{width:40px;height:40px;border:1px solid rgba(201,168,106,.35);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold);transition:.4s}
.footer__social a:hover{background:var(--gold);color:var(--ink)}
.footer__dress{max-width:720px;margin:0 auto 1.6rem;font-size:.78rem;color:var(--cream-mute);line-height:1.7}
.footer__dress strong{color:var(--cream-dim);font-weight:600}
.footer__links{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--cream-mute);margin-bottom:1.2rem}
.footer__links a:hover{color:var(--gold)}
.footer__copy{font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--cream-mute)}
.footer__copy .by{color:var(--gold);opacity:.8}

/* ============================================================
   COOKIE CONSENT + ACCESSIBILITY
   ============================================================
   Both are now the canonical hosted Krispy widget, loaded from
   krispy-widget.pages.dev. It brings its own styles and inherits
   this site's brand color, font and radius. The hand-rolled
   .consent / .a11y-toggle / .a11y-panel rules that used to live
   here were removed 2026-08-27 with their markup and their JS.
   Do not reintroduce them: one tag per site.
   ============================================================ */

/* ============================================================
   INTERIOR PAGES
   ============================================================ */
.inner-hero{position:relative;min-height:52vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;padding:8rem 1.4rem 4rem}
.inner-hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.42) saturate(.9);transform:scale(1.05)}
.inner-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,17,12,.7),rgba(11,17,12,.9))}
.inner-hero__in{position:relative;z-index:2;max-width:820px}
.inner-hero .display{color:var(--cream);font-size:clamp(2rem,5vw,3.6rem)}
.inner-hero p{font-family:var(--font-serif);font-size:clamp(1.15rem,2vw,1.5rem);color:var(--champagne);margin-top:1rem;font-style:italic}
.inner-body{padding:clamp(3.5rem,8vw,6rem) 0}
.inner-nav-offset{height:0}
.prose{max-width:820px;margin:0 auto}
.prose h2{font-family:var(--font-display);color:var(--gold);font-size:1.4rem;letter-spacing:.06em;margin:2.2rem 0 .9rem;text-transform:uppercase}
.prose h3{font-family:var(--font-serif);color:var(--cream);font-size:1.5rem;margin:1.6rem 0 .6rem}
.prose p{color:var(--cream-dim);margin-bottom:1rem;line-height:1.75}
.prose ul{list-style:none;margin:0 0 1.4rem}
.prose li{color:var(--cream-dim);padding:.35rem 0 .35rem 1.4rem;position:relative;line-height:1.6}
.prose li::before{content:"◆";position:absolute;left:0;color:var(--gold);font-size:.7rem;top:.6rem}
.prose a{color:var(--gold);text-decoration:underline;text-underline-offset:3px}
.prose .eff{font-family:var(--font-body);font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--cream-mute);margin-bottom:2rem}

/* about editorial split */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center;margin-bottom:clamp(3rem,7vw,5rem)}
.about-split:nth-child(even) .about-split__img{order:2}
.about-split__img{aspect-ratio:4/3;overflow:hidden;border:1px solid rgba(201,168,106,.22)}
.about-split__img img{width:100%;height:100%;object-fit:cover}
.about-split h2{font-family:var(--font-display);color:var(--cream);font-size:clamp(1.5rem,3vw,2.2rem);text-transform:uppercase;letter-spacing:.03em;margin-bottom:1rem}
.about-split p{color:var(--cream-dim);font-family:var(--font-serif);font-size:1.2rem;line-height:1.6}

/* FAQ accordion */
.faq{max-width:820px;margin:0 auto}
.faq__item{border-bottom:1px solid rgba(201,168,106,.2)}
.faq__q{width:100%;text-align:left;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.4rem 0;font-family:var(--font-display);font-size:1.02rem;letter-spacing:.03em;color:var(--cream)}
.faq__q:hover{color:var(--gold-bright)}
.faq__q .ic{color:var(--gold);font-size:1.4rem;transition:transform .4s var(--ease);flex-shrink:0}
.faq__item.open .faq__q .ic{transform:rotate(45deg)}
.faq__a{max-height:0;overflow:hidden;transition:max-height .5s var(--ease)}
.faq__a p{color:var(--cream-dim);padding:0 0 1.4rem;line-height:1.7}

/* press grid */
.press-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(201,168,106,.2);border:1px solid rgba(201,168,106,.2);max-width:1000px;margin:0 auto}
.press-grid div,.press-grid a{background:var(--emerald-900);padding:2rem 1.2rem;text-align:center;font-family:var(--font-display);font-size:.92rem;letter-spacing:.05em;color:var(--cream-dim);display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:120px;transition:.4s;text-decoration:none}
.press-grid div:hover,.press-grid a:hover{background:var(--emerald-800);color:var(--gold-bright)}
.press-grid a:focus-visible{outline:2px solid var(--gold);outline-offset:-2px}
/* Pads an incomplete last row so the container background does not show
   through as a stray gold-tinted box. Inert: no hover, no focus, hidden
   from assistive tech. */
.press-grid__filler{background:var(--emerald-900);min-height:120px;display:block}

/* blog grid */
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem;max-width:1000px;margin:0 auto}
.blog-card{border:1px solid rgba(201,168,106,.2);padding:2rem;transition:.4s var(--ease);background:var(--emerald-900);display:flex;flex-direction:column;gap:.9rem}
.blog-card:hover{border-color:var(--gold);transform:translateY(-4px)}
.blog-card .cat{font-family:var(--font-display);font-size:.66rem;letter-spacing:.24em;text-transform:uppercase;color:var(--gold)}
.blog-card h3{font-family:var(--font-serif);font-size:1.5rem;color:var(--cream);line-height:1.25}
.blog-card p{color:var(--cream-mute);font-size:.92rem;line-height:1.6}
.blog-card .more{margin-top:auto;font-family:var(--font-display);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-bright)}

/* forms (contact / careers) */
.form-wrap{max-width:640px;margin:0 auto}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-field{margin-bottom:1rem}
.form-field.full{grid-column:1/-1}
.form-field label{display:block;font-family:var(--font-display);font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.form-field input,.form-field select,.form-field textarea{width:100%;background:rgba(11,17,12,.5);border:1px solid rgba(201,168,106,.35);color:var(--cream);padding:.9em 1em;font-family:var(--font-body);font-size:.95rem}
.form-field input:focus,.form-field select,.form-field textarea:focus{outline:none;border-color:var(--gold)}
.form-field textarea{min-height:130px;resize:vertical}
.form-msg{color:var(--gold-bright);font-family:var(--font-serif);font-style:italic;margin-top:1rem;min-height:1.4em}

/* contact cards */
.contact-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;max-width:900px;margin:0 auto 3.5rem}
.contact-card{border:1px solid rgba(201,168,106,.2);padding:2rem 1.5rem;text-align:center}
.contact-card .ic{color:var(--gold);font-size:1.4rem;margin-bottom:.8rem}
.contact-card h3{font-family:var(--font-display);font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.7rem}
.contact-card p,.contact-card a{color:var(--cream-dim);font-size:.95rem;line-height:1.7;display:block}
.contact-card .card-hours{display:grid;grid-template-columns:auto auto;gap:.15rem .9rem;justify-content:center;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(201,168,106,.16)}
.contact-card .card-hours dt{text-align:right;color:var(--cream-mute);font-size:.85rem;line-height:1.7}
.contact-card .card-hours dd{text-align:left;color:var(--cream-dim);font-size:.85rem;line-height:1.7;margin:0}
.contact-card .card-note{color:var(--cream-mute);font-size:.85rem;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(201,168,106,.16)}
.contact-card a:hover{color:var(--gold-bright)}

/* reservations */
.res-panel{max-width:780px;margin:0 auto;text-align:center}
.res-providers{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin:2rem 0}
.res-note{background:rgba(201,168,106,.08);border:1px solid rgba(201,168,106,.25);padding:1.4rem;color:var(--cream-mute);font-size:.9rem;line-height:1.6;margin-top:1.5rem;font-family:var(--font-serif);font-style:italic}
.res-widget{max-width:560px;margin:2.4rem auto 0;background:rgba(11,17,12,.55);border:1px solid rgba(201,168,106,.3);padding:1.8rem}
.res-fields{display:grid;grid-template-columns:1fr 1fr 1fr;gap:.8rem}
.res-field label{display:block;font-family:var(--font-display);font-size:.62rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.45rem}
.res-field select,.res-field input{width:100%;background:rgba(11,17,12,.7);border:1px solid rgba(201,168,106,.35);color:var(--cream);padding:.8em .7em;font-family:var(--font-body);font-size:.9rem}
.res-field select:focus,.res-field input:focus{outline:none;border-color:var(--gold)}
.res-field input[type="date"]{color-scheme:dark}
@media(max-width:560px){.res-fields{grid-template-columns:1fr}}

@media(max-width:900px){
  .about-split{grid-template-columns:1fr}
  .about-split:nth-child(even) .about-split__img{order:0}
  .press-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid,.contact-cards{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:980px){
  .nav__links{display:none}
  .nav__burger{display:flex}
  .pillars__grid{grid-template-columns:repeat(2,1fr)}
  .table__grid,.visit__grid{grid-template-columns:1fr}
  /* the 130px label column is what pushed the row past the track at 375px */
  .visit__row .k{min-width:104px}
  .menu__cols{grid-template-columns:1fr}
  .space__grid{grid-template-columns:repeat(4,1fr)}
  .c-a{grid-column:1/3;grid-row:span 2}
  .c-b{grid-column:3/5;grid-row:span 2}
  .c-c{grid-column:1/3;grid-row:span 2}
  .c-d{grid-column:3/5;grid-row:span 2}
}
@media(max-width:560px){
  .evolve__acts{grid-template-columns:1fr}
  .pillars__grid{grid-template-columns:1fr}
  /* grid-auto-rows goes back to auto here: the cells set their own height via
     aspect-ratio, and a pinned row would be shorter than that, which stacks the
     cells on top of each other instead of below each other. */
  .space__grid{grid-template-columns:1fr;grid-auto-rows:auto}
  .c-a,.c-b,.c-c,.c-d{grid-column:1/2;grid-row:span 1;aspect-ratio:4/3}
  .hero__cta{flex-direction:column;align-items:center}
  .reserve__hours{gap:1.4rem}
}
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.15s!important}
  .hero__slide{animation:none}
}

/* ---- Private events: embedded Toast Event Inquiry form ----
   The Toast lead page is a full light-themed page of its own (its own logo,
   contact card, then the form), so it needs a light panel behind it rather
   than our dark emerald. Height is fixed on purpose: Toast does not
   postMessage its height, and a short iframe would put a second scrollbar
   inside the page on the one screen that has to convert. Measured 2026-08-06:
   2004px at 740 wide (our cap), 2100px at 375.
   Width is capped at 740 on purpose. At 768 and above Toast switches to a two
   column layout that squeezes the fields into a ~200px column next to a
   duplicate address card. Below that breakpoint the fields go full width,
   which is the better form. Verified both ways in a real browser.
   The heights below carry ~100px of headroom for the validation messages that
   appear under a required field.
   Undersizing is the safe direction: the iframe scrolls internally, so nothing
   is unreachable, it only looks worse.
   The wrapper is NOT a .reveal. This is the primary conversion element on the
   page and must never sit at opacity 0 waiting for an observer. */
.toast-embed{max-width:740px;margin:2.4rem auto 0;background:#fff;border:1px solid rgba(201,168,106,.3);border-radius:14px;overflow:hidden;min-height:2100px}
.toast-embed iframe{display:block;width:100%;height:2100px;border:0}
.toast-fallback{text-align:center;color:var(--cream-mute);font-size:.78rem;letter-spacing:.06em;margin-top:.9rem}
.toast-fallback a{color:var(--gold)}
.events-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem;max-width:900px;margin:3rem auto 0}
.events-steps > div{border:1px solid rgba(201,168,106,.22);padding:1.6rem 1.4rem;text-align:center}
.events-steps .n{font-family:var(--font-display);font-size:.7rem;letter-spacing:.18em;color:var(--gold);margin-bottom:.6rem}
.events-steps h4{font-family:var(--font-serif);font-size:1.15rem;color:var(--cream);margin-bottom:.5rem}
.events-steps p{color:var(--cream-mute);font-size:.9rem;line-height:1.6}
@media(max-width:700px){
  .toast-embed{min-height:2220px}
  .toast-embed iframe{height:2220px}
  .events-steps{grid-template-columns:1fr}
}
.topic-nudge{max-width:640px;margin:1.2rem auto 0;text-align:center;color:var(--cream-mute);font-size:.88rem;line-height:1.6}
.topic-nudge a{color:var(--gold)}
