/* ============================================================
   FORKCAST DEMO · 06a · THE FEED · VENUE
   "The Pass." A dark, full-bleed cinematic food gallery for
   plate-led dine-in venues. The photography fills the screen
   and IS the brand; the UI recedes. Graphite + bone, all colour
   comes from the food, one restrained paprika-ember accent.

   Its own DNA (NOT a copy of any other skin):
   - Type: Instrument Serif (big italic display) + Manrope
   - Signature: "The Courses" full-viewport scroll-snap plates
     with a slow Ken-Burns push, dish names landing like service.
   - Pointer: dishes lean INTO the cursor (zoom-toward-pointer).
   All effects GPU-cheap, guarded by reduced-motion + hover:none.
   ============================================================ */

:root {
  --bg: #16171A;          /* graphite */
  --bg-deep: #0C0D0E;     /* letterbox / footer */
  --bg-raise: #1F2125;    /* raised cards */
  --bone: #F2EEE6;        /* primary text */
  --bone-soft: #ACA79E;   /* secondary */
  --bone-faint: #76726B;
  --accent: #E2613A;      /* paprika ember (used sparingly) */
  --accent-deep: #C24A28;
  --accent-soft: rgba(226, 97, 58, 0.16);
  --line: rgba(242, 238, 230, 0.12);
  --line-strong: rgba(242, 238, 230, 0.26);

  --display: 'Instrument Serif', Georgia, serif;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;

  --gutter: clamp(22px, 5vw, 104px);
  --content-max: 1320px;
  --section-pad: clamp(84px, 11vw, 184px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-snap-type: y proximity; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--bone);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--bg); }
.wrap { max-width: var(--content-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- TYPE PRIMITIVES ---------- */
.label {
  font-family: var(--body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.label::before { content: ''; width: 24px; height: 1px; background: var(--accent); display: inline-block; }
.label.plain::before { display: none; }

.display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 96px); line-height: 0.96; letter-spacing: -0.015em;
}
.display em { font-style: italic; color: var(--accent); }
.h2 { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 5vw, 76px); line-height: 1.0; letter-spacing: -0.01em; }
.h2 em { font-style: italic; color: var(--accent); }
.lede { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; color: var(--bone-soft); max-width: 48ch; }
em { font-style: italic; }

/* ---------- BUTTONS ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn {
  font-family: var(--body); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  padding: 16px 30px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn-primary { background: var(--bone); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--bone); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--bone); }
.btn-ghost .arrow { color: var(--accent); transition: transform 0.4s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(5px); }

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  background: var(--accent); color: var(--bg);
  font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-align: center; padding: 9px 16px; position: relative; z-index: 95;
}
.demo-banner strong { letter-spacing: 0.18em; }
.demo-banner a { color: var(--bg); border-bottom: 1px solid rgba(12,13,14,0.5); padding-bottom: 1px; }

/* ---------- NAV (over-hero transparent, then solid) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(12, 13, 14, 0.86); backdrop-filter: saturate(140%) blur(16px); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--content-max); margin: 0 auto; padding: 20px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand-monogram { display: inline-flex; align-items: center; gap: 12px; }
.nav-brand-monogram svg { width: 30px; height: 30px; flex-shrink: 0; transition: transform 0.5s var(--ease); }
.nav-brand-monogram:hover svg { transform: scale(1.08); }
.nav-brand-monogram svg path, .nav-brand-monogram svg line, .nav-brand-monogram svg circle { stroke: var(--accent); fill: none; }
.nav-brand-monogram span { font-family: var(--display); font-size: 24px; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: clamp(18px, 2.6vw, 40px); }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--bone-soft); position: relative; padding: 4px 0; transition: color 0.3s var(--ease); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-size: 13px; font-weight: 600; color: var(--bg); background: var(--bone); padding: 11px 20px; border-radius: 2px; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.nav-cta:hover { background: var(--accent); color: var(--bone); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ============================================================
   IMAGE FRAME (.frame) · photo-ready dark placeholder.
   A real <img> drops straight in and covers the placeholder.
   ============================================================ */
.frame {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(120% 100% at 30% 0%, #24262b 0%, transparent 60%),
    linear-gradient(160deg, #1b1d21 0%, #121316 100%);
}
.frame::after { /* grain so the slot never looks flat; gentle over real photos */
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.frame:has(img)::after { opacity: 0.14; }
.frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.frame .ph {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 32px;
}
.frame .ph .ph-label { font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.frame .ph .ph-intent { font-size: 14px; line-height: 1.55; color: var(--bone-soft); max-width: 34ch; }
.frame .ph .ph-mark { width: 34px; height: 34px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: var(--display); font-size: 15px; }

/* zoom-toward-cursor pointer (Feed Venue's signature pointer) */
.zoom { --mx: 50%; --my: 50%; }
.zoom img, .zoom .ph { transition: transform 0.6s var(--ease); }
.zoom:hover img, .zoom:hover .ph { transform: scale(1.06); transform-origin: var(--mx) var(--my); }

/* ============================================================
   HERO · full-bleed dish fills the viewport. The plate is the page.
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; padding-top: 88px; }
.hero .frame { position: absolute; inset: 0; z-index: 0; }
.hero .frame img, .hero .hero-bg-ph { transform: scale(1.04); }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,13,14,0.55) 0%, rgba(12,13,14,0.05) 32%, rgba(12,13,14,0.25) 62%, rgba(12,13,14,0.9) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--content-max); margin: 0 auto; width: 100%; padding: 0 var(--gutter) clamp(44px, 6vw, 92px); }
.hero-eyebrow { margin-bottom: 18px; }
.hero h1 { max-width: 15ch; margin-bottom: 20px; }
.hero-sub { margin-bottom: 28px; max-width: 44ch; color: var(--bone); opacity: 0.9; }
.hero-meta { margin-top: 24px; display: flex; gap: 26px; flex-wrap: wrap; font-size: 12.5px; letter-spacing: 0.08em; color: var(--bone-soft); text-transform: uppercase; }
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta span + span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); margin-right: 16px; }
.scroll-cue { position: absolute; left: var(--gutter); bottom: 22px; z-index: 3; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bone-soft); display: flex; align-items: center; gap: 10px; }
.scroll-cue .line { width: 1px; height: 36px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ''; position: absolute; top: -36px; left: 0; width: 100%; height: 36px; background: var(--accent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); } 60%, 100% { transform: translateY(72px); } }

/* ---------- TRUST ROW ---------- */
.marks { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-deep); }
.marks-inner { max-width: var(--content-max); margin: 0 auto; padding: 26px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.marks-inner .m { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-faint); }
.marks-inner .m b { color: var(--bone); font-weight: 600; }

/* ============================================================
   THE COURSES · signature. Full-viewport scroll-snap plates with
   a slow Ken-Burns push; the dish name lands like a plate at the pass.
   ============================================================ */
.courses { position: relative; }
.course { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; scroll-snap-align: start; }
.course .frame { position: absolute; inset: 0; z-index: 0; }
.course .frame img, .course .course-bg-ph { will-change: transform; }
.kenburns img, .kenburns .course-bg-ph { animation: kenburns 20s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.course-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(12,13,14,0.2) 0%, transparent 30%, rgba(12,13,14,0.5) 70%, rgba(12,13,14,0.94) 100%); }
.course-content { position: relative; z-index: 2; max-width: var(--content-max); margin: 0 auto; width: 100%; padding: 0 var(--gutter) clamp(56px, 8vw, 110px); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; }
.course-no { font-family: var(--display); font-size: clamp(60px, 10vw, 150px); line-height: 0.8; color: var(--accent); opacity: 0.9; }
.course-text { max-width: 640px; }
.course-text .cm { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-soft); margin-bottom: 16px; }
.course-text h3 { font-family: var(--display); font-size: clamp(40px, 6vw, 92px); line-height: 0.98; letter-spacing: -0.01em; margin-bottom: 16px; }
.course-text h3 em { font-style: italic; color: var(--accent); }
.course-text p { color: var(--bone); opacity: 0.86; font-size: 16px; line-height: 1.6; max-width: 46ch; }
.course-text .price { margin-top: 18px; font-size: 13px; letter-spacing: 0.06em; color: var(--bone-soft); }
.course-rail { position: absolute; top: 0; right: var(--gutter); z-index: 2; height: 100%; display: flex; align-items: center; }
.course-rail .dots { display: flex; flex-direction: column; gap: 10px; }
.course-rail .dots span { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--line-strong); }
@media (max-width: 860px) {
  .course-content { grid-template-columns: 1fr; gap: 14px; }
  .course-no { font-size: clamp(48px, 18vw, 90px); }
  .course-rail { display: none; }
}

/* ============================================================
   FEATURE · the room at golden hour. Full-bleed + floating caption.
   ============================================================ */
.feature { position: relative; }
.feature .frame { aspect-ratio: 21 / 9; width: 100%; }
@media (max-width: 860px) { .feature .frame { aspect-ratio: 4 / 5; } }
.feature-caption { position: absolute; z-index: 4; left: var(--gutter); bottom: clamp(28px, 5vw, 64px); max-width: min(460px, 78vw); background: rgba(12, 13, 14, 0.72); backdrop-filter: blur(8px); border: 1px solid var(--line); padding: clamp(24px, 3vw, 40px); border-radius: 3px; }
.feature-caption .label { margin-bottom: 16px; }
.feature-caption h2 { font-family: var(--display); font-size: clamp(28px, 3.2vw, 46px); line-height: 1.0; margin-bottom: 12px; }
.feature-caption h2 em { font-style: italic; color: var(--accent); }
.feature-caption p { color: var(--bone-soft); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   STORY TEASE · the pass / the chef. Offset two-column.
   ============================================================ */
.story-tease { padding: var(--section-pad) 0; }
.story-tease-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.story-tease .frame { aspect-ratio: 4 / 5; border-radius: 3px; }
.story-tease h2 { margin-bottom: 22px; }
.story-tease p { color: var(--bone-soft); margin-bottom: 18px; max-width: 48ch; }
.story-tease .sig { display: inline-flex; margin-top: 12px; }
@media (max-width: 860px) { .story-tease-inner { grid-template-columns: 1fr; } }

/* ============================================================
   VISIT · venue scaffolding. Clear, scannable, each block a step.
   ============================================================ */
.visit { padding: var(--section-pad) 0; background: var(--bg-deep); }
.visit-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.visit-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 72px); }
.visit-head h2 { margin-bottom: 16px; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 56px); }
.visit-block { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.visit-block h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.visit-block p { color: var(--bone); font-size: 16px; line-height: 1.65; }
.visit-block p strong { font-weight: 600; }
.visit-block .small { color: var(--bone-faint); font-size: 13.5px; margin-top: 8px; }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- FINAL CTA ---------- */
.final-cta { position: relative; min-height: 78svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.final-cta .frame { position: absolute; inset: 0; z-index: 0; }
.final-cta-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,13,14,0.78), rgba(12,13,14,0.86)); }
.final-cta .inner { position: relative; z-index: 2; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; }
.final-cta .label { justify-content: center; margin-bottom: 24px; }
.final-cta h2 { font-family: var(--display); font-size: clamp(40px, 7vw, 104px); line-height: 0.96; margin-bottom: 24px; max-width: 14ch; }
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta p { color: var(--bone-soft); margin-bottom: 36px; max-width: 42ch; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-deep); color: var(--bone-soft); padding: clamp(64px, 8vw, 120px) 0 40px; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer-brand .wordmark { display: inline-flex; align-items: center; gap: 12px; color: var(--bone); margin-bottom: 16px; }
.footer-brand .wordmark svg { width: 32px; height: 32px; }
.footer-brand .wordmark svg path, .footer-brand .wordmark svg circle, .footer-brand .wordmark svg line { stroke: var(--accent); fill: none; }
.footer-brand .wordmark span { font-family: var(--display); font-size: 22px; }
.footer-brand p { color: var(--bone-faint); max-width: 34ch; font-size: 14.5px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--bone-soft); font-size: 14.5px; margin-bottom: 10px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--bone); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; font-size: 12.5px; color: var(--bone-faint); letter-spacing: 0.03em; }
.footer-bottom .built-by a { color: var(--accent); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- REVEAL SYSTEM ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.09s; } .reveal-d2 { transition-delay: 0.18s; } .reveal-d3 { transition-delay: 0.27s; } .reveal-d4 { transition-delay: 0.36s; }

/* ============================================================
   GUIDED COMMENTARY DOCK (.cx) · Forkcast sales overlay (demo only).
   Scroll-reactive "why this works" narration. Dismissible.
   ============================================================ */
.cx { position: fixed; right: 22px; bottom: 22px; z-index: 120; width: min(360px, calc(100vw - 32px)); background: rgba(20, 21, 24, 0.9); backdrop-filter: saturate(150%) blur(16px); border: 1px solid var(--line-strong); border-radius: 7px; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7); padding: 18px 20px 16px; transform: translateY(24px); opacity: 0; pointer-events: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.cx.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cx.cx-hidden { opacity: 0; transform: translateY(24px); pointer-events: none; }
.cx-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.cx-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 9px; }
.cx-tag::before { content: ''; width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--accent); }
.cx-close { background: none; border: none; cursor: pointer; font-size: 19px; line-height: 1; color: var(--bone-faint); padding: 2px 5px; border-radius: 4px; transition: color 0.3s var(--ease); }
.cx-close:hover { color: var(--bone); }
.cx-body { transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.cx.swapping .cx-body { opacity: 0; transform: translateY(6px); }
.cx-feel { font-family: var(--display); font-size: 22px; line-height: 1.15; color: var(--bone); margin-bottom: 9px; }
.cx-text { font-size: 13.5px; line-height: 1.6; color: var(--bone-soft); }
.cx-dots { display: flex; gap: 6px; margin-top: 16px; }
.cx-dots span { width: 14px; height: 3px; border-radius: 2px; background: var(--line-strong); transition: background 0.4s var(--ease); }
.cx-dots span.on { background: var(--accent); }
.cx-reopen { position: fixed; right: 22px; bottom: 22px; z-index: 120; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; background: var(--bone); color: var(--bg); border: none; cursor: pointer; padding: 12px 18px; border-radius: 100px; box-shadow: 0 20px 50px -26px rgba(0,0,0,0.8); opacity: 0; transform: translateY(24px); pointer-events: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease); display: inline-flex; align-items: center; gap: 9px; }
.cx-reopen::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.cx-reopen.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cx-reopen:hover { background: var(--accent); color: var(--bone); }
@media (max-width: 600px) { .cx { right: 12px; left: 12px; bottom: 12px; width: auto; padding: 15px 16px; } .cx-feel { font-size: 19px; } .cx-reopen { right: 12px; bottom: 12px; } }

/* ============================================================
   SUBPAGES (menu, the pass, bookings, find us)
   ============================================================ */
.breadcrumb { max-width: var(--content-max); margin: 0 auto; padding: 16px var(--gutter) 0; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-faint); }
.breadcrumb a { color: var(--bone-soft); }
.breadcrumb .sep { margin: 0 8px; color: var(--line-strong); }

.page-hero { position: relative; min-height: 56svh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 88px; }
.page-hero .frame { position: absolute; inset: 0; z-index: 0; }
.page-hero .frame img { transform: scale(1.04); }
.page-hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,13,14,0.6) 0%, rgba(12,13,14,0.12) 42%, rgba(12,13,14,0.86) 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--content-max); margin: 0 auto; width: 100%; padding: 0 var(--gutter) clamp(40px, 6vw, 80px); }
.page-hero .label { margin-bottom: 18px; }
.page-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 6.5vw, 92px); line-height: 0.96; letter-spacing: -0.015em; margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .lede { color: var(--bone); opacity: 0.9; }

/* MENU */
.menu-section { padding: clamp(56px, 7vw, 110px) 0; }
.menu-section + .menu-section { border-top: 1px solid var(--line); }
.menu-cols { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(32px, 5vw, 90px); }
.menu-cat .label { margin-bottom: 16px; }
.menu-cat h2 { font-family: var(--display); font-size: clamp(30px, 3.6vw, 52px); line-height: 1; }
.menu-cat p { color: var(--bone-soft); font-size: 15px; margin-top: 14px; max-width: 30ch; }
.menu-list { display: flex; flex-direction: column; }
.menu-row { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-row:first-child { border-top: 1px solid var(--line); }
.menu-row .nm { font-size: 18px; font-weight: 600; }
.menu-row .nm small { display: block; font-weight: 400; font-size: 14px; color: var(--bone-soft); margin-top: 4px; max-width: 52ch; }
.menu-row .dots { border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
.menu-row .pr { font-size: 14px; color: var(--accent); white-space: nowrap; }
@media (max-width: 860px) { .menu-cols { grid-template-columns: 1fr; } }

/* THE PASS (prose) */
.prose-wrap { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 110px) var(--gutter); }
.prose-wrap p { font-size: 19px; line-height: 1.75; color: var(--bone-soft); margin-bottom: 26px; }
.prose-wrap p .drop { color: var(--bone); font-weight: 600; }
.pullquote { max-width: 940px; margin: clamp(40px, 6vw, 90px) auto; padding: 0 var(--gutter); text-align: center; }
.pullquote blockquote { font-family: var(--display); font-style: italic; font-size: clamp(28px, 4vw, 56px); line-height: 1.15; color: var(--bone); }
.pullquote blockquote .accent { color: var(--accent); }
.pullquote cite { display: block; margin-top: 22px; font-style: normal; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-faint); }
.story-duo { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter) clamp(48px, 7vw, 100px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.story-duo .frame { aspect-ratio: 4/5; }
.story-duo .frame.wide { transform: translateY(clamp(0px, 4vw, 56px)); }
@media (max-width: 860px) { .story-duo { grid-template-columns: 1fr; } .story-duo .frame.wide { transform: none; } }

/* BOOKINGS */
.booking-wrap { max-width: var(--content-max); margin: 0 auto; padding: clamp(48px, 6vw, 90px) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 88px); align-items: center; }
.booking-frame { aspect-ratio: 4 / 3; }
.booking-copy h2 { margin-bottom: 18px; }
.booking-copy p { color: var(--bone-soft); margin-bottom: 16px; max-width: 46ch; }
.how-grid { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter) clamp(64px, 8vw, 120px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 56px); }
.how-block { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.how-block .n { font-family: var(--display); font-size: 30px; color: var(--accent); margin-bottom: 10px; }
.how-block h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.how-block p { color: var(--bone-soft); font-size: 15px; line-height: 1.6; }
@media (max-width: 860px) { .booking-wrap { grid-template-columns: 1fr; } .how-grid { grid-template-columns: 1fr; } }

/* FIND US */
.contact-map { aspect-ratio: 21 / 9; width: 100%; }
@media (max-width: 860px) { .contact-map { aspect-ratio: 4 / 3; } }
.contact-grid { max-width: var(--content-max); margin: 0 auto; padding: clamp(48px, 6vw, 96px) var(--gutter); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 56px); }
.contact-block { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.contact-block h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.contact-block p, .contact-block a { display: block; color: var(--bone); font-size: 16px; line-height: 1.7; }
.contact-block a:hover { color: var(--accent); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOTION + MOBILE GUARDS
   ============================================================ */
@media (max-width: 860px) {
  html { scroll-snap-type: none; }
  .hero { height: auto; min-height: 88svh; }
  .course { min-height: 78svh; }
}
@media (hover: none) {
  .zoom img, .zoom .ph { transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .kenburns img, .kenburns .course-bg-ph { animation: none; transform: none; }
  .scroll-cue .line::after { animation: none; }
  .zoom img, .zoom .ph { transform: none !important; }
  .cx, .cx-body, .cx-reopen { transition: none; }
}

/* ============================================================
   FORKCAST BUY BAND · demo sales chrome (Cycle 9)
   Tasteful bottom CTA, attention sheen + pulse. Above the footer,
   never blocks content. Guarded.
   ============================================================ */
.fc-buy { background: var(--bg-deep); border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 76px) var(--gutter); text-align: center; position: relative; overflow: hidden; }
.fc-buy-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.fc-buy-text { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); line-height: 1.2; color: var(--bone); }
.fc-buy-text strong { color: var(--accent); }
.fc-buy-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; justify-content: center; }
.fc-buy-cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--bg-deep); font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 30px; border-radius: 2px; box-shadow: 0 0 0 0 rgba(226, 97, 58, 0.5); animation: fcBuyPulse 2.6s ease-in-out infinite; }
.fc-buy-cta span { transition: transform 0.25s; }
.fc-buy-cta:hover span { transform: translateX(4px); }
.fc-buy-cta:hover { filter: brightness(1.06); }
.fc-buy-cta::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-18deg); animation: fcBuySheen 3.6s ease-in-out infinite; pointer-events: none; }
@keyframes fcBuyPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(226, 97, 58, 0.45); } 50% { box-shadow: 0 0 26px 4px rgba(226, 97, 58, 0.5); } }
@keyframes fcBuySheen { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.fc-buy-back { font-family: var(--body); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--bone-soft); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.fc-buy-back:hover { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .fc-buy-cta { animation: none; } .fc-buy-cta::after { display: none; } }
