/* =========================
   Brasa — Black & Red theme
   ========================= */

:root {
  --bg: #0a0405;
  --bg-2: #130709;
  --bg-3: #1a0a0d;
  --ink: #f3e7e4;
  --ink-mute: #b9a9a6;
  --red: #b8232a;
  --red-2: #7e1519;
  --red-soft: #e74c3c;
  --line: rgba(255, 225, 215, 0.12);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --script: 'Dancing Script', cursive;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 600px at 80% -5%, rgba(184, 35, 42, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(184, 35, 42, 0.08), transparent 60%);
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.section {
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 80px);
  position: relative;
}

/* =========================
   Typography
   ========================= */
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--ink);
}

.h-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 10px;
  font-weight: 500;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  line-height: 1;
  background: linear-gradient(180deg, #f3e7e4 0%, #9c3a3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signature {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--red-soft);
  margin-top: 14px;
}

/* =========================
   Draw-line utility
   ========================= */
.draw-line {
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  margin: 18px 0 26px;
  width: 56px;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}
.draw-line.is-in {
  transform: scaleX(1);
}

/* =========================
   Blur-reveal utility
   ========================= */
.blur-reveal {
  overflow: hidden;
}
.blur-reveal img {
  transform: scale(1.08);
  filter: blur(16px);
  transition:
    transform 1.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.blur-reveal.is-in img {
  transform: scale(1);
  filter: blur(0);
}

/* =========================
   Nav
   ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(10, 4, 5, 0.55);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  gap: 20px;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav__links a { transition: color .3s; }
.nav__links a:hover { color: var(--red-soft); }
.nav__right { display: flex; align-items: center; gap: 18px; }

.lang { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; letter-spacing: 0.2em; }
.lang__btn {
  background: transparent;
  border: none;
  color: var(--ink-mute);
  cursor: pointer;
  font-family: inherit;
  padding: 4px 2px;
  letter-spacing: 0.2em;
  transition: color .2s;
}
.lang__btn.is-active { color: var(--red-soft); border-bottom: 1px solid var(--red-soft); }
.lang__sep { color: var(--ink-mute); opacity: 0.5; }

.btn {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  transition: border-color .3s, background .3s, transform .3s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn--ghost:hover { border-color: var(--red); background: rgba(184, 35, 42, 0.12); }
.btn--outline {
  color: var(--ink);
  border: 1px solid var(--red-soft);
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn--outline:hover { background: var(--red); border-color: var(--red); }
.btn--link {
  color: var(--red-soft);
  border-bottom: 1px solid var(--red-soft);
  padding: 6px 2px;
  letter-spacing: 0.3em;
  transition: color .3s, transform .3s cubic-bezier(0.2, 1, 0.3, 1);
}
/* Magnetic btn — transform driven by JS, transition resets on mouseleave */
.magnetic-btn {
  transition-property: transform, background, border-color, color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

/* =========================
   Hero
   ========================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 24s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(10,4,5,0.96) 30%, rgba(10,4,5,0.45) 70%, rgba(10,4,5,0.2) 100%),
    linear-gradient(180deg, rgba(10,4,5,0.3) 0%, transparent 30%, transparent 60%, rgba(10,4,5,0.9) 100%);
}
.hero__body {
  position: relative;
  z-index: 3;
  padding: 120px clamp(28px, 7vw, 100px) 160px;
  max-width: 680px;
}
.hero__meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s forwards;
}
.hero__meta-sep { color: var(--red); opacity: 0.7; }
.hero__wordmark-wrap {
  overflow: hidden;
  line-height: 0.9;
  margin-bottom: 28px;
}
.hero__wordmark-wrap .wordmark {
  display: block;
  text-align: left;
  transform: translateY(105%);
  animation: slide-up 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}
.hero__lower {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 1.2s forwards;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.hero__accent {
  position: absolute;
  right: clamp(32px, 6vw, 80px);
  bottom: clamp(80px, 12vh, 140px);
  width: clamp(150px, 15vw, 220px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  z-index: 4;
  transform: rotate(2deg);
  opacity: 0;
  animation: accent-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}
.hero__accent img { width: 100%; height: 100%; object-fit: cover; }
.hero__accent-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fade-up 0.8s ease 2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-drip 2.2s ease-in-out 2.2s infinite;
  transform-origin: top;
}
@keyframes scroll-drip {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
.hero__ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(10,4,5,0.72);
  backdrop-filter: blur(6px);
  padding: 13px 0;
}
.ticker__track {
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  animation: ticker 30s linear infinite;
}
.t-dot { color: var(--red-soft); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-up {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}
@keyframes accent-in {
  from { opacity: 0; transform: translateY(30px) rotate(2deg); }
  to   { opacity: 1; transform: translateY(0)    rotate(2deg); }
}

/* =========================
   Welcome — 50/50 full-height
   ========================= */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  /* no .section padding — edge-to-edge */
}

.welcome__panel {
  height: 100%;
  overflow: hidden;
}

/* Left panel — image fills completely */
.welcome__panel--img {
  position: relative;
}
.welcome__panel--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right panel — copy */
.welcome__panel--copy {
  display: flex;
  align-items: center;
  background: var(--bg);
  border-left: 1px solid var(--line);
}

.welcome__inner {
  padding: clamp(40px, 7vw, 100px);
  max-width: 540px;
}

.welcome__inner .eyebrow { margin-bottom: 0; }

.welcome__inner .draw-line {
  width: 48px;
  margin: 14px 0 22px;
}

.welcome__inner .h-display {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.welcome__inner p {
  color: var(--ink-mute);
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Stats row */
.welcome__stats {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--red-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================
   Philosophy — editorial two-column
   ========================= */
.philosophy {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* Left sticky meta column */
.philosophy__col-meta {
  position: sticky;
  top: 120px;
}

.philosophy__col-meta .eyebrow { margin-bottom: 0; }
.philosophy__col-meta .draw-line { width: 40px; margin: 12px 0 20px; }

.philosophy__lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-mute);
  line-height: 1.8;
  max-width: 320px;
}

.philosophy__img-inset {
  margin-top: clamp(28px, 4vw, 48px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 260px;
}
.philosophy__img-inset img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Right statement column */
.philosophy__col-words {
  padding-top: 8px;
}


/* Stroke-to-fill big statement */
.big-statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.6rem, 9vw, 10.5rem);
  letter-spacing: 0.03em;
  line-height: 1.0;
  display: block;
  /* Initial state: stroke only, no fill */
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(243, 231, 228, 0.35);
  /* Background gradient used as fill via clip */
  background: linear-gradient(to right, var(--ink) 0%, var(--ink) 100%) no-repeat left center;
  background-size: var(--fill-pct, 0%) 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

/* =========================
   Gallery — scroll-pinned horizontal
   ========================= */

/* =========================
   Gallery — scroll-driven horizontal
   ========================= */

/* Outer section provides scroll distance */
.gallery {
  height: 300vh;
  position: relative;
}

/* Sticky panel — no initial offset, sits flush against philosophy */
.gallery__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  will-change: transform;
}

/* Horizontal strip of 3 full-viewport slides */
.gallery__strip {
  display: flex;
  width: 300vw;
  height: 100%;
  will-change: transform;
}

.gallery__slide {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,4,5,0.25) 0%,
    transparent 30%,
    transparent 55%,
    rgba(10,4,5,0.85) 100%
  );
}

.gallery__caption {
  position: absolute;
  bottom: clamp(48px, 7vh, 80px);
  left: clamp(32px, 6vw, 80px);
}

.gallery__num {
  display: block;
  margin-bottom: 8px;
}

.gallery__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}

/* Thin progress bar at bottom */
.gallery__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
}

.gallery__progress-fill {
  height: 100%;
  background: var(--red-soft);
  width: 0%;
  transition: width 0.05s linear;
}

/* Dots */
.gallery__dots {
  position: absolute;
  bottom: clamp(28px, 4vh, 44px);
  right: clamp(32px, 6vw, 80px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(243,231,228,0.4);
  background: transparent;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}

.gallery__dot.is-active {
  background: var(--red-soft);
  border-color: var(--red-soft);
  transform: scale(1.35);
}

/* =========================
   Chef — sticky image, 3 scroll blocks
   ========================= */
.chef__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Sticky column */
.chef__col-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}

.chef__sticky-img {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
}

.chef__sticky-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  display: block;
}

.chef__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  display: flex; flex-direction: column;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 0.75rem; letter-spacing: 0.25em;
}
.chef__caption strong { color: var(--ink); font-weight: 500; }
.chef__caption span { color: var(--red-soft); margin-top: 4px; }

/* Scrolling column */
.chef__col-scroll {
  display: flex;
  flex-direction: column;
}

.chef__block {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}
.chef__block:last-child { border-bottom: none; }

.chef__block p {
  color: var(--ink-mute);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
}

.chef__block .h-serif {
  max-width: 480px;
  margin-top: 16px;
}

/* =========================
   Taste / Menu — 3-col masonry
   ========================= */
.taste__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  max-width: 1300px;
  margin: 0 auto clamp(40px, 5vw, 80px);
}

.taste__header-right p {
  color: var(--ink-mute);
  margin-bottom: 24px;
  max-width: 380px;
  line-height: 1.7;
}

/* 3-column masonry */
.taste__masonry {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr;
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

/* Column B drops lower — breaks the grid */
.masonry-col--b {
  margin-top: clamp(60px, 10vw, 140px);
}

/* Column C shifts slightly — further asymmetry */
.masonry-col--c {
  margin-top: clamp(20px, 4vw, 60px);
}

/* =========================
   Dish flip cards
   ========================= */

/* Card sizing — aspect ratio drives height in the masonry grid */
.masonry-col--a .dish-card { aspect-ratio: 3/5; }
.masonry-col--b .dish-card { aspect-ratio: 3/4; }
.masonry-col--c .dish-card { aspect-ratio: 2/3; }

.dish-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 1;
}

.dish-card:hover {
  transform: scale(1.1);
  z-index: 20;
}

.dish-card__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateY(0deg);
  transition: transform 0.78s cubic-bezier(0.4, 0.2, 0.2, 1);
}

/* Flip on hover or keyboard focus */
.dish-card:hover .dish-card__inner,
.dish-card:focus-within .dish-card__inner {
  transform: perspective(1400px) rotateY(180deg);
}

/* ── Front face ── */
.dish-card__front {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border: 1px solid var(--line);
}

.dish-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Slight pre-flip zoom on hover before card turns */
.dish-card:hover .dish-card__front img {
  transform: scale(1.05);
}

/* Name overlay at bottom of image */
.dish-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 18px 16px;
  background: linear-gradient(to top, rgba(10,4,5,0.92) 0%, transparent 100%);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.25s ease;
}
.dish-card:hover .dish-card__label { opacity: 0; }

.dish-card__hint {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-soft);
}

/* ── Back face (menu card) ── */
.dish-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  background: var(--bg-2);
  border: 1px solid rgba(184, 35, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.5vw, 32px);
  overflow-y: auto; /* scroll if content overflows at small sizes */
}

/* Subtle red vignette on back face */
.dish-card__back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,35,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.dish-card__back-body {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dish-card__back-body .eyebrow {
  margin-bottom: 0;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
}

.dish-card__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.25;
  margin-top: 4px;
}

/* Thin decorative divider */
.dish-card__rule {
  height: 1px;
  background: linear-gradient(to right, var(--red) 0%, transparent 100%);
  width: 100%;
  margin: 8px 0;
}

.dish-card__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--ink-mute);
  line-height: 1.6;
}

.dish-card__ingr {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.dish-card__ingr li {
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  padding-left: 16px;
  position: relative;
}
.dish-card__ingr li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-size: 0.7rem;
  line-height: inherit;
}

.dish-card__price {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--red-soft);
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* =========================
   Press — dominant + two secondary
   ========================= */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.press__band {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Dominant quote — huge left */
.press__dominant blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1.3;
  color: var(--ink);
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: 14px;
}

/* Secondary quotes — right column */
.press__secondary-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 52px);
}

.press__secondary-col .draw-line {
  width: 100%;
  margin: 28px 0;
}

.press__secondary blockquote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}
.press__secondary figcaption {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
}

/* =========================
   FAQ — ghost number, two-column rows
   ========================= */
.faq__title-row {
  max-width: 1200px;
  margin: 0 auto clamp(30px, 4vw, 60px);
}

.faq__heading {
  letter-spacing: 0.2em;
  margin-bottom: 0;
}

.faq__rule {
  width: 100%;
  margin: 20px 0 0;
}

.faq__rows {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__row {
  display: grid;
  grid-template-columns: clamp(60px, 8vw, 110px) 1fr 1.2fr;
  gap: clamp(20px, 3vw, 52px);
  padding: clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.faq__row:first-child { border-top: 1px solid var(--line); }

.faq__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  color: rgba(243, 231, 228, 0.06);
  letter-spacing: -0.02em;
  user-select: none;
}

.faq__q {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink);
  line-height: 1.45;
  padding-top: 4px;
}

.faq__a {
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: 4px;
}

/* =========================
   Contact
   ========================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact__block p { color: var(--ink-mute); margin-bottom: 20px; line-height: 1.7; }
.contact__socials { margin-top: 30px; display: flex; gap: 20px; }
.contact__socials a {
  font-size: 0.75rem; letter-spacing: 0.25em; color: var(--ink-mute);
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}
.contact__socials a:hover { color: var(--red-soft); border-color: var(--red-soft); }
.contact__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact__img img { width: 100%; height: 100%; object-fit: cover; }

/* =========================
   Evening CTA — full-bleed fire
   ========================= */
.evening {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.evening__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.evening__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.1s linear; /* driven by JS parallax */
}

.evening__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,4,5,0.65) 0%, rgba(10,4,5,0.5) 50%, rgba(10,4,5,0.75) 100%);
}

.evening__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 6vw, 80px);
  max-width: 800px;
}

.evening__title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-align: center;
}

.evening__content p {
  color: var(--ink-mute);
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================
   Footer
   ========================= */
.foot {
  padding: 60px clamp(20px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.foot__cols p { color: var(--ink-mute); margin-top: 6px; }
.foot__cols ul { list-style: none; }
.foot__cols ul li { margin-top: 10px; color: var(--ink-mute); font-size: 0.92rem; letter-spacing: 0.05em; }
.foot__cols ul li a:hover { color: var(--red-soft); }
.wordmark--foot {
  font-size: clamp(7rem, 24vw, 22rem);
  letter-spacing: -0.02em;
  margin: 0 0 -0.08em;
  line-height: 0.85;
  opacity: 0.95;
}
.foot__copy {
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

/* =========================
   Reveal animations
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger sibling reveals */
.welcome__stats .stat.reveal:nth-child(2) { transition-delay: 0.1s; }
.welcome__stats .stat.reveal:nth-child(3) { transition-delay: 0.2s; }

.faq__row.reveal { transition-delay: calc(var(--row-i, 0) * 0.06s); }

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .taste__masonry {
    grid-template-columns: 1fr 1fr;
  }
  .masonry-col--c {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav__links { display: none; }

  /* Hero */
  .hero__body { padding: 120px 24px 160px; }
  .hero__accent { display: none; }
  .hero__scroll { display: none; }
  .hero__wordmark-wrap .wordmark { font-size: clamp(4rem, 22vw, 8rem); }
  .hero__veil {
    background: linear-gradient(180deg, rgba(10,4,5,0.7) 0%, rgba(10,4,5,0.5) 40%, rgba(10,4,5,0.9) 100%);
  }

  /* Welcome */
  .welcome {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .welcome__panel--img {
    height: 50vh;
    min-height: 300px;
  }
  .welcome__panel--copy {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .welcome__inner {
    padding: clamp(40px, 8vw, 60px) clamp(24px, 6vw, 60px);
    max-width: 100%;
  }

  /* Philosophy */
  .philosophy__grid { grid-template-columns: 1fr; }
  .philosophy__col-meta { position: static; }
  .philosophy__img-inset { max-width: 180px; aspect-ratio: 1; }
  .big-statement { font-size: clamp(2.8rem, 9vw, 5rem); }

  /* Gallery */
  .gallery__title { font-size: clamp(1.6rem, 5vw, 2.8rem); }

  /* Chef */
  .chef__inner { grid-template-columns: 1fr; }
  .chef__col-sticky { position: static; }
  .chef__sticky-img { aspect-ratio: 4/3; }
  .chef__block { min-height: 0; padding: clamp(30px, 6vw, 50px) 0; }

  /* Menu */
  .taste__header { grid-template-columns: 1fr; }
  .taste__masonry { grid-template-columns: 1fr; }
  .masonry-col--b { margin-top: 0; }
  .masonry-col--c { display: block; margin-top: 0; }
  .masonry-col--a .dish-card,
  .masonry-col--b .dish-card,
  .masonry-col--c .dish-card { aspect-ratio: 4/3; }

  /* Press */
  .press__band { grid-template-columns: 1fr; }
  .press__secondary-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }

  /* FAQ */
  .faq__row { grid-template-columns: 1fr; gap: 12px; }
  .faq__num { font-size: clamp(2rem, 8vw, 3rem); }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }

  /* Footer */
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .nav__right .btn--ghost { display: none; }
  .foot__cols { grid-template-columns: 1fr; }
  .hero__ticker { display: none; }
  .welcome__stats { gap: 20px; }
  .press__dominant blockquote { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}
