/* =========================================================
   COALSTONE — dark cut
   Deep-ember dining room. Instrument Serif × Inter.
   Atmospheric — vignette, warm glow, film-grain overlay.
   ========================================================= */

:root {
  /* Canvas & surfaces */
  --canvas:     #0A0806;
  --canvas-2:   #100D0A;
  --surface:    #14110D;
  --surface-2:  #1F1A13;
  --divider:    rgba(241, 231, 211, 0.10);
  --divider-hi: rgba(241, 231, 211, 0.16);

  /* Text */
  --fg:        #F1E7D3;
  --fg-2:      #E4D8BF;
  --fg-muted:  #A69D91;
  --fg-dim:    #6D655A;

  /* Warm accents */
  --ember:      #C74A38;
  --ember-hi:   #E1614C;
  --ember-glow: rgba(199, 74, 56, 0.28);
  --ember-tint: rgba(199, 74, 56, 0.10);
  --cedar:      #C29663;
  --gold:       #D9B078;

  /* Legacy aliases (used by inherited component rules) */
  --bone:       var(--canvas);
  --bone-2:     var(--surface);
  --bone-3:     var(--surface-2);
  --ink:        var(--fg);
  --ash:        var(--fg-muted);
  --ember-ink:  var(--canvas);

  /* Type */
  --font-display: "Instrument Serif", "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Fluid scale */
  --step-mega: clamp(3.75rem, 12vw, 10rem);
  --step-xl:   clamp(2.5rem, 6vw, 5rem);
  --step-l:    clamp(1.75rem, 3vw, 2.5rem);
  --step-m:    1.25rem;
  --step-body: 1rem;
  --step-s:    0.875rem;
  --step-xs:   0.75rem;

  /* Spacing */
  --s-1: 0.5rem;  --s-2: 1rem;   --s-3: 1.5rem; --s-4: 2rem;
  --s-5: 3rem;    --s-6: 4rem;   --s-7: 6rem;   --s-8: 8rem;

  /* Layout */
  --gutter:  clamp(1.5rem, 5vw, 4rem);
  --measure: 62ch;
  --content: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-med:  500ms;
  --dur-slow: 900ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--canvas);
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--fg);
}
p { margin: 0 0 1em; }
::selection { background: var(--ember); color: var(--fg); }

/* Warm film-grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Vignette — pulls the eye inward */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background:
    radial-gradient(140% 100% at 50% 40%, transparent 45%, rgba(0,0,0,0.55) 100%),
    radial-gradient(60% 40% at 50% -10%, rgba(199, 74, 56, 0.10) 0%, transparent 70%);
}

/* -------- Nav -------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: var(--s-3) var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  background: color-mix(in srgb, var(--canvas) 78%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.nav.is-scrolled {
  border-bottom-color: var(--divider);
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
}

.brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--fg);
}
.brand-mark { width: 22px; height: 22px; color: var(--ember); flex: none; filter: drop-shadow(0 0 8px var(--ember-glow)); }
.brand-name { font-style: italic; letter-spacing: 0.01em; }

.nav-links {
  display: flex; align-items: center; gap: var(--s-4);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: var(--step-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.6rem 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-links a { transition: color 400ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--fg); }

.reserve-btn {
  font-size: var(--step-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  background: var(--ember);
  color: var(--fg);
  border-radius: 999px;
  transition:
    background 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    letter-spacing 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px -8px var(--ember-glow), inset 0 1px 0 rgba(255,255,255,0.08);
}
.reserve-btn:hover {
  background: var(--ember-hi);
  letter-spacing: 0.28em;
  box-shadow: 0 18px 55px -10px var(--ember-glow), inset 0 1px 0 rgba(255,255,255,0.14);
}
.reserve-btn:active { transform: scale(0.98); transition-duration: 120ms; }

/* -------- Mobile nav toggle & drawer -------- */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--divider-hi);
  background: transparent;
  color: var(--fg);
  position: relative;
  transition: border-color 500ms cubic-bezier(0.22, 0.61, 0.36, 1), background 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-toggle:hover { border-color: var(--ember); }
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 1px;
  background: currentColor; border-radius: 1px;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1), top 400ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--canvas);
  padding: var(--s-3) var(--gutter) var(--s-5);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
}
.drawer[data-open="true"] { opacity: 1; pointer-events: auto; }
.drawer::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 30% 15%, rgba(199, 74, 56, 0.14) 0%, transparent 60%),
    radial-gradient(80% 50% at 100% 100%, rgba(199, 74, 56, 0.06) 0%, transparent 65%);
}
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--divider);
  margin-bottom: var(--s-5);
}
.drawer-nav {
  display: flex; flex-direction: column;
  gap: var(--s-2);
  position: relative; z-index: 1;
  padding-left: 2.5rem;
}
.drawer-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  line-height: 1.05;
  color: var(--fg);
  padding: 0.35rem 0;
  display: block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), color 400ms;
  position: relative;
}
.drawer-nav a::before {
  content: attr(data-num);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: var(--ember);
  position: absolute;
  top: 1.3rem;
  left: -2.5rem;
}
.drawer-nav a:hover, .drawer-nav a:focus-visible { color: var(--ember-hi); }
.drawer-nav a .it { font-style: italic; color: var(--ember); }
.drawer[data-open="true"] .drawer-nav a { transform: none; opacity: 1; }
.drawer[data-open="true"] .drawer-nav a:nth-child(1) { transition-delay: 120ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(2) { transition-delay: 200ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(3) { transition-delay: 280ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(4) { transition-delay: 360ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(5) { transition-delay: 440ms; }
.drawer-foot {
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--divider);
  display: grid; gap: var(--s-3);
  position: relative; z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 560ms, transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 560ms;
}
.drawer[data-open="true"] .drawer-foot { opacity: 1; transform: none; }
.drawer-foot p { margin: 0; color: var(--fg-muted); font-size: var(--step-s); line-height: 1.55; }
.drawer-foot a { color: var(--fg); font-family: var(--font-display); font-size: 1.5rem; font-style: italic; }
.drawer-eyebrow {
  font-size: 0.6875rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 0.5rem;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav { padding: var(--s-2) var(--gutter); }
  .nav-toggle { display: block; }
  .nav .reserve-btn { padding: 0.7rem 1.1rem; font-size: 0.6875rem; }
}
@media (min-width: 761px) {
  .drawer { display: none !important; }
}

body.drawer-open { overflow: hidden; }

/* -------- Layout -------- */
.wrap { max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--wide   { max-width: 1400px; }
.wrap--narrow { max-width: 780px; }

/* -------- Hero -------- */
.hero {
  padding: var(--s-8) var(--gutter) var(--s-7);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% 20% -5%;
  background: radial-gradient(50% 45% at 30% 55%, rgba(199, 74, 56, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: hero-breathe 8s var(--ease-io) infinite;
}

/* Hero with background video */
.hero--video {
  max-width: none;
  padding: 0;
  min-height: 88vh;
  min-height: 88dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero--video::before { display: none; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9) contrast(1.05) saturate(0.95) sepia(0.03);
}
.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.28) 45%, rgba(10,8,6,0.06) 100%),
    radial-gradient(120% 90% at 30% 60%, rgba(199, 74, 56, 0.06) 0%, transparent 65%),
    linear-gradient(180deg, transparent 70%, rgba(10,8,6,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--s-8) var(--gutter) var(--s-7);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero--video .hero-title {
  color: var(--fg);
  font-size: clamp(2.25rem, 6.5vw, 5.5rem);
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.7);
}
.hero--video .hero-title .it { text-shadow: 0 0 30px var(--ember-glow), 0 0 60px rgba(199, 74, 56, 0.3), 0 2px 20px rgba(0,0,0,0.75); }
.hero--video .hero-lede {
  color: var(--fg);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 40ch;
  text-shadow: 0 1px 12px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.7);
}
.hero--video .hero-eyebrow { color: var(--fg); text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.hero--video .hero-eyebrow::before { background: var(--ember); box-shadow: 0 0 18px var(--ember-glow); }
.hero--video .hero-meta { color: var(--fg); text-shadow: 0 1px 6px rgba(0,0,0,0.75); }
.hero--video .hero-meta strong { color: var(--fg); }

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero--video { background: var(--canvas); }
  .hero--video::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 45% at 30% 55%, rgba(199, 74, 56, 0.16) 0%, transparent 65%);
    z-index: 0;
  }
}
@keyframes hero-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}
.hero-eyebrow {
  font-size: var(--step-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: var(--s-5);
}
.hero-eyebrow::before {
  content: ""; width: 48px; height: 1px; background: var(--ember);
  box-shadow: 0 0 12px var(--ember-glow);
}
.hero-title {
  font-size: var(--step-mega);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
  max-width: 14ch;
  color: var(--fg);
  text-wrap: balance;
}
.hero-title .it {
  font-style: italic;
  color: var(--ember-hi);
  text-shadow: 0 0 40px var(--ember-glow), 0 0 80px rgba(199, 74, 56, 0.15);
}
.hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
  max-width: 34ch;
  color: var(--fg-2);
}
.hero-meta {
  margin-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-5);
  font-size: var(--step-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-meta strong { color: var(--fg); font-weight: 500; }

/* Word reveal */
.word-reveal {
  display: inline-block; overflow: hidden; padding-bottom: 0.14em;
  vertical-align: bottom;
}
.word-reveal > span {
  display: inline-block; transform: translateY(110%);
  transition: transform 900ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.is-hero-visible .word-reveal > span { transform: translateY(0); }

/* Scroll reveal — subtle, deliberate. Content emerges from a soft blur into
   focus. Less distance, longer duration, luxury easing. */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity 1400ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal[data-delay="2"] { transition-delay: 240ms; }
.reveal[data-delay="3"] { transition-delay: 360ms; }
.reveal[data-delay="4"] { transition-delay: 480ms; }

/* Image reveal — a slow top-down curtain. No fade, just clip. Signature move. */
.reveal--curtain .figure-large,
.reveal--curtain .card-figure,
.figure-large.reveal,
.card-figure.reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1800ms cubic-bezier(0.75, 0, 0.25, 1);
  will-change: clip-path;
}
.reveal--curtain.is-visible .figure-large,
.reveal--curtain.is-visible .card-figure,
.figure-large.reveal.is-visible,
.card-figure.reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* -------- Sections -------- */
section { padding: var(--s-7) 0; }
.section-head {
  display: grid; gap: var(--s-2); margin-bottom: var(--s-5);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: auto 1fr; align-items: baseline; gap: var(--s-5); }
}
.section-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--ember); letter-spacing: 0.05em;
  text-shadow: 0 0 20px var(--ember-tint);
  transition: text-shadow 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
section:hover .section-num { text-shadow: 0 0 30px var(--ember-glow); }
.section-title {
  font-size: var(--step-xl);
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}
.section-sub {
  font-family: var(--font-display); font-style: italic;
  color: var(--fg-muted); font-size: 1.25rem; max-width: 40ch; margin-top: var(--s-2);
}

/* -------- Cards -------- */
.grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 800px) { .grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }
.card { display: flex; flex-direction: column; border-top: 1px solid var(--divider); padding-top: var(--s-3); }
.card-num {
  font-family: var(--font-display); font-style: italic; color: var(--ember);
  font-size: 1rem; letter-spacing: 0.05em; margin-bottom: var(--s-3);
}
.card-figure {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border-radius: 2px;
  margin-bottom: var(--s-3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.card-figure::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 100% at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 60%),
    radial-gradient(90% 60% at 20% 20%, rgba(199, 74, 56, 0.06) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}
.card-figure img, .figure-large img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1600ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
  filter: brightness(0.72) contrast(1.1) saturate(0.88) sepia(0.08);
}
.card:hover .card-figure img,
.two-col:hover .figure-large img,
.figure-large.hoverable:hover img { transform: scale(1.045); filter: brightness(0.88) contrast(1.12) saturate(1) sepia(0.04); }
.card-figure::after,
.figure-large[data-caption]::after {
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.card:hover .card-figure::after,
.figure-large.hoverable:hover::after {
  transform: translateY(-4px);
}
.card-figure::after {
  content: attr(data-caption);
  position: absolute; left: 1rem; bottom: 0.85rem;
  font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-muted);
  z-index: 3;
}
.card-figure:has(img)::after {
  color: var(--fg);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.card-title { font-size: 1.5rem; margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.card-title .it { font-style: italic; color: var(--ember-hi); }
.card-desc { color: var(--fg-muted); font-size: var(--step-s); max-width: 32ch; }

/* -------- Pull quote -------- */
.pull {
  padding: var(--s-7) 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin: var(--s-6) 0;
  position: relative;
}
.pull-mark {
  font-family: var(--font-display); font-style: italic;
  font-size: 6rem; line-height: 0.5; color: var(--ember);
  text-shadow: 0 0 30px var(--ember-glow);
}
.pull-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem); line-height: 1.2;
  max-width: 24ch; margin-top: var(--s-2);
  color: var(--fg);
  text-wrap: balance;
}
.pull-attr {
  font-size: var(--step-xs); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-muted); margin-top: var(--s-4);
}

/* -------- Two-column editorial -------- */
.two-col { display: grid; grid-template-columns: 1fr; gap: var(--s-5); align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: 5fr 7fr; gap: var(--s-6); } }
.two-col--flip > :first-child { order: 2; }
@media (max-width: 899px) { .two-col--flip > :first-child { order: 0; } }

.figure-large {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(199, 74, 56, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
}
.figure-large::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(140% 100% at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.figure-large[data-caption]::after {
  content: attr(data-caption);
  position: absolute; bottom: 1.1rem; left: 1.1rem;
  font-size: var(--step-xs); letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-muted);
  z-index: 3;
}
.figure-large:has(img)[data-caption]::after {
  color: var(--fg);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* -------- Menu chapters (jump-nav) -------- */
.menu-chapters {
  display: flex; gap: 0;
  padding: var(--s-3) 0 var(--s-4);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid var(--divider);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.menu-chapters::-webkit-scrollbar { display: none; }
.menu-chapters a {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  flex: none;
  padding: 0.6rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-right: 1px solid var(--divider);
  scroll-snap-align: start;
  transition: color 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-chapters a:first-child { padding-left: 0; }
.menu-chapters a:last-child { border-right: 0; }
.menu-chapters a:hover { color: var(--fg); }
.menu-chapters .chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ember);
  text-transform: none;
}
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* -------- Menu -------- */
.menu-section { padding: var(--s-6) 0; border-top: 1px solid var(--divider); }
.menu-section:first-of-type { border-top: 0; padding-top: 0; }
.menu-section-head { display: flex; align-items: baseline; gap: var(--s-3); margin-bottom: var(--s-4); flex-wrap: wrap; }
.menu-section-num { font-family: var(--font-display); font-style: italic; color: var(--ember); font-size: 1.25rem; }
.menu-section-title { font-size: var(--step-l); letter-spacing: -0.01em; }
.menu-section-sub {
  font-size: var(--step-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg-muted);
  margin-left: auto;
}
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: var(--s-3);
  padding: var(--s-3) var(--s-2);
  margin: 0 calc(-1 * var(--s-2));
  border-top: 1px dashed var(--divider);
  position: relative;
  transition: background 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-item:first-child { border-top: 0; }
.menu-item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--ember);
  transform: scaleY(0); transform-origin: top;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-item:hover { background: linear-gradient(90deg, var(--ember-tint), transparent 60%); }
.menu-item:hover::before { transform: scaleY(1); }
.menu-item h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  margin-bottom: 0.35rem; letter-spacing: -0.01em; color: var(--fg);
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-item:hover h3 { transform: translateX(6px); }
.menu-item-desc { color: var(--fg-muted); font-size: var(--step-s); max-width: 60ch; margin: 0; }
.menu-item-price {
  font-family: var(--font-display); font-size: 1.5rem; font-variant-numeric: tabular-nums;
  color: var(--fg-2); align-self: start; letter-spacing: -0.01em;
  transition: color 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-item:hover .menu-item-price { color: var(--ember-hi); }
.menu-item-meta { font-size: var(--step-xs); text-transform: uppercase; letter-spacing: 0.22em; color: var(--ember); margin-bottom: 0.4rem; }

/* -------- Prose -------- */
.prose { max-width: var(--measure); }
.prose p { max-width: var(--measure); color: var(--fg-2); }
.prose p + p { margin-top: 1em; }
.prose .lede { font-size: 1.25rem; color: var(--fg); line-height: 1.5; max-width: 40ch; }
.prose h3 { font-size: 1.75rem; margin: 2.5rem 0 1rem; font-family: var(--font-display); color: var(--fg); }
.prose strong { color: var(--fg); font-weight: 500; }
.prose a {
  color: var(--fg);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--ember), var(--ember));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color 500ms cubic-bezier(0.22, 0.61, 0.36, 1), background-size 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.prose a:hover { color: var(--ember-hi); background-size: 100% 2px; }

/* -------- Form -------- */
.form { display: grid; grid-template-columns: 1fr; gap: var(--s-3); max-width: 680px; }
@media (min-width: 640px) { .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: var(--step-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg-muted);
}
.field input, .field select, .field textarea {
  font: inherit; color: var(--fg);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--divider-hi);
  padding: 0.85rem 0;
  min-height: 44px;
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--ember-hi);
}
.field select { color: var(--fg); }
.field select option { background: var(--surface); color: var(--fg); }
.form-note {
  font-size: var(--step-xs); color: var(--fg);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 1.25rem;
  background: var(--ember-tint);
  border-left: 2px solid var(--ember);
  line-height: 1.6;
}
.form-note a { color: var(--ember-hi); }
.form-preview-msg { padding: 1rem 1.25rem; background: var(--ember-tint); border-left: 2px solid var(--ember); font-size: var(--step-s); color: var(--fg); }
.submit {
  font-size: var(--step-xs); letter-spacing: 0.3em; text-transform: uppercase;
  padding: 1.15rem 2.4rem; background: var(--ember); color: var(--fg);
  border-radius: 999px; align-self: start; min-height: 48px;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  box-shadow: 0 10px 40px -10px var(--ember-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}
.submit:hover { background: var(--ember-hi); box-shadow: 0 14px 50px -10px var(--ember-glow), inset 0 1px 0 rgba(255,255,255,0.12); }
.submit:active { transform: scale(0.98); }

/* -------- Hours -------- */
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: grid; grid-template-columns: 8ch 1fr auto; gap: var(--s-2);
  padding: 0.6rem 0; align-items: baseline;
  border-bottom: 1px dashed var(--divider);
}
.hours-day  { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--fg); }
.hours-dash { border-bottom: 1px solid var(--ember); align-self: center; height: 1px; margin-bottom: 0.35rem; opacity: 0.5; }
.hours-time { font-variant-numeric: tabular-nums; color: var(--fg-muted); font-size: var(--step-s); letter-spacing: 0.02em; }

.meta-block h4 {
  font-family: var(--font-body); font-size: var(--step-xs);
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--fg-muted);
  font-weight: 500; margin-bottom: 0.7rem;
}
.meta-block p, .meta-block address { font-style: normal; margin: 0; color: var(--fg); }
.meta-block a { color: var(--fg); }
.meta-block a:hover { color: var(--ember-hi); }

/* -------- Footer -------- */
footer {
  margin-top: var(--s-8);
  padding: var(--s-6) var(--gutter) var(--s-5);
  border-top: 1px solid var(--divider);
  color: var(--fg-muted);
  font-size: var(--step-s);
  background: linear-gradient(180deg, transparent, var(--canvas-2));
}
.foot-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); max-width: var(--content); margin: 0 auto; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-brand { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--fg); line-height: 1.1; }
.foot-brand + p { max-width: 32ch; margin-top: 0.5rem; }
.foot h4 { font-family: var(--font-body); font-size: var(--step-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.9rem; font-weight: 500; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.foot a:hover { color: var(--fg); }
.foot-fine {
  max-width: var(--content); margin: var(--s-5) auto 0; padding-top: var(--s-3);
  border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-2);
  font-size: 0.6875rem; letter-spacing: 0.26em; text-transform: uppercase;
}

/* -------- Cursor accent -------- */
.cursor {
  position: fixed; pointer-events: none; z-index: 100;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--ember);
  transform: translate(-50%, -50%);
  transition: opacity 300ms var(--ease-out), width 300ms var(--ease-out), height 300ms var(--ease-out), background 300ms var(--ease-out), border-color 300ms var(--ease-out);
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform;
  box-shadow: 0 0 20px var(--ember-glow);
}
.cursor.is-active { opacity: 0.75; }
.cursor.is-hover { width: 72px; height: 72px; background: var(--ember-tint); border-color: var(--ember-hi); box-shadow: 0 0 40px var(--ember-glow); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* -------- Map -------- */
.map-frame {
  aspect-ratio: 5 / 4;
  background: var(--surface);
  padding: var(--s-3);
  position: relative;
  border: 1px solid var(--divider-hi);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}
.map-frame svg { width: 100%; height: 100%; }

/* -------- Accessibility -------- */
:focus-visible { outline: 2px solid var(--ember-hi); outline-offset: 3px; border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .word-reveal > span { transform: none !important; }
  .cursor { display: none; }
  .hero::before { animation: none; }
}

/* ================================================================
   MOBILE TIGHTNESS — show less, breathe more, feel intentional.
   ================================================================ */
@media (max-width: 760px) {
  :root {
    --s-6: 3rem;   /* was 4 */
    --s-7: 3.5rem; /* was 6 */
    --s-8: 4rem;   /* was 8 */
    --gutter: 1.25rem;
  }

  /* Hero — tighter, video breathes */
  .hero { padding: var(--s-6) var(--gutter) var(--s-5); }
  .hero--video { min-height: 82vh; min-height: 82dvh; }
  .hero--video .hero-content { padding: var(--s-6) var(--gutter) var(--s-5); }
  .hero-eyebrow { margin-bottom: var(--s-3); font-size: 0.6875rem; letter-spacing: 0.24em; }
  .hero-eyebrow::before { width: 28px; }
  .hero-title { max-width: 12ch; margin-bottom: var(--s-3); font-size: clamp(2.4rem, 11vw, 3.5rem); line-height: 1; }
  .hero--video .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); max-width: 14ch; }
  .hero-lede { font-size: 1rem; line-height: 1.4; }
  .hero--video .hero-lede { font-size: 0.95rem; max-width: 32ch; }
  /* Compact meta row — kept but reformatted for narrow screens */
  .hero-meta { gap: var(--s-2) var(--s-3); font-size: 0.6875rem; letter-spacing: 0.2em; margin-top: var(--s-3); }
  .hero-meta span { display: inline-flex; align-items: baseline; gap: 0.35rem; }

  /* Sections — trim padding & titles */
  section { padding: var(--s-5) 0; }
  .section-head { margin-bottom: var(--s-3); gap: var(--s-1); }
  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); max-width: 18ch; }
  .section-sub { font-size: 1.05rem; }
  .section-num { font-size: 1.15rem; }

  /* Signatures grid — spacing */
  .grid { gap: var(--s-4); }
  .card-figure { aspect-ratio: 5 / 4; margin-bottom: var(--s-2); }
  .card-title { font-size: 1.35rem; }
  .card-desc { font-size: 0.9rem; max-width: none; }

  /* Two-col stacks — tighten */
  .two-col { gap: var(--s-4); }
  .figure-large { aspect-ratio: 5 / 4; }

  /* Pull quotes — smaller */
  .pull { padding: var(--s-5) 0; margin: var(--s-4) 0; }
  .pull-mark { font-size: 4rem; }
  .pull-text { font-size: 1.5rem; max-width: 20ch; }

  /* Menu items */
  .menu-item { padding: var(--s-2) var(--s-1); margin: 0 calc(-1 * var(--s-1)); }
  .menu-item h3 { font-size: 1.25rem; }
  .menu-item-price { font-size: 1.25rem; }
  .menu-item-desc { font-size: 0.85rem; }
  .menu-section { padding: var(--s-4) 0; }
  .menu-section-head { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .menu-section-title { font-size: 1.5rem; }
  .menu-section-sub { margin-left: 0; font-size: 0.6875rem; letter-spacing: 0.22em; }

  /* Prose */
  .prose .lede { font-size: 1.1rem; }
  .prose h3 { font-size: 1.35rem; margin: 1.75rem 0 0.75rem; }

  /* Footer — 1 column, only essentials */
  footer { margin-top: var(--s-6); padding: var(--s-5) var(--gutter) var(--s-4); }
  .foot-grid { gap: var(--s-4); }
  .foot-brand { font-size: 1.75rem; }
  .foot-brand + p { max-width: none; font-size: 0.85rem; }
  .foot h4 { margin-bottom: 0.6rem; }
  .foot { font-size: 0.85rem; }
  /* Compress hours footer to a compact line */
  .foot ul { gap: 0.3rem; }

  /* Reduce grain overlay on mobile — perf & clarity */
  body::before { opacity: 0.06; }

  /* Bigger touch feedback */
  a, button { -webkit-tap-highlight-color: transparent; }
  a:active, button:active { opacity: 0.72; transition: opacity 100ms; }
}

@media (max-width: 420px) {
  .foot-grid { grid-template-columns: 1fr; }
  .nav .reserve-btn { padding: 0.6rem 0.9rem; font-size: 0.625rem; letter-spacing: 0.2em; }
}
