/* ==========================================================================
   KASTO — Brand Stylesheet
   Fonts: Vonca (body/display), Jefith (decorative accent)
   Palette: Soft Peach #FFE7CE · Peach Pink #FFB59D · Vivid Red #E6410D
            Sage Green #88A184 · Deep Green #33502B · Black Olive #162015
   ========================================================================== */

/* ===== FONT FACES ===== */
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vonca';
  src: url('../fonts/vonca-extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jefith';
  src: url('../fonts/Jefith-Commercial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Brand Palette */
  --cream:   #FFE7CE;
  --blush:   #FFB59D;
  --fire:    #E6410D;
  --sage:    #88A184;
  --forest:  #33502B;
  --ink:     #162015;

  /* Derived / utility */
  --cream-60: rgba(255, 231, 206, 0.6);
  --cream-40: rgba(255, 231, 206, 0.4);
  --ink-70:   rgba(22, 32, 21, 0.7);
  --ink-45:   rgba(22, 32, 21, 0.45);
  --ink-12:   rgba(22, 32, 21, 0.12);
  --ink-08:   rgba(22, 32, 21, 0.08);

  /* Typography */
  --font-display: 'Jefith', system-ui, sans-serif;
  --font-body:    'Vonca', system-ui, sans-serif;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --t:          0.42s var(--ease-out);

  /* Layout */
  --nav-h:     72px;
  --max-w:     1400px;
  --gutter:    80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.jefith { font-family: var(--font-display); font-weight: 400; font-style: normal; }
.fire   { color: var(--fire); }
.sage   { color: var(--sage); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow.sage     { color: var(--sage); }
.eyebrow.dark-muted { color: rgba(255,231,206,0.4); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.00s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  transition: background var(--t), backdrop-filter var(--t);
}
.nav.scrolled {
  background: rgba(22, 32, 21, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.65; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-60);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--cream); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-gofood {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-60);
  border: 1px solid rgba(255,231,206,0.2);
  padding: 9px 18px;
  border-radius: 100px;
  transition: color var(--t), border-color var(--t), transform 0.2s;
}
.nav-gofood:hover {
  color: var(--cream);
  border-color: rgba(255,231,206,0.5);
  transform: translateY(-1px);
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  padding: 10px 26px;
  border-radius: 100px;
  transition: background var(--t), color var(--t), transform 0.18s;
}
.nav-cta:hover  { background: var(--fire); color: var(--cream); transform: translateY(-1px); }
.nav-cta:active { transform: scale(0.97); }

/* Hamburger — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile full-screen nav ─────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) 60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.38s var(--ease-out);
}
.mobile-nav.open {
  pointer-events: all;
  opacity: 1;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,231,206,0.45);
  padding: 8px;
  line-height: 0;
  transition: color var(--t), transform 0.25s;
}
.mobile-nav-close:hover { color: var(--cream); transform: rotate(90deg); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 56px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 13vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  display: block;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.2s;
}
.mobile-link:hover { color: var(--blush); }
.mobile-nav.open .mobile-link { opacity: 1; transform: translateX(0); }
.mobile-nav.open .mobile-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.open .mobile-link:nth-child(2) { transition-delay: 0.11s; }
.mobile-nav.open .mobile-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav.open .mobile-link:nth-child(4) { transition-delay: 0.21s; }

.mobile-nav-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out) 0.28s, transform 0.4s var(--ease-out) 0.28s;
}
.mobile-nav.open .mobile-nav-footer { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   VIDEO SECTION — Scroll Hijack
   ========================================================================== */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--ink);
  overflow: hidden;
}

#kasto-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient scrim — bottom-heavy, softens text reads */
.video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(22,32,21,0.6) 0%,
      rgba(22,32,21,0.15) 35%,
      rgba(22,32,21,0.05) 55%,
      rgba(22,32,21,0.65) 100%);
  pointer-events: none;
}

/* ---- Text Overlays ---- */
.video-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  /* Default: bottom-left */
  justify-content: flex-end;
  align-items: flex-start;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.text-overlay.active {
  opacity: 1;
  transform: translateY(0);
}

/* Phase position variants */
.text-overlay[data-phase="1"] {
  justify-content: center;
  align-items: flex-start;
}
.text-overlay[data-phase="2"] {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}
.text-overlay[data-phase="3"] {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 60px);
}
.text-overlay[data-phase="4"] {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.text-overlay[data-phase="5"] {
  justify-content: flex-end;
  align-items: flex-start;
}
.text-overlay[data-phase="6"] {
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  padding-top: calc(var(--nav-h) + 60px);
}
.text-overlay[data-phase="7"] {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.text-overlay[data-phase="8"] {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.overlay-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--cream);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
}
.overlay-eyebrow.small { font-size: clamp(0.9rem, 1.4vw, 1.1rem); }

.overlay-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 9rem);
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

/* Extra contrast boost on phases with eyebrow text */
.text-overlay[data-phase="1"] .overlay-title,
.text-overlay[data-phase="1"] .overlay-eyebrow,
.text-overlay[data-phase="8"] .overlay-title,
.text-overlay[data-phase="8"] .overlay-eyebrow,
.text-overlay[data-phase="4"] .overlay-eyebrow {
  text-shadow: 0 2px 32px rgba(0,0,0,0.95), 0 0 80px rgba(0,0,0,0.7);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.scroll-cue.visible {
  opacity: 1;
}
.scroll-cue-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-40);
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--cream-60), transparent);
  animation: cue-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue-pulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 1;   }
}

/* ==========================================================================
   STATEMENT SECTION
   ========================================================================== */
.statement-section {
  position: relative;
  background: var(--cream);
  padding: 140px 0 120px;
  overflow: hidden;
}
.statement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.statement-logo {
  width: 72px;
  height: auto;
  margin-bottom: 28px;
  opacity: 0.9;
  display: block;
}

.statement-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 8px;
}

.statement-right p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-70);
  max-width: 50ch;
  margin-bottom: 18px;
}
.statement-right p:last-of-type { margin-bottom: 36px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: gap var(--t), color var(--t), border-color var(--t);
}
.text-link:hover {
  gap: 18px;
  color: var(--fire);
  border-color: var(--fire);
}
.arrow-icon { transition: transform var(--t); flex-shrink: 0; }
.text-link:hover .arrow-icon { transform: translateX(5px); }

/* ==========================================================================
   CHEF PATRON
   ========================================================================== */
.chef-section {
  background: var(--ink);
  padding: 120px 0 140px;
  overflow: hidden;
}
.chef-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}

/* Image column */
.chef-image-wrapper {
  position: relative;
  overflow: hidden;
}
.chef-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(12%) contrast(1.04);
  /* Extra height absorbs the GSAP parallax range (±5%) without gaps */
  height: 112%;
  margin-top: -6%;
}
.chef-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 28px;
  background: linear-gradient(to top, rgba(22,32,21,0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.chef-image-caption .jefith {
  font-size: 2.75rem;
  color: var(--cream);
  line-height: 1;
}
.caption-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  padding-bottom: 6px;
}

/* Text column */
.chef-text-col {
  padding-top: 16px;
}
.chef-heading {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-top: 8px;
  margin-bottom: 48px;
}
.chef-heading em {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.88;
  color: var(--blush);
  margin-bottom: 6px;
}

.chef-body p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-60);
  margin-bottom: 18px;
  max-width: 54ch;
}
.chef-body p em {
  font-style: italic;
  color: var(--blush);
  font-weight: 400;
}
.chef-body p:last-child { margin-bottom: 0; }

/* Credentials strip */
.chef-credentials {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,231,206,0.1);
}
.credential-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.credential-num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.credential-num.jefith {
  font-family: var(--font-display);
  font-size: 2.5rem;
}
.credential-label {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,231,206,0.45);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   STORY SECTION
   ========================================================================== */
.story-section {
  background: var(--forest);
  padding: 120px 0 140px;
  overflow: hidden;
}
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2.5fr 4fr;
  gap: 80px;
  align-items: start;
}

.story-left {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.story-heading {
  font-size: clamp(4.5rem, 8vw, 8rem);
  color: var(--cream);
  line-height: 0.87;
  margin-top: 8px;
  margin-bottom: 32px;
}
.story-year {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blush);
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.story-image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-body p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,231,206,0.78);
  margin-bottom: 20px;
}
.story-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
  background: var(--cream);
  padding: 120px 0 80px;
}
.menu-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 72px;
}
.menu-heading {
  font-size: clamp(5rem, 9vw, 9.5rem);
  color: var(--ink);
  line-height: 0.85;
}
.menu-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-45);
  letter-spacing: 0.04em;
  text-align: right;
  max-width: 22ch;
}

/* Category rows */
.menu-category {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 44px var(--gutter);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  border-top: 1px solid var(--ink-12);
}
.menu-category:last-of-type { border-bottom: 1px solid var(--ink-12); }

.category-meta {
  padding-top: 2px;
}
.category-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--fire);
  margin-bottom: 10px;
}
.category-name {
  font-size: 2.75rem;
  color: var(--ink);
  line-height: 1;
}

/* Items */
.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-08);
  transition: padding-left 0.3s var(--ease-out);
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { padding-left: 10px; }

.item-info h4 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.item-info p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-45);
  line-height: 1.5;
}
.item-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.menu-note {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 var(--gutter);
}
.menu-note p {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-45);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   PHILOSOPHY SECTION
   ========================================================================== */
.philosophy-section {
  background: var(--ink);
  padding: 120px 0 140px;
}
.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.philosophy-heading {
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  color: var(--cream);
  line-height: 0.88;
  margin-top: 10px;
  margin-bottom: 80px;
  max-width: 14ch;
}

.philosophy-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,231,206,0.08);
}
.philosophy-list { display: flex; flex-direction: column; }
.phil-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-top: 1px solid rgba(255,231,206,0.08);
  align-items: start;
}
.phil-item:last-child { border-bottom: 1px solid rgba(255,231,206,0.08); }
.phil-num {
  font-size: 5rem;
  line-height: 0.85;
  color: rgba(255,231,206,0.06);
  user-select: none;
}
.phil-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.phil-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-40);
  line-height: 1.75;
  max-width: 52ch;
}

/* ==========================================================================
   RESERVE / CONTACT
   ========================================================================== */
.reserve-section {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.reserve-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 640px;
}

/* Left panel */
.reserve-left {
  padding: 100px 80px 100px 0;
  border-right: 1px solid rgba(255,231,206,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reserve-heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 4.75rem);
  color: var(--cream);
  line-height: 0.92;
  margin-top: 10px;
  margin-bottom: 28px;
}

/* Fire accent stripe above heading */
.reserve-left::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--fire);
  margin-bottom: 28px;
}

.reserve-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-40);
  line-height: 1.75;
  max-width: 38ch;
  margin-bottom: 48px;
}

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: var(--fire);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background var(--t), transform 0.2s;
}
.btn-primary:hover  { background: var(--blush); color: var(--ink); transform: translateY(-2px); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  border: 1px solid rgba(255,231,206,0.2);
  color: var(--cream-60);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: border-color var(--t), color var(--t), transform 0.2s;
}
.btn-secondary:hover  { border-color: var(--cream-60); color: var(--cream); transform: translateY(-2px); }
.btn-secondary:active { transform: scale(0.97); }

/* Right panel — info blocks */
.reserve-right {
  padding: 100px 0 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 44px;
}
.info-block { display: flex; flex-direction: column; gap: 14px; }
.info-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fire);
}
.info-lines { display: flex; flex-direction: column; gap: 8px; }
.info-row {
  display: flex;
  gap: 24px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream);
}
.info-row span:last-child {
  white-space: nowrap;
}
.info-row.muted { color: rgba(255,231,206,0.3); }
.info-text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
}
.info-text a {
  color: inherit;
  transition: opacity var(--t);
}

.reserve-map {
  height: 380px;
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(255,231,206,0.06);
}

.reserve-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) invert(92%) hue-rotate(175deg) brightness(0.85) contrast(0.9);
  opacity: 0.85;
  transition: opacity var(--t), filter var(--t);
}

.reserve-map:hover iframe {
  filter: grayscale(10%) invert(92%) hue-rotate(175deg) brightness(0.9) contrast(0.95);
  opacity: 1;
}

@media (max-width: 768px) {
  .reserve-map { height: 280px; }
}
.info-text a:hover { opacity: 0.65; }

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal[hidden] { display: none; }

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 32, 21, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: overlay-in 0.35s var(--ease-out);
}
@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.booking-panel {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 56px 64px 64px;
  animation: panel-in 0.4s var(--ease-out);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-12) transparent;
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-45);
  padding: 6px;
  line-height: 0;
  transition: color var(--t), transform 0.2s;
}
.booking-close:hover { color: var(--ink); transform: rotate(90deg); }

/* Header */
.booking-header { margin-bottom: 40px; }
.booking-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--ink);
  line-height: 0.9;
  margin-top: 8px;
}

/* Steps */
.booking-step { margin-bottom: 32px; }
.booking-step[hidden] { display: none; }

/* Row + field layout */
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-field label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.field-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6875rem;
  color: var(--ink-45);
  opacity: 0.7;
}

/* Inputs */
.booking-field input[type="text"],
.booking-field input[type="email"],
.booking-field input[type="tel"],
.booking-field input[type="date"] {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-12);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--t);
  width: 100%;
}
.booking-field input:focus {
  border-color: var(--ink);
}
.booking-field input::placeholder { color: var(--ink-45); }

/* Select */
.select-wrap {
  position: relative;
}
.select-wrap select {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-12);
  padding: 10px 28px 10px 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
  transition: border-color var(--t);
}
.select-wrap select:focus { border-color: var(--ink); }
.select-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--ink-45);
}

/* Slots */
.slots-header {
  margin-bottom: 16px;
}
.slots-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 4px;
}
.slots-closed-msg {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--fire);
}
.slots-closed-msg[hidden] { display: none; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.slot-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink-12);
  padding: 12px 8px;
  cursor: pointer;
  text-align: center;
  transition: background var(--t), border-color var(--t), color var(--t), transform 0.15s;
  animation: slot-in 0.3s var(--ease-out) both;
}
.slot-btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.slot-btn.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
@keyframes slot-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Booking summary */
.booking-summary {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink-45);
  padding: 20px 0;
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
  margin-bottom: 32px;
  line-height: 1.6;
}
.booking-summary strong { color: var(--ink); font-weight: 500; }

/* Submit */
.btn-book {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  border-radius: 100px;
  transition: background var(--t), transform 0.2s;
}
.btn-book:hover  { background: var(--forest); transform: translateY(-2px); }
.btn-book:active { transform: scale(0.97); }

/* Success state */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0 16px;
  gap: 20px;
}
.booking-success[hidden] { display: none; }
.success-icon { line-height: 0; }
.success-heading {
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 1;
}
.success-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-45);
  max-width: 36ch;
  line-height: 1.7;
}
.btn-book-outline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink-12);
  padding: 12px 28px;
  cursor: pointer;
  border-radius: 100px;
  margin-top: 8px;
  transition: border-color var(--t), transform 0.2s;
}
.btn-book-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

/* Mobile */
@media (max-width: 600px) {
  .booking-panel { padding: 40px 24px 48px; }
  .booking-row { grid-template-columns: 1fr; gap: 20px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  padding: 56px 0;
  border-top: 1px solid rgba(255,231,206,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Restaurant Guru badge ────────────────────────────────────────────────── */
.guru-badge-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1;
}
.footer-tagline {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,231,206,0.35);
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,231,206,0.2);
  letter-spacing: 0.04em;
}
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,231,206,0.15);
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: rgba(255,231,206,0.25);
  text-decoration: none;
  transition: color var(--t);
}
.footer-credit a:hover { color: rgba(255,231,206,0.6); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }

  .statement-inner { gap: 48px; }
  .chef-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .story-inner { grid-template-columns: 2fr 3fr; gap: 48px; }
  .reserve-inner { grid-template-columns: 1fr; }
  .reserve-left  { padding: 80px 0 48px; border-right: none; border-bottom: 1px solid rgba(255,231,206,0.08); }
  .reserve-right { padding: 48px 0 80px; }

  .philosophy-header { grid-template-columns: 1fr; gap: 0; }
  .philosophy-header .philosophy-heading { margin-top: 0; }
  .phil-item { grid-template-columns: 80px 1fr; gap: 32px; }
  .footer-inner { gap: 32px; }
}

@media (max-width: 1200px) {
  .nav-links { gap: 24px; }
  .nav-cta   { padding: 9px 18px; }
}

@media (max-width: 1024px) {
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --gutter: 20px;
  }

  .text-overlay { padding: 32px; }
  .text-overlay[data-phase="3"] { padding-top: 100px; }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .statement-section { padding: 80px 0; }

  .chef-inner { grid-template-columns: 1fr; gap: 48px; }
  .chef-heading { margin-bottom: 32px; }
  .chef-credentials { flex-wrap: wrap; gap: 32px; }

  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-left { position: static; }

  .menu-header { flex-direction: column; gap: 12px; }
  .menu-sub { text-align: left; }
  .menu-category {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .philosophy-header { padding-bottom: 48px; margin-bottom: 0; }
  .phil-item { grid-template-columns: 56px 1fr; gap: 20px; padding: 36px 0; }
  .phil-num { font-size: 3.5rem; }

  .reserve-inner { grid-template-columns: 1fr; gap: 56px; }
  .reserve-right { padding-top: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-copy { text-align: left; }
}
