/* =========================================================
   Darling by Sean Brock · West Hollywood
   Live fire · All-vinyl hi-fi
   Palette: charcoal / ember / cream / brass  ·  Fraunces + Inter
   ========================================================= */

:root {
  --black:      #0d0b09;
  --charcoal:   #17130f;
  --charcoal-2: #211b15;
  --ember:      #bb4a1f;
  --ember-glow: #d4632e;
  --cream:      #f2e9db;
  --cream-2:    #e7dbc7;
  --brass:      #b28a4e;
  --brass-lt:   #cba874;
  --ink:        #241d17;
  --muted:      #857a6c;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Vertical rhythm scale — every block-level gap maps to one of these */
  --sp-section: clamp(4rem, 8vw, 6.5rem);   /* section top/bottom padding */
  --sp-head: clamp(2.25rem, 4vw, 3.25rem);  /* heading block -> content */
  --sp-pair: clamp(1.75rem, 3vw, 2.75rem);  /* between paired sections (food/bar) */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 76px; overflow-x: clip; }

body {
  font-family: var(--sans);
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}

img, iframe, video { max-width: 100%; }

/* Faint film grain, sitewide. translateZ pins it to its own compositor
   layer so scrolling never repaints the full viewport through it. */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  transform: translateZ(0);
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400; font-optical-sizing: auto;
  line-height: 1.05; letter-spacing: -0.015em;
  font-size: clamp(2rem, 5vw, 3.7rem);
}
.display--center { text-align: center; margin-inline: auto; }

.eyebrow {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 1.25rem;
  max-width: none;   /* labels span their container so text-align centering is true */
}
.eyebrow--light { color: var(--brass-lt); }
.eyebrow--center { text-align: center; }

.section { padding: var(--sp-section) var(--gutter); }
.section--dark { background: var(--charcoal); }
.section--black { background: var(--black); }

p { max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.95em 2em; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; background: transparent;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--lg { padding: 1.1em 2.4em; font-size: 0.84rem; }
.btn--solid { background: var(--ember); color: var(--cream); }
.btn--solid:hover { background: var(--ember-glow); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(242,233,219,0.45); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(242,233,219,0.06); }
.btn--reserve {
  background: transparent; color: var(--cream);
  border: 2px solid #bb4d23;
  padding: 0.58em 1.5em; font-size: 0.7rem; letter-spacing: 0.18em; border-radius: 2px;
}
.btn--reserve:hover { background: #bb4d23; border-color: #bb4d23; color: var(--cream); }

.link-arrow {
  display: inline-block; margin-top: 0.4rem; font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.03em; color: var(--brass-lt);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow::after { content: " \2192"; }

/* ---------- Pullquotes ---------- */
.pullquote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4;
  max-width: 30ch; margin: 2.4rem auto 0; color: var(--cream);
}
.pullquote--sm { font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 1.8rem 0 0; max-width: 42ch; }
.pullquote--centered { margin-inline: auto; text-align: center; }
.pullquote strong { font-weight: 600; }
.pullquote cite {
  display: block; margin-top: 1.2rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 0.82em; color: var(--cream); opacity: 0.9;
}
/* Publication marks beneath quotes: cream logo, centered (or left in left-set blocks) */
.cite-pub { display: block; margin: 1.4rem auto 0; height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.cite-pub--left { margin-left: 0; }
.cite-pub--resy { height: 26px; }
.cite-pub-line { display: flex; align-items: baseline; justify-content: center; gap: 0.45em; margin-top: 1.4rem; }
.cite-pub-line--left { justify-content: flex-start; }
.cite-pub-line img { height: 19px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.cite-pub-sub { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); font-weight: 500; opacity: 0.8; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(13,11,9,0.86); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding-top: 0.95rem; padding-bottom: 0.95rem;
  box-shadow: 0 1px 0 rgba(242,233,219,0.08);
}
.nav__brand { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: 0.01em; color: var(--cream); }
.nav__right { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2rem); }
.nav__link {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,233,219,0.85); transition: color 0.3s;
}
.nav__link:hover { color: var(--cream); }

/* ---------- Hero carousel: stacked crossfade ---------- */
.hero { position: relative; height: 100svh; overflow: hidden; touch-action: pan-y; }
.hero__track { position: relative; height: 100%; }
.hero__slide {
  position: absolute; inset: 0; overflow: hidden;
  opacity: 0; z-index: 0;
  transition: opacity 1.5s cubic-bezier(0.33, 0, 0.2, 1);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; z-index: 2; }
/* Outgoing slide stays solid underneath while the new one fades in over it:
   a true dissolve, no half-opacity dip, no motion snap. */
.hero__slide.was-active { opacity: 1; z-index: 1; transition: none; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
  transform: scale(1); will-change: transform;
}
.hero__slide video {
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; pointer-events: none; display: block;
}
/* Ken Burns: slow push-in; keeps running on the outgoing slide so it never snaps */
.hero__slide.is-active img,
.hero__slide.was-active img { animation: kenburns 10s linear forwards; }
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.075); }
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: linear-gradient(180deg, rgba(13,11,9,0.62) 0%, rgba(13,11,9,0.3) 12%, rgba(13,11,9,0) 30%);
}
.hero__dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 4; }
.hero__dots button {
  width: 26px; height: 3px; border: 0; padding: 0; cursor: pointer; border-radius: 2px;
  background: rgba(242,233,219,0.32);
  transition: background 0.3s, width 0.45s var(--ease);
}
.hero__dots button[aria-current="true"] { background: var(--cream); width: 46px; }

/* ---------- Quick glance strip ---------- */
.glance {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--black); border-top: 1px solid rgba(242,233,219,0.08);
}
.glance__item {
  display: flex; flex-direction: column; gap: 0.4rem; align-items: center; text-align: center;
  padding: 1.8rem 1rem; border-right: 1px solid rgba(242,233,219,0.08);
  transition: background 0.3s;
}
.glance__item:last-child { border-right: none; }
.glance__item:hover { background: var(--charcoal-2); }
.glance__label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-lt); }
.glance__value { font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--cream); }

/* ---------- Intro: diagonal fire / dj split behind the words ---------- */
.intro { background: var(--charcoal-2); position: relative; overflow: hidden; }
.intro__bg { position: absolute; inset: 0; }
.intro__bg-half { position: absolute; inset: 0; }
.intro__bg-half img { width: 100%; height: 100%; object-fit: cover; }
/* --split (set by the slider) slides the diagonal seam left/right;
   the springy bezier overshoots so release bounces back through center */
.intro__bg-half--fire {
  clip-path: polygon(0 0, calc(58% + var(--split, 0%)) 0, calc(42% + var(--split, 0%)) 100%, 0 100%);
  transition: clip-path 0.7s cubic-bezier(0.3, 1.55, 0.45, 1);
}
.intro__bg-half--dj {
  clip-path: polygon(calc(58% + var(--split, 0%)) 0, 100% 0, 100% 100%, calc(42% + var(--split, 0%)) 100%);
  transition: clip-path 0.7s cubic-bezier(0.3, 1.55, 0.45, 1);
}
.intro.is-splitting .intro__bg-half { transition: none; }
.intro__scrim { position: absolute; inset: 0; background: rgba(20, 16, 12, 0.68); }
.intro__inner { position: relative; z-index: 1; max-width: 820px; margin-inline: auto; text-align: center; }
/* Sean's quote IS the headline here: a notch smaller than .display so the
   long line breathes, with the attribution styled like a pullquote cite. */
.intro__title { font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.2; max-width: 24ch; margin-inline: auto; }
.intro__attrib {
  margin: 1.4rem auto 0; max-width: none;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.05rem; color: var(--cream); opacity: 0.9;
}
.introslider { display: flex; align-items: center; justify-content: center; margin-top: 2.6rem; user-select: none; -webkit-user-select: none; }
.introslider__track {
  position: relative; width: min(300px, 46vw); height: 26px;
  cursor: grab; touch-action: none;
}
.introslider__track::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  transform: translateY(-50%); border-radius: 2px;
  background: rgba(242,233,219,0.22);
}
.introslider__track::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 1px; height: 10px;
  transform: translate(-50%, -50%); background: rgba(242,233,219,0.3);
}
.introslider__knob {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 20px;
  transform: translate(calc(-50% + var(--kx, 0px)), -50%);
  border-radius: 50%; background: var(--charcoal-2);
  border: 1px solid var(--brass-lt);
  box-shadow: 0 0 0 3px rgba(13,11,9,0.55), 0 2px 10px rgba(0,0,0,0.5);
  transition: transform 0.7s cubic-bezier(0.3, 1.55, 0.45, 1);
  pointer-events: none;
}
.intro.is-splitting .introslider__track { cursor: grabbing; }
.intro.is-splitting .introslider__knob { transition: none; }

/* ---------- Menus: photo cards ---------- */
.menus {
  background: linear-gradient(180deg, #f6eee1 0%, var(--cream) 34%, #e9ddc8 100%);
  color: var(--ink); text-align: center;
}
.menus__title {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ember);
}
.menus__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  max-width: 1240px; margin: var(--sp-head) auto 0;
}
.menus__link {
  position: relative; aspect-ratio: 3 / 4; border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.55rem;
}
.menus__link > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.menus__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,9,0.28) 0%, rgba(13,11,9,0.68) 100%);
  transition: background 0.4s;
}
.menus__link:hover > img { transform: scale(1.06); }
.menus__name { position: relative; font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.1rem); color: var(--cream); line-height: 1; }
.menus__tag {
  position: relative; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-2); font-weight: 500; opacity: 0.9;
  border-bottom: 1px solid rgba(242,233,219,0.45); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.menus__link:hover .menus__tag { color: var(--cream); border-color: var(--cream); }

/* ---------- Fire / food carousel ---------- */
.fire {
  padding-left: 0; padding-right: 0;
  padding-bottom: var(--sp-pair);
  background: linear-gradient(180deg, #241c15 0%, var(--charcoal) 16%);
}
.fire__head { width: min(var(--maxw), calc(100% - 2 * var(--gutter))); margin: 0 auto var(--sp-head); position: relative; }
.fire__lede { max-width: 40ch; margin-top: 1.4rem; color: rgba(242,233,219,0.8); }
.foodcar {
  display: flex; gap: 1rem;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  /* The container itself begins at the text edge, so scrolling
     cards clip at that line and never reach the screen edge. */
  margin-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2));
  padding: 0 var(--gutter) 0.6rem 0;
  cursor: grab;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
          mask-image: linear-gradient(90deg, #000 92%, transparent);
}
.foodcar::-webkit-scrollbar { display: none; }
.foodcar.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.foodcar__item {
  flex: 0 0 auto; width: clamp(250px, 25vw, 330px); aspect-ratio: 3 / 4;
  scroll-snap-align: start; overflow: hidden; border-radius: 3px;
}
.foodcar__item img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; pointer-events: none; }

/* ---------- Bar / cocktails carousel (mirror of the fire section) ---------- */
.bar { padding-left: 0; padding-right: 0; padding-top: var(--sp-pair); background: var(--charcoal); }
.bar__head {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0 auto var(--sp-head); position: relative;
  display: flex; flex-direction: column; align-items: flex-end; text-align: right;
}
.bar__lede { max-width: 40ch; margin-top: 1.4rem; color: rgba(242,233,219,0.8); }
.barcar {
  display: flex; gap: 1rem; direction: rtl;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-right: 0;
  /* Container ends at the text's right edge; cards clip there and overflow leftward. */
  margin-right: max(var(--gutter), calc((100vw - var(--maxw)) / 2));
  padding: 0 0 0.6rem var(--gutter);
  cursor: grab; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(270deg, #000 92%, transparent);
          mask-image: linear-gradient(270deg, #000 92%, transparent);
}
.barcar::-webkit-scrollbar { display: none; }
.barcar.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.barcar__item {
  flex: 0 0 auto; width: clamp(250px, 25vw, 330px); aspect-ratio: 3 / 4;
  scroll-snap-align: start; overflow: hidden; border-radius: 3px; direction: ltr;
}
.barcar__item img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; pointer-events: none; }

/* ---------- Signature / scarcity ---------- */
/* Ember-outlined card on the consistent charcoal: the section IS the
   visual break, so the page background stays quiet around it. */
.signature.section--black { background: var(--charcoal); }
.signature__inner {
  max-width: var(--maxw); margin-inline: auto;
  border: 2px solid var(--ember); border-radius: 3px;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
.signature__media { aspect-ratio: 4 / 5; max-height: 620px; overflow: hidden; border-radius: 3px; }
.signature__media img { width: 100%; height: 100%; object-fit: cover; }
.signature__copy { text-align: center; padding-right: clamp(0rem, 2vw, 1.5rem); }
.signature__copy .pullquote--sm { margin-inline: auto; }
.signature__copy .cite-pub { margin-inline: auto; }
.signature__copy .btn { margin-top: 2.2rem; }
.btn--inverse { background: var(--cream); color: var(--ember); }
.btn--inverse:hover { background: #fff8ec; transform: translateY(-2px); }
/* Signature carousel */
.signature__carousel { position: relative; max-width: var(--maxw); margin-inline: auto; }
.signature__slide { display: none; }
.signature__slide.is-active { display: block; animation: sigFade 0.5s var(--ease); }
@keyframes sigFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.signature__slide .signature__inner { margin: 0; }
.signature__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--ember); background: rgba(23,19,15,0.72); color: var(--ember);
  display: grid; place-items: center; padding: 0;
  cursor: pointer; transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.signature__nav svg { display: block; }
.signature__nav:hover { background: var(--ember); color: var(--cream); }
.signature__nav--prev { left: -14px; }
.signature__nav--next { right: -14px; }
.signature__desc { font-family: var(--serif); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.55; color: var(--cream); opacity: 0.92; max-width: 34ch; margin: 1.1rem auto 0; }
.signature__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.6rem; }
.signature__dot { width: 26px; height: 4px; padding: 0; border: none; border-radius: 2px; background: rgba(242,233,219,0.28); cursor: pointer; transition: background 0.3s var(--ease); }
.signature__dot.is-active { background: var(--ember); }

/* ---------- Music ---------- */
.music { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--charcoal); }
.music__media { display: grid; place-items: center; margin: 0; padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 3rem); }
/* The main image as a record: circular crop, brass rim, faint groove rings */
.vinyl {
  position: relative; display: block;
  width: min(640px, 100%); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(203,168,116,0.35);
  box-shadow: 0 0 0 6px rgba(13,11,9,0.55), 0 0 0 7px rgba(203,168,116,0.16), 0 20px 60px rgba(0,0,0,0.45);
}
.vinyl img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s ease; }
.vinyl img.is-fading { opacity: 0; }
.vinyl::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(circle at center, transparent 0 6px, rgba(0,0,0,0.3) 6px 7px);
  opacity: 0.14;
}
.vinyl::after {
  content: ""; position: absolute; inset: 31%; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(242,233,219,0.16);
}
.music__copy { padding: clamp(3rem, 6vw, 5rem) var(--gutter); align-self: center; max-width: 620px; }
.music__thumbs { display: flex; gap: 1rem; margin-top: 2rem; }
.music__thumb {
  padding: 0; border: 1px solid rgba(203,168,116,0.25); border-radius: 50%; overflow: hidden;
  cursor: pointer; background: none; aspect-ratio: 1; width: clamp(72px, 8vw, 104px);
  box-shadow: 0 0 0 3px rgba(13,11,9,0.5);
  opacity: 0.65; transition: opacity 0.3s, border-color 0.3s;
}
.music__thumb img { width: 100%; height: 100%; object-fit: cover; }
.music__thumb:hover { opacity: 1; }
.music__thumb[aria-current="true"] { opacity: 1; border-color: var(--brass-lt); }

/* ---------- DJ submissions: subtle trigger in the music section + dialog ---------- */
.djopen {
  display: inline-block; margin-top: 1.8rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.03em;
  color: var(--brass-lt); border-bottom: 1px solid currentColor; padding: 0 0 2px;
  transition: color 0.3s;
}
.djopen::after { content: " \2192"; }
.djopen:hover { color: var(--cream); }
/* .djopen sets display, which beats the UA [hidden] rule — needed for the preview gate */
.djopen[hidden] { display: none; }

/* margin:auto restores native dialog centering killed by the global reset */
.djdialog { border: none; padding: 0; background: transparent; color: var(--cream); width: min(640px, calc(100% - 2rem)); margin: auto; }
.djdialog::backdrop { background: rgba(8, 6, 4, 0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.djdialog__card {
  position: relative;
  background: linear-gradient(180deg, #211b15, #1c1712);
  border: 1px solid rgba(242, 233, 219, 0.14); border-radius: 4px;
  border-top: 3px solid var(--ember);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  max-height: min(86svh, 720px); overflow-y: auto;
}
.djdialog__close {
  position: absolute; top: 0.65rem; right: 0.9rem;
  background: none; border: 0; color: var(--muted); font-size: 1.7rem; line-height: 1; cursor: pointer;
}
.djdialog__close:hover { color: var(--cream); }
.djdialog__close:focus-visible, .djopen:focus-visible { outline: 2px solid var(--brass-lt); outline-offset: 2px; }
.djdialog__title { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 1.4rem; }
.djform { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.25rem; align-items: end; }
.djform__field { display: flex; flex-direction: column; gap: 0.5rem; }
.djform__field label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.djform__field--full { grid-column: 1 / -1; }
.djform label {
  font-family: var(--sans); font-weight: 500; font-size: 0.64rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-lt);
}
.djform label span { color: var(--muted); letter-spacing: 0.08em; }
.djform input:not(.signup__hp), .djform textarea {
  background: #0d0b09; border: 1px solid rgba(242, 233, 219, 0.16); border-radius: 2px;
  color: var(--cream); font-family: var(--sans); font-weight: 300; font-size: 0.95rem;
  padding: 0.75em 0.9em; width: 100%;
}
.djform input:focus, .djform textarea:focus, .djform select:focus { outline: none; border-color: var(--brass); }
.djform ::placeholder { color: rgba(133, 122, 108, 0.7); font-size: 0.82rem; }
/* Native selects render as a light UA control on dark UI, so this restyles it
   whole and draws its own chevron. Keep in sync with the input rule above. */
.djform select {
  appearance: none; -webkit-appearance: none;
  background-color: #0d0b09;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c7838' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85em center; background-size: 13px;
  border: 1px solid rgba(242, 233, 219, 0.16); border-radius: 2px;
  color: var(--cream); font-family: var(--sans); font-weight: 300; font-size: 0.95rem;
  padding: 0.75em 2.4em 0.75em 0.9em; width: 100%; cursor: pointer;
}
/* The disabled placeholder option is the only state where :invalid holds */
.djform select:invalid { color: rgba(133, 122, 108, 0.7); }
.djform select option { background: #0d0b09; color: var(--cream); }
.djform [hidden] { display: none; }
.djform textarea { min-height: 72px; resize: vertical; }
.djform__actions { grid-column: 1 / -1; margin-top: 0.25rem; text-align: center; }
.djform__msg { text-align: center; margin-top: 1rem; font-size: 0.88rem; color: var(--brass-lt); min-height: 1em; }
.djform__msg.is-err { color: #e0745a; }
@media (max-width: 640px) {
  .djform { grid-template-columns: 1fr; }
}

/* ---------- Chef ---------- */
.chef { background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 20%); }
.chef__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.chef__media {
  max-width: 680px; margin: 2.4rem auto;
  overflow: hidden; border-radius: 3px;
}
.chef__media img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; object-position: center 30%; }
.chef__lede { max-width: 54ch; margin: 0 auto; color: rgba(242,233,219,0.82); }
.jb-medal {
  width: 118px; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(203,168,116,0.55);
  box-shadow: inset 0 0 0 4px var(--black), inset 0 0 0 5px rgba(203,168,116,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem;
  margin: 2.2rem auto 0; padding: 0.6rem;
}
.jb-medal__name { font-family: var(--serif); font-size: 0.98rem; color: var(--cream); line-height: 1.05; text-align: center; }
.jb-medal__sub { font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-lt); font-weight: 500; }
.chef__seen-label { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin: 2.5rem 0 1.2rem; max-width: none; }
.chef__clips { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 860px; margin: 0 auto; }
.clipcard {
  position: relative; aspect-ratio: 16 / 9; border-radius: 3px; overflow: hidden;
  cursor: pointer; margin: 0;
}
.clipcard video { width: 100%; height: 100%; object-fit: cover; display: block; }
.clipcard__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,9,0.34) 0%, rgba(13,11,9,0.66) 100%);
  transition: opacity 0.5s var(--ease);
}
.clipcard__meta {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.35rem;
  transition: opacity 0.4s var(--ease);
}
.clipcard__show { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--cream); line-height: 1.1; }
.clipcard__net { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-lt); font-weight: 500; }
.clipcard__play {
  position: absolute; right: 0.9rem; bottom: 0.8rem;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgba(242,233,219,0.5); border-radius: 50%;
  color: var(--cream); font-size: 0.6rem; padding-left: 2px;
  transition: opacity 0.4s, background 0.3s;
}
.clipcard:hover .clipcard__play { background: rgba(242,233,219,0.12); }
.clipcard.is-playing .clipcard__veil,
.clipcard.is-playing .clipcard__meta,
.clipcard.is-playing .clipcard__play { opacity: 0; pointer-events: none; }
.chef__seen {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem 0.9rem; max-width: 640px; margin-inline: auto;
}
.chef__seen li {
  font-family: var(--serif); font-size: 0.95rem; color: var(--cream);
  padding: 0.5em 1.1em; border: 1px solid rgba(203,168,116,0.35); border-radius: 100px;
}
.chef__seen li span { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-lt); margin-left: 0.4em; }

/* ---------- Press: editorial columns ---------- */
.press { background: linear-gradient(180deg, #f6eee1 0%, var(--cream) 30%, #eadfcb 100%); color: var(--ink); }
.press__head { display: flex; align-items: center; gap: 1.8rem; max-width: var(--maxw); margin: 0 auto var(--sp-head); }
.press__head::before, .press__head::after { content: ""; flex: 1; height: 1px; background: rgba(36,29,23,0.18); }
.press__head h2 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--ink); white-space: nowrap; letter-spacing: 0.01em;
}
.press__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.press__quote {
  font-family: var(--serif); font-weight: 300; font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.45; color: var(--ink);
  padding: 0 clamp(1.6rem, 3.2vw, 2.8rem);
}
.press__quote:first-child { padding-left: 0; }
.press__quote:last-child { padding-right: 0; }
.press__quote + .press__quote { border-left: 1px solid rgba(36,29,23,0.14); }
.press__quote::before {
  content: "\201C"; display: block;
  font-family: var(--serif); font-size: 3.4rem; line-height: 0.55;
  color: var(--ember); opacity: 0.75; margin-bottom: 1.1rem;
}
.press__quote cite { display: flex; align-items: baseline; gap: 0.45em; margin-top: 1.4rem; font-style: normal; }
.press__logo { display: inline-block; width: auto; filter: brightness(0); opacity: 0.85; }
.press__logo--latimes { height: 27px; }
.press__logo--eater { height: 19px; }
.press__logo--forbes { height: 21px; }
.press__logo-sub { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 500; opacity: 0.85; }

/* ---------- Instagram ---------- */
.ig.section--dark { background: linear-gradient(180deg, #221c15 0%, var(--charcoal) 15%); }
.ig__head { text-align: center; margin-bottom: var(--sp-head); }
.ig__handle { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--cream); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.ig__handle:hover { border-color: var(--brass-lt); }
.ig__grid { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; }
/* 3:4 portrait tiles, matching Instagram's current grid crop */
.ig__grid a { overflow: hidden; aspect-ratio: 3 / 4; border-radius: 3px; }
.ig__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), opacity 0.3s; }
.ig__grid a:hover img { transform: scale(1.06); opacity: 0.85; }
.ig__cta { display: flex; justify-content: center; align-items: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ---------- Visit ---------- */
.visit { background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 16%); }
.visit__grid { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.visit__block { margin: 1.4rem 0; }
.visit__block h3 { font-family: var(--sans); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 0.45rem; }
.visit__block p { font-size: 1rem; color: var(--cream); }
.visit__block a { color: var(--cream); border-bottom: 1px solid rgba(203,168,116,0.4); }
.visit__info .btn { margin-top: 0.8rem; }
.visit__map {
  position: relative; border-radius: 3px; overflow: hidden;
  aspect-ratio: 1 / 1; height: auto; min-height: 0; min-width: 0;
  width: 100%; max-width: 460px; margin-inline: auto; justify-self: center;
  border: 1px solid rgba(203,168,116,0.35);
}
.visit__aside { display: flex; flex-direction: column; align-items: center; }
.visit__block--under-map { max-width: 460px; margin: 1.4rem 0 0; text-align: center; }
.visit__grid > *, .signature__inner > *, .music > *, .foodcar > *, .ig__grid > *, .footer__grid > *, .menus__grid > * { min-width: 0; }
.visit__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, var(--charcoal-2) 0%, var(--black) 26%); padding-top: clamp(3rem, 6vw, 4.25rem); }
.footer__grid { max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer__col--right { text-align: right; }
.footer__col--right .footer__icons { justify-content: flex-end; }
/* Same style as the nav brand; beats the generic .footer__col a rule */
.footer__col a.footer__wordmark {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: 0.01em;
  color: var(--cream); display: inline-block; margin-bottom: 0; transition: opacity 0.3s;
}
.footer__col a.footer__wordmark:hover { opacity: 0.8; color: var(--cream); }
.footer__brand p { color: var(--brass-lt); margin: 0.25rem 0 0; font-size: 0.9rem; }
.footer__col h3 { font-family: var(--sans); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 0.85rem; }
.footer__col a, .footer__col p { display: block; color: rgba(242,233,219,0.72); font-size: 0.92rem; margin-bottom: 0.4rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--cream); }
.footer__icons { display: flex; gap: 0.7rem; }
.footer__icons a {
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 0;
  border: 1px solid rgba(203,168,116,0.4); border-radius: 50%;
  color: rgba(242,233,219,0.75);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.footer__icons a:hover { color: var(--cream); border-color: var(--brass-lt); background: rgba(203,168,116,0.08); }
.footer__icons svg { width: 17px; height: 17px; }

/* ---------- Footer email capture ---------- */
.footer__signup { max-width: 340px; }
.footer__signup-lede { font-size: 0.85rem; color: rgba(242,233,219,0.62); line-height: 1.55; margin-bottom: 0.9rem; }
/* Footer capture. First and last name are OPTIONAL by design: names are
   useful in the CRM, but making them mandatory on a footer form costs
   signups. Email is the only required field. */
.signup { display: flex; flex-direction: column; gap: 0.55rem; }
.signup__names { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
/* align-items stretch (the flex default) keeps the JOIN button exactly the
   height of the email field beside it. */
.signup__row { display: flex; gap: 0.55rem; }
.signup__in {
  flex: 1; width: 100%; min-width: 0;
  background: rgba(13,11,9,0.6); color: var(--cream);
  border: 1px solid rgba(203,168,116,0.35); border-radius: 2px;
  font-family: var(--sans); font-weight: 300; font-size: 0.85rem;
  padding: 0.65em 0.9em; transition: border-color 0.3s;
}
.signup__in::placeholder { color: rgba(242,233,219,0.4); }
.signup__in:focus { outline: none; border-color: var(--brass-lt); }
.signup__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup__btn {
  flex-shrink: 0;
  background: var(--ember); color: var(--cream); border: none; border-radius: 2px;
  font-family: var(--sans); font-weight: 500; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.65em 1.4em; cursor: pointer; transition: background 0.3s;
}
.signup__btn:hover { background: var(--ember-glow); }
.signup__msg { font-size: 0.78rem; margin-top: 0.55rem; color: var(--brass-lt); min-height: 1em; }
/* iOS Safari auto-zooms (then mis-crops the layout) on focus of any input
   under 16px. Hold every text input at exactly 16px on touch devices. */
@media (hover: none) and (pointer: coarse) {
  .signup__in, .djform input:not(.signup__hp), .djform textarea { font-size: 16px; }
}
.signup__msg.is-err { color: #e0745a; }
.footer__base {
  max-width: var(--maxw); margin: clamp(2.25rem, 4vw, 3rem) auto 0; padding: 1.4rem var(--gutter);
  border-top: 1px solid rgba(242,233,219,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__base p { font-size: 0.76rem; color: rgba(242,233,219,0.48); margin: 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .signature__inner { grid-template-columns: 1fr; }
  .signature__media { max-height: 500px; width: 100%; }
  .signature__nav { width: 38px; height: 38px; font-size: 1.25rem; }
  .signature__nav--prev { left: 2px; }
  .signature__nav--next { right: 2px; }
  .music { grid-template-columns: 1fr; }
  .music__media { width: 100%; order: -1; padding-bottom: 0; }
  .vinyl { width: min(460px, 84vw); }
  .press__grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .press__quote { padding: 0; }
  .press__quote + .press__quote { border-left: none; border-top: 1px solid rgba(36,29,23,0.14); padding-top: 2.2rem; }
  .press__quote::before { margin-inline: auto; }
  .press__quote cite { justify-content: center; }
  .visit { padding-block: clamp(3rem, 8vw, 4rem); }
  .visit__grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit__map { max-width: 380px; margin-inline: 0; justify-self: start; }
  .visit__aside { align-items: flex-start; }
  .visit__block--under-map { max-width: 380px; text-align: left; }
  .menus__grid { grid-template-columns: repeat(2, 1fr); }
  /* 5 cards wrap 2/2/1: let Happy Hour span the last row as a wide
     banner instead of sitting stranded at half-width. */
  .menus__grid .menus__link:last-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
}
@media (max-width: 860px) {
  .nav__brand { font-size: 1.45rem; }
  .nav__right { gap: 0.9rem; }
  .nav__link { font-size: 0.62rem; letter-spacing: 0.12em; }
  .btn--reserve { padding: 0.5em 1em; font-size: 0.62rem; letter-spacing: 0.12em; }
  .ig__grid { grid-template-columns: repeat(3, 1fr); }
  .foodcar__item, .barcar__item { width: clamp(230px, 62vw, 300px); }
}
@media (max-width: 560px) {
  .glance { grid-template-columns: 1fr 1fr; }
  .glance__item:nth-child(2) { border-right: none; }
  .glance__item:nth-child(1), .glance__item:nth-child(2) { border-bottom: 1px solid rgba(242,233,219,0.08); }
  .footer { padding-top: 2.5rem; }
  .footer__grid { flex-direction: column; gap: 1.75rem; }
  .footer__col--right { text-align: left; }
  .footer__col--right .footer__icons { justify-content: flex-start; }
  .footer__base { margin-top: 1.75rem; padding-block: 1.1rem; }
  .chef__media { margin: 2.2rem auto 2rem; }
  .chef__clips { grid-template-columns: 1fr; }
  .hero__dots { bottom: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ PRIVATE EVENTS (homepage) ============ */
.pevents { background: var(--charcoal-2); }
.pevents__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.pevents__mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.7rem, 1.4vw, 1.1rem); }
.pevents__tile { position: relative; border-radius: 4px; overflow: hidden; margin: 0; }
.pevents__tile img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.pevents__tile--wide { grid-column: 1 / -1; }
.pevents__tile--wide img { aspect-ratio: 16 / 8.5; }
.pevents__tile figcaption {
  position: absolute; left: 0.9rem; bottom: 0.7rem; font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream); opacity: 0.92;
  text-shadow: 0 1px 10px rgba(13,11,9,0.8);
}
.pevents__tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.45) 0%, rgba(13,11,9,0) 34%);
  pointer-events: none;
}
.pevents__lede { color: rgba(242,233,219,0.82); max-width: 46ch; margin-top: 1.4rem; line-height: 1.75; }
.pevents__cta { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.2rem; flex-wrap: wrap; }
@media (max-width: 860px) {
  .pevents__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ============ PERSISTENT CTAS ============ */
/* Mobile: thin sticky bar, slides up after the hero. Desktop: corner card
   after half the page, once per session. Neither covers content on arrival. */
.ctabar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 1px; background: rgba(13,11,9,0.6);
  border-top: 1px solid rgba(242,233,219,0.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(105%); transition: transform 0.5s var(--ease);
}
.ctabar.is-on { transform: translateY(0); }
.ctabar__btn {
  flex: 1; display: grid; place-items: center; padding: 0.95rem 0.5rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; background: rgba(23,19,15,0.88);
}
.ctabar__btn--solid { background: var(--ember); }
@media (max-width: 860px) {
  .ctabar { display: flex; }
  body.has-ctabar footer.footer { padding-bottom: 4.6rem; }
}

.ctacard {
  position: fixed; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem); z-index: 60;
  width: 19.5rem; max-width: calc(100vw - 2rem);
  background: var(--charcoal-2); border: 1px solid rgba(178,138,78,0.35); border-radius: 6px;
  padding: 1.35rem 1.4rem 1.4rem; box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.ctacard.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ctacard__x {
  position: absolute; top: 0.45rem; right: 0.65rem; background: none; border: 0;
  color: var(--muted); font-size: 1.15rem; line-height: 1; cursor: pointer; padding: 0.25rem;
}
.ctacard__x:hover { color: var(--cream); }
.ctacard__t { font-family: var(--serif); font-weight: 300; font-size: 1.22rem; color: var(--cream); letter-spacing: -0.01em; margin: 0 0 1rem; padding-right: 1rem; }
.ctacard__btns { display: grid; gap: 0.55rem; }
.ctacard__btn {
  display: grid; place-items: center; padding: 0.72rem 0.6rem; border-radius: 2px;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; border: 1px solid rgba(242,233,219,0.28);
  transition: border-color 0.25s, background 0.25s;
}
.ctacard__btn:hover { border-color: var(--cream); }
.ctacard__btn--solid { background: var(--ember); border-color: var(--ember); }
.ctacard__btn--solid:hover { background: var(--ember-glow); border-color: var(--ember-glow); }
@media (max-width: 860px) { .ctacard { display: none; } }

/* ============ MOBILE NAV: hamburger + overlay panel ============ */
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 30px; padding: 0 4px;
  background: transparent; border: 0; cursor: pointer;
}
.nav__toggle span {
  display: block; height: 1.5px; width: 100%; background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.nav__panel {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(20, 16, 12, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav__panel.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__panel-links { display: flex; flex-direction: column; align-items: center; gap: 2.1rem; }
.nav__panel-link {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: var(--cream); text-decoration: none; letter-spacing: 0.01em;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.3s var(--ease);
}
.nav__panel-link:hover { color: var(--ember-glow, #d97a4d); }
.nav__panel.is-open .nav__panel-link { opacity: 1; transform: none; }
.nav__panel.is-open .nav__panel-link:nth-child(2) { transition-delay: 0.05s; }
.nav__panel.is-open .nav__panel-link:nth-child(3) { transition-delay: 0.1s; }
.nav__panel.is-open .nav__panel-link:nth-child(4) { transition-delay: 0.15s; }
body.nav-open { overflow: hidden; }
@media (max-width: 700px) {
  .nav .nav__link { display: none; }
  .nav__toggle { display: flex; }
  .nav__right { gap: 0.8rem; }
}
