/* ============================================================
   FORKCAST DEMO · 01a · THE EDITORIAL · MODERN
   Shared stylesheet for all 5 pages in this skin demo.

   Palette: clean cream + charcoal, single accent pulled from food.
   Type: Cormorant Garamond display, Inter body, JetBrains mono.
   Spacing: generous white space, mobile-first responsive.
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F1ECE0;
  --ink: #1A1A1A;
  --ink-soft: #4A4843;
  --accent: #B83F3F;
  --accent-soft: #E8D2CC;
  --line: rgba(26, 26, 26, 0.12);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --gutter: clamp(24px, 5vw, 96px);
  --content-max: 1320px;
  --section-pad: clamp(72px, 9vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 300;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  background: var(--ink);
  color: var(--bg);
  padding: 10px var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}
.demo-banner strong { color: var(--accent); font-weight: 500; }
.demo-banner a {
  color: var(--bg);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin-left: 8px;
}
.demo-banner a:hover { color: var(--accent); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.78; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }
.nav-cta {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.nav-cta:hover { color: var(--accent); }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(20px, 2.5vw, 32px) var(--gutter) 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}
.breadcrumb a { padding-bottom: 1px; border-bottom: 1px solid transparent; transition: border 0.2s; }
.breadcrumb a:hover { border-bottom-color: var(--accent); color: var(--accent); opacity: 1; }
.breadcrumb .sep { padding: 0 10px; opacity: 0.55; }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(48px, 8vw, 120px) var(--gutter) clamp(40px, 6vw, 80px);
  max-width: var(--content-max);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
/* Headline clamped to live in lower-half of the grid, parallel to Heritage discipline */
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 620px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-meta span::before { content: "·"; margin-right: 18px; opacity: 0.4; }
.hero-meta span:first-child::before { content: ""; margin: 0; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 20px 32px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent); color: var(--bg); }
.btn-ghost {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--accent); }

.hero-image {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.65;
  gap: 8px;
}
.image-placeholder .label { font-weight: 500; color: var(--accent); }
.image-placeholder .intent { max-width: 280px; line-height: 1.5; opacity: 0.85; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 4/5; max-width: 460px; margin: 0 auto; }
}

/* ---------- SECTION SCAFFOLDING ---------- */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-heading em { font-style: italic; color: var(--accent); }
.section-lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ============================================================
   PRESS STRIP (home page, immediately under the hero)
   Per sales-engine canon: trust signals must land within the
   first scroll. Quiet placeholder slots for the operator's
   credentials. Modern palette: cream + oxblood + charcoal hairlines.
   ============================================================ */
.press-strip {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 4.5vw, 56px) var(--gutter);
}
.press-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
}
.press-strip-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
}
.press-logo-slot {
  text-align: center;
  max-width: 220px;
}
.press-logo-slot .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.press-logo-slot .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.35;
  color: var(--ink);
  opacity: 0.82;
}
@media (max-width: 760px) {
  .press-logos { gap: 22px; }
  .press-logo-slot { max-width: 160px; }
}

/* ---------- DISHES (home page signature dishes) ---------- */
.dishes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dishes-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.dishes-header .right {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 420px;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}
.dish {
  display: flex;
  flex-direction: column;
}
.dish-image {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  margin-bottom: 24px;
  position: relative;
  border: 1px solid var(--line);
}
.dish-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
}
.dish-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.dish-name em { font-style: italic; font-weight: 400; }
.dish-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 320px;
}
.dish-price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) {
  .dishes-grid { grid-template-columns: 1fr; gap: 40px; }
  .dishes-header { grid-template-columns: 1fr; gap: 16px; }
  /* On a single-column phone layout the 4:5 portrait photo became
     full-screen-width and very tall. Use a shorter landscape ratio
     and cap the height so each dish photo stays a sensible size. */
  .dish-image { aspect-ratio: 3 / 2; max-height: 300px; margin-bottom: 18px; }
}

/* ---------- STORY SNIPPET (home page) ---------- */
.story-snippet {
  background: var(--bg-soft);
}
.story-snippet-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story-snippet .copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 28px;
}
.story-snippet .copy h2 em { font-style: italic; color: var(--accent); }
.story-snippet .copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 480px;
}
.story-snippet .copy .sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 320px;
  display: inline-block;
}
.story-snippet-image {
  aspect-ratio: 5/6;
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
}
@media (max-width: 880px) {
  .story-snippet-inner { grid-template-columns: 1fr; }
  .story-snippet-image { max-width: 480px; margin: 0 auto; }
}

/* ---------- VISIT (home page) ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(48px, 6vw, 80px);
}
.visit-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.visit-block p {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ink);
}
.visit-block p strong {
  font-weight: 500;
}
.visit-block .small {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 8px;
}
.visit-map {
  margin-top: clamp(48px, 6vw, 80px);
  aspect-ratio: 16/6;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
}
@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-map { aspect-ratio: 4/3; }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.final-cta .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  margin-bottom: 24px;
}
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0.92;
}
.final-cta .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.final-cta .btn-primary:hover { background: var(--accent); color: var(--bg); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page-hero {
  padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(24px, 3vw, 40px);
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.menu-page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.menu-page-hero h1 em { font-style: italic; color: var(--accent); }
.menu-page-hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

.menu-sections {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) var(--gutter) clamp(60px, 7vw, 120px);
}
.menu-section {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 72px) 0;
}
.menu-section:first-child { border-top: none; padding-top: 0; }
.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.menu-section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
}
.menu-section-head h2 em { font-style: italic; color: var(--accent); }
.menu-section-head .count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  opacity: 0.65;
}
.menu-section-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.menu-item-name em { font-style: italic; font-weight: 400; }
.menu-item-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
}
.menu-item-tags {
  display: inline-flex;
  gap: 6px;
  margin-top: 8px;
}
.menu-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 3px 8px;
  border-radius: 2px;
}
.menu-item-price {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .menu-item { grid-template-columns: 1fr; gap: 6px; }
  .menu-section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.menu-fine-print {
  background: var(--bg-soft);
  padding: var(--section-pad) var(--gutter);
}
.menu-fine-print-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.fine-print-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.fine-print-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .menu-fine-print-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-page-hero {
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.story-page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.story-page-hero h1 em { font-style: italic; color: var(--accent); }
.story-page-hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.story-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(48px, 6vw, 96px);
}
.story-prose p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
}
.story-prose p:first-child {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  color: var(--ink-soft);
}
.story-prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-top: 48px;
  margin-bottom: 20px;
}
.story-prose h2 em { font-style: italic; color: var(--accent); }

.pull-quote {
  background: var(--bg-soft);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.pull-quote blockquote {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: var(--ink);
}
.pull-quote blockquote em { font-style: italic; color: var(--accent); }
.pull-quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 32px;
  opacity: 0.75;
}

.story-photos {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.story-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.story-photos-grid .photo {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
}
.story-photos-grid .photo.wide {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
@media (max-width: 760px) {
  .story-photos-grid { grid-template-columns: 1fr; }
  .story-photos-grid .photo.wide { grid-column: auto; aspect-ratio: 4/5; }
}

.story-values {
  background: var(--bg-soft);
  padding: var(--section-pad) var(--gutter);
}
.story-values-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: 48px;
}
.value-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.value-card h3 em { font-style: italic; font-weight: 400; color: var(--accent); }
.value-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .story-values-grid { grid-template-columns: 1fr; gap: 28px; }
}

.story-press {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.press-logo {
  aspect-ratio: 4/2;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.65;
}
@media (max-width: 760px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ============================================================
   BOOKINGS PAGE
   ============================================================ */
.bookings-hero {
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 64px);
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.bookings-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.bookings-hero h1 em { font-style: italic; color: var(--accent); }
.bookings-hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 24px;
}
.bookings-hero .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.booking-widget-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 64px) var(--gutter) clamp(48px, 6vw, 96px);
}
.booking-widget {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
}
@media (max-width: 600px) {
  .booking-widget { aspect-ratio: 3/4; }
}

.bookings-detail {
  background: var(--bg-soft);
  padding: var(--section-pad) var(--gutter);
}
.bookings-detail-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
.bookings-detail-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.bookings-detail-inner h2 em { font-style: italic; color: var(--accent); }
.bookings-detail-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 480px;
}
@media (max-width: 760px) {
  .bookings-detail-inner { grid-template-columns: 1fr; gap: 32px; }
}

.booking-faq {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.booking-faq h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.booking-faq h2 em { font-style: italic; color: var(--accent); }
.booking-faq .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.booking-faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.booking-faq details:last-child { border-bottom: 1px solid var(--line); }
.booking-faq summary {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.booking-faq summary::-webkit-details-marker { display: none; }
.booking-faq summary::after {
  content: "+";
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.2s;
}
.booking-faq details[open] summary::after { content: "-"; }
.booking-faq details p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 680px;
}

.bookings-alt {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.bookings-alt h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
}
.bookings-alt h2 em { font-style: italic; color: var(--accent); }
.bookings-alt p {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 28px;
  opacity: 0.92;
}
.bookings-alt .alt-row {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 1.5px;
}
.bookings-alt .alt-row a {
  color: var(--bg);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.bookings-alt .alt-row a:hover { color: var(--accent); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(40px, 5vw, 56px);
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.contact-hero h1 em { font-style: italic; color: var(--accent); }
.contact-hero .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

.contact-map {
  aspect-ratio: 21/9;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  max-width: var(--content-max);
  margin: clamp(24px, 3vw, 40px) auto;
  margin-left: var(--gutter);
  margin-right: var(--gutter);
}
@media (max-width: 760px) {
  .contact-map { aspect-ratio: 4/3; }
}

.contact-grid-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.contact-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-block .big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-block a.big { transition: color 0.2s; }
.contact-block a.big:hover { color: var(--accent); }
.contact-block .small {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

.contact-form-section {
  background: var(--bg-soft);
  padding: var(--section-pad) var(--gutter);
}
.contact-form-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form-inner .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.contact-form-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.contact-form-inner h2 em { font-style: italic; color: var(--accent); }
.contact-form-inner .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .full { grid-column: span 2; }
.contact-form .field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  display: block;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 32px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  justify-self: start;
}
.contact-form button:hover { background: var(--accent); }
@media (max-width: 600px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: span 1; }
}

.press-block {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.press-block h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.press-block h2 em { font-style: italic; color: var(--accent); }
.press-block p {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.press-block .email-big {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.press-block .email-big:hover { color: var(--accent); }

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.footer {
  background: var(--bg);
  color: var(--ink);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: var(--content-max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .wordmark {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-soft);
}
.footer-bottom .built-by a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WORLD-CLASS ELEVATION LAYER (Cycle 7)
   Editorial Modern signature: "The Index."
   6 proven moves, tuned to a tasting-menu editorial system:
   - reveals (text settle + SIGNATURE page-turn clip wipe on images)
   - typographic italic ampersand monogram (oxblood)
   - TASTE ink-circle cursor accent
   - oxblood-diamond press marquee in Cormorant
   - broken-grid story snippet with giant faint edition numeral
   - inverted charcoal-on-cream editorial pause (the gallery's breath)
   - edition numerals + contents rule (Modern's own ornamental system)
   CSS-first, JS-light. Respects prefers-reduced-motion.
   ============================================================ */

/* --- Move 1: Scroll-driven entrance --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Images appear with a plain fade only — NO scale or clip-path "expand".
   The previous zoom/clip wipe caused images to grow on load and forced
   every image onto its own GPU layer, which lagged mobile scrolling. */
.reveal-image {
  opacity: 1;
  clip-path: none;
  transform: none;
  transition: none;
}
.reveal-image.in-view { opacity: 1; clip-path: none; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-image {
    opacity: 1; transform: none; clip-path: none; transition: none;
  }
}

/* --- Move 2: Typographic italic ampersand monogram --- */
.nav-brand-monogram {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}
.nav-brand-monogram .amp {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  line-height: 0.7;
  color: var(--accent);
  transform: translateY(3px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-brand-monogram:hover .amp { transform: translateY(3px) rotate(-7deg); }
.footer-brand .wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
}
.footer-brand .wordmark .amp {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  line-height: 0.7;
  color: var(--accent);
}

/* --- Move 3: TASTE ink-circle cursor accent --- */
.cursor-accent {
  position: fixed; top: 0; left: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cursor-accent.active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-accent { display: none; }
}

/* --- Move 4: Press marquee (editorial) --- */
.press-marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.press-marquee-eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 26px;
}
.press-marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 58s linear infinite;
  align-items: center;
}
.press-marquee-track > .marquee-block {
  display: inline-flex; align-items: center;
  gap: 30px; padding: 0 30px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 40px);
  color: var(--ink);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.press-marquee-track .sep {
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.press-marquee-track em {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.press-marquee:hover .press-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .press-marquee-track { animation: none; transform: translateX(0); }
}

/* --- Move 5: Broken-grid story snippet with edition numeral --- */
.story-snippet.broken-grid { overflow: hidden; }
.story-snippet.broken-grid .story-snippet-inner {
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  position: relative;
  gap: clamp(56px, 8vw, 150px);
}
.story-snippet.broken-grid .story-snippet-image {
  margin-right: calc(-1 * var(--gutter) - 24px);
  aspect-ratio: 5/6;
  position: relative;
}
.story-snippet.broken-grid .copy {
  position: relative;
  z-index: 2;
}
.story-snippet.broken-grid .copy::before {
  content: '03';
  position: absolute;
  top: -78px; left: -10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(96px, 13vw, 200px);
  line-height: 1;
  color: var(--accent);
  opacity: 0.08;
  letter-spacing: -4px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 880px) {
  .story-snippet.broken-grid .story-snippet-inner { grid-template-columns: 1fr; }
  .story-snippet.broken-grid .story-snippet-image { margin-right: 0; max-width: 480px; }
  .story-snippet.broken-grid .copy::before { top: -64px; font-size: 96px; }
}

/* --- Move 6: Editorial pause (inverted charcoal-on-cream) --- */
.editorial-pause {
  background: var(--ink);
  color: var(--bg);
  min-height: 76vh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(64px, 9vw, 128px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.editorial-pause::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 50% at 50% 50%, rgba(184, 63, 63, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.editorial-pause-inner { position: relative; z-index: 1; max-width: 920px; }
.editorial-pause blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.28;
  color: var(--bg);
  letter-spacing: 0.2px;
}
.editorial-pause blockquote em { color: var(--accent-soft); }
.editorial-pause-rule {
  display: block;
  width: 64px; height: 1px;
  background: var(--accent);
  margin: 0 auto 52px;
  opacity: 0.8;
}
.editorial-pause-rule.below { margin: 52px auto 0; }
.editorial-pause cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-soft);
  margin-top: 30px;
  opacity: 0.9;
}

/* --- Signature ornament: edition numerals on sections --- */
.section-index {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

/* ============================================================
   CYCLE 9 · INTERACTIVE SIGNATURE "THE TASTING"
   A row of silver cloches the visitor lifts to reveal each
   course. On-DNA for degustation / omakase / chef's table.
   Premium, playful, makes an operator smile. Opt-in chime only
   (Web Audio, never autoplays). Fully reduced-motion + touch
   guarded: domes render lifted and static when motion is off.
   ============================================================ */
.tasting {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.tasting-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.tasting-header .right {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 420px;
}
.tasting-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.cloche {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
/* the stage where dome sits over plate */
.cloche-stage {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 22px;
}
/* the plate that is revealed under the dome */
.cloche-plate {
  position: absolute;
  bottom: 0;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--bg) 0 52%, #efe9dc 53% 70%, #e3dccb 71% 100%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(26,26,26,0.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.82);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.cloche-plate .course-no {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
}
.cloche-plate .course-dot {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, var(--accent-soft), var(--accent) 96%);
  opacity: 0.85;
}
/* the silver cloche dome */
.cloche-dome {
  position: absolute;
  bottom: 6px;
  width: 138px; height: 96px;
  border-radius: 120px 120px 16px 16px;
  background:
    linear-gradient(105deg, #f4f4f1 0%, #cdcdc8 22%, #f6f6f3 42%, #b9b9b4 64%, #e7e7e2 82%, #c4c4be 100%);
  border: 1px solid rgba(26,26,26,0.18);
  box-shadow: inset 0 8px 16px rgba(255,255,255,0.6), inset 0 -10px 18px rgba(26,26,26,0.18), 0 16px 30px rgba(26,26,26,0.16);
  transition: transform 0.62s cubic-bezier(0.34,1.4,0.5,1), opacity 0.5s ease;
  will-change: transform;
  z-index: 2;
}
/* the dome's chrome highlight + the little knob on top */
.cloche-dome::before {
  content: "";
  position: absolute; top: 16px; left: 22px; width: 34px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  filter: blur(1px);
}
.cloche-dome::after {
  content: "";
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(180deg, #f2f2ef, #b6b6b1);
  border: 1px solid rgba(26,26,26,0.18);
  box-shadow: inset 0 2px 3px rgba(255,255,255,0.7);
}
/* steam wisps (only render while lifted + motion on) */
.cloche-steam {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 70px; pointer-events: none; opacity: 0; z-index: 1;
}
.cloche-steam i {
  position: absolute; bottom: 0; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.85); filter: blur(3px);
}
.cloche-steam i:nth-child(1) { left: 16px; }
.cloche-steam i:nth-child(2) { left: 30px; }
.cloche-steam i:nth-child(3) { left: 44px; }
/* lifted state */
.cloche.lifted .cloche-dome { transform: translateY(-118px) scale(0.96); opacity: 0; }
.cloche.lifted .cloche-plate { opacity: 1; transform: scale(1); }
.cloche.lifted .cloche-steam { opacity: 1; }
.cloche.lifted .cloche-steam i { animation: steamRise 2.4s ease-out infinite; }
.cloche.lifted .cloche-steam i:nth-child(2) { animation-delay: 0.6s; }
.cloche.lifted .cloche-steam i:nth-child(3) { animation-delay: 1.2s; }
@keyframes steamRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(-58px) scale(1.9); opacity: 0; }
}
.cloche-course-no {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 1.5px; color: var(--accent);
  margin-bottom: 8px;
}
.cloche-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.15; color: var(--ink); margin-bottom: 8px;
}
.cloche-name em { font-style: italic; font-weight: 400; }
.cloche-desc {
  font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); max-width: 240px;
}
.tasting-hint {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.7; text-align: center;
  margin-top: clamp(32px, 4vw, 52px);
}
.tasting-hint b { color: var(--accent); font-weight: 500; }
@media (hover: hover) {
  .cloche:hover .cloche-dome { transform: translateY(-10px); }
  .cloche.lifted:hover .cloche-dome { transform: translateY(-118px) scale(0.96); }
}
@media (max-width: 880px) {
  .tasting-header { grid-template-columns: 1fr; gap: 16px; }
  .tasting-row { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 460px) {
  .tasting-row { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  /* lids already off, courses on show, no motion */
  .cloche .cloche-dome { transform: translateY(-118px) scale(0.96); opacity: 0; transition: none; }
  .cloche .cloche-plate { opacity: 1; transform: scale(1); transition: none; }
  .cloche-steam, .cloche.lifted .cloche-steam i { animation: none; opacity: 0; }
}

/* --- gold shimmer + "Bon appetit" toast (easter egg: lift them all) --- */
.tasting-shimmer {
  position: fixed; inset: 0; z-index: 175; pointer-events: none; overflow: hidden;
}
.tasting-shimmer i {
  position: absolute; top: -16px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); opacity: 0.9;
}
.toast {
  position: fixed; left: 50%; top: 80px; transform: translateX(-50%) translateY(-18px);
  z-index: 210;
  font-family: var(--display); font-style: italic; font-size: 19px;
  color: var(--bg); background: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding: 12px 26px; border-radius: 2px; box-shadow: 0 14px 36px rgba(26,26,26,0.3);
  opacity: 0; pointer-events: none; transition: opacity 0.4s, transform 0.4s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) { .tasting-shimmer { display: none; } }

/* --- opt-in sound toggle (quiet editorial chip, bottom-left) --- */
.sound-toggle {
  position: fixed; left: 22px; bottom: 22px; z-index: 178;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); background: rgba(250,250,247,0.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.sound-toggle .led { width: 7px; height: 7px; border-radius: 50%; background: rgba(26,26,26,0.2); transition: background 0.2s; }
.sound-toggle:hover { border-color: var(--accent); }
.sound-toggle.on { border-color: var(--accent); color: var(--accent); }
.sound-toggle.on .led { background: var(--accent); }
@media (max-width: 600px) { .sound-toggle { left: 12px; bottom: 70px; } }

/* ============================================================
   CYCLE 9 · COMMENTARY DOCK (sales guide, demo home only)
   Plain-English scroll narration. Cream panel, oxblood hairline.
   Dismissible, reopenable, becomes a bottom sheet on phones.
   ============================================================ */
.cx {
  position: fixed; right: 22px; bottom: 22px; z-index: 180;
  width: 320px; max-width: calc(100vw - 44px);
  background: rgba(250,250,247,0.97); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-top: 2px solid var(--accent);
  box-shadow: 0 24px 60px rgba(26,26,26,0.18);
  opacity: 0; transform: translateY(16px) scale(0.98); pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.cx.show { opacity: 1; transform: none; pointer-events: auto; }
.cx.cx-hidden { display: none; }
.cx-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.cx-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.cx-close { background: none; border: 0; color: var(--ink-soft); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 2px; transition: color 0.2s; }
.cx-close:hover { color: var(--accent); }
.cx-body { padding: 18px 16px 8px; transition: opacity 0.17s; }
.cx.swapping .cx-body { opacity: 0; }
.cx-feel { font-family: var(--display); font-size: 24px; line-height: 1.15; color: var(--ink); margin-bottom: 8px; }
.cx-feel em { font-style: italic; color: var(--accent); }
.cx-text { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cx-dots { display: flex; gap: 6px; padding: 8px 16px 16px; flex-wrap: wrap; }
.cx-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(26,26,26,0.16); transition: background 0.25s; }
.cx-dots span.on { background: var(--accent); }
.cx-reopen {
  position: fixed; right: 22px; bottom: 22px; z-index: 180;
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); background: var(--ink); border: 0; border-bottom: 2px solid var(--accent);
  padding: 12px 18px; cursor: pointer;
  opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 0.4s, transform 0.4s;
}
.cx-reopen.show { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 600px) {
  .cx { left: 12px; right: 12px; width: auto; bottom: 12px; }
  .cx-reopen { left: 12px; right: auto; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .cx, .cx-reopen { transition: none; }
}

/* ============================================================
   CYCLE 9 · FIND US MAP (contact page)
   Editorial inline-SVG map mockup: cream ground, charcoal
   hairline streets, a park, an oxblood route + pin. A 1:1 swap
   for a Google Maps embed at onboarding (same box reserved).
   ============================================================ */
.contact-map .map-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.contact-map .map-pin-label {
  position: absolute; z-index: 3; top: 20%; left: 55%;
  font-family: var(--display); font-style: italic; font-size: 18px;
  color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-bottom: 2px solid var(--accent);
  padding: 6px 13px; box-shadow: 0 6px 16px rgba(26,26,26,0.12);
  white-space: nowrap;
}
.contact-map .map-dir {
  position: absolute; z-index: 3; left: 18px; bottom: 18px;
  font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); background: var(--ink);
  padding: 11px 18px; display: inline-flex; gap: 9px; align-items: center;
  transition: background 0.2s;
}
.contact-map .map-dir:hover { background: var(--accent); }
.map-pulse { transform-box: fill-box; transform-origin: center; animation: mapPulse 2.6s ease-out infinite; }
@keyframes mapPulse { 0% { transform: scale(1); opacity: 0.85; } 70% { transform: scale(3.6); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .map-pulse { animation: none; opacity: 0; } }

/* home visit-map "see the map" reinforcement link */
.visit-map-link {
  display: inline-block; margin-top: 18px;
  font-family: var(--display); font-style: italic; font-size: 20px;
  color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 3px;
}
.visit-map-link:hover { color: var(--accent); }

/* ============================================================
   FORKCAST BUY BAND · demo sales chrome (Cycle 9)
   Tasteful bottom CTA to buy this skin, with an attention sheen
   + pulse. Sits above the footer, never blocks content. Guarded.
   ============================================================ */
.fc-buy { background: var(--ink); 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(--bg); }
.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); font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 30px; border-radius: 0; box-shadow: 0 0 0 0 rgba(184, 63, 63, 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(184, 63, 63, 0.45); } 50% { box-shadow: 0 0 26px 4px rgba(184, 63, 63, 0.5); } }
@keyframes fcBuySheen { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.fc-buy-back { font-family: var(--mono); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(250, 250, 247, 0.6); 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; } }

/* ============================================================
   TITAN VIETNAMESE · Hội An warm overrides + immersive components
   ============================================================ */
:root{
  --accent:#C0392B;          /* lantern red */
  --accent-soft:#EAD7CF;
  --bg-soft:#F4ECDD;         /* warm ochre cream */
  --gold:#C99A3A;
}
/* logo in nav + footer */
.nav-brand{ display:flex; align-items:center; gap:12px; letter-spacing:3px; }
.nav-brand img{ height:46px; width:auto; display:block; }
.nav-brand-thin{ font-weight:300; letter-spacing:2px; opacity:.8; }
.footer-brand .wordmark img{ height:64px; width:auto; margin-bottom:14px; display:block; }
.hero-image img, .dish-image img, .story-snippet-image img{ width:100%; height:100%; object-fit:cover; }

/* full-bleed heritage band */
.heritage-band{
  position:relative; width:100%;
  min-height:clamp(380px,58vw,640px);
  display:flex; align-items:center; justify-content:center;
  text-align:center; color:#fff; overflow:hidden;
  background-size:cover; background-position:center;
}
.heritage-band::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,12,8,.30), rgba(20,12,8,.62));
}
.heritage-band .hb-inner{ position:relative; z-index:2; max-width:780px; padding:clamp(48px,8vw,120px) var(--gutter); }
.heritage-band .hb-eyebrow{
  font-family:var(--mono); font-size:12px; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold); margin-bottom:18px;
}
.heritage-band h2{
  font-family:var(--display); font-weight:500;
  font-size:clamp(32px,5vw,60px); line-height:1.08; color:#fff; margin-bottom:18px;
}
.heritage-band h2 em{ font-style:italic; color:#fff; }
.heritage-band p{ font-size:clamp(16px,1.6vw,20px); color:rgba(255,255,255,.9); font-weight:300; max-width:600px; margin:0 auto; }

/* immersive food gallery strip */
.taste-gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:6px; }
.taste-gallery a{ display:block; position:relative; overflow:hidden; }
.taste-gallery img{ width:100%; aspect-ratio:4/5; object-fit:cover; }
/* Zoom-on-hover only on devices with a real pointer (desktop).
   On touch screens :hover sticks after a tap, which made gallery
   images scale up and stay expanded — disabled here for mobile. */
@media (hover: hover) and (pointer: fine){
  .taste-gallery img{ transition:transform .6s ease; }
  .taste-gallery a:hover img{ transform:scale(1.05); }
}
.taste-gallery .tg-cap{
  position:absolute; left:0; right:0; bottom:0; padding:14px 16px;
  background:linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  color:#fff; font-family:var(--display); font-size:18px; font-style:italic;
}
@media(max-width:760px){ .taste-gallery{ grid-template-columns:repeat(2,1fr); } }

/* story journey (alternating image + caption) */
.journey{ display:grid; gap:6px; grid-template-columns:repeat(2,1fr); }
.journey figure{ position:relative; overflow:hidden; margin:0; }
.journey img{ width:100%; height:100%; aspect-ratio:1/1; object-fit:cover; }
.journey figure.wide{ grid-column:1 / -1; }
.journey figure.wide img{ aspect-ratio:21/9; }
.journey figcaption{
  position:absolute; left:0; bottom:0; padding:16px 20px;
  background:linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  color:#fff; font-family:var(--display); font-style:italic; font-size:20px;
}
@media(max-width:760px){ .journey{ grid-template-columns:1fr; } }

/* ============================================================
   TITAN · mobile navigation + polish (keep full nav on phones)
   ============================================================ */
@media (max-width: 880px){
  .nav-inner{ flex-wrap:wrap; row-gap:12px; padding-top:14px; padding-bottom:14px; }
  .nav-brand{ order:1; }
  .nav-brand img{ height:38px; }
  .nav-cta{ order:2; margin-left:auto; }
  .nav-links{ display:flex !important; order:3; width:100%; justify-content:center;
    gap:6px 20px; flex-wrap:wrap; font-size:12px; letter-spacing:1px;
    border-top:1px solid var(--line); padding-top:12px; }
}
@media (max-width: 460px){
  .nav-brand span{ font-size:17px; letter-spacing:1.5px; }
  .nav-cta{ font-size:11px; }
  .heritage-band{ min-height:clamp(320px,80vw,440px); }
  .heritage-band h2{ font-size:clamp(26px,7vw,36px); }
}
/* keep food gallery captions readable on small screens */
@media (max-width: 760px){
  .taste-gallery .tg-cap{ font-size:15px; padding:10px 12px; }
  .journey figcaption{ font-size:17px; }
}

/* ============================================================
   TITAN · ensure images always render (reveal was hiding hero)
   The scroll fade-in is a nice-to-have; visibility is not optional.
   ============================================================ */
.reveal-image{ opacity:1 !important; clip-path:none !important; transform:none !important; }
.hero-image img{ display:block; width:100%; height:100%; object-fit:cover; }

/* ============================================================
   TITAN · lift the hero (less dead space at the top / brow)
   ============================================================ */
.hero{ padding-top:clamp(16px,2.5vw,40px) !important; }
.hero-eyebrow{ margin-top:0; }

/* ============================================================
   TITAN · full-bleed hero (image background, text on dark left)
   ============================================================ */
.hero.hero-full{
  position:relative; max-width:none; width:100%; margin:0;
  padding:0 !important;
  min-height:clamp(540px,84vh,860px);
  background-size:cover; background-position:center right;
  display:flex; align-items:center; overflow:hidden;
}
.hero-full::before{ content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, rgba(14,9,6,.90) 0%, rgba(14,9,6,.70) 34%, rgba(14,9,6,.18) 60%, rgba(14,9,6,0) 86%); }
.hero-full .hero-full-inner{ position:relative; z-index:2; width:100%;
  max-width:var(--content-max); margin:0 auto; padding:clamp(40px,7vw,96px) var(--gutter); }
.hero-full .hero-eyebrow{ color:var(--gold); }
.hero-full h1{ color:#fff; max-width:15ch; }
.hero-full h1 em{ color:#E2674B; }
.hero-full .hero-sub{ color:rgba(255,255,255,.90); max-width:42ch; }
.hero-full .hero-meta{ color:rgba(255,255,255,.82); }
.hero-full .hero-meta span:not(:last-child)::after{ color:rgba(255,255,255,.4); }
.hero-full .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.55); }
.hero-full .btn-ghost:hover{ background:rgba(255,255,255,.12); }
@media (max-width:760px){
  .hero.hero-full{ min-height:clamp(460px,82vh,640px); background-position:center; }
  .hero-full::before{ background:linear-gradient(180deg, rgba(14,9,6,.82) 0%, rgba(14,9,6,.62) 45%, rgba(14,9,6,.72) 100%); }
  .hero-full h1{ max-width:100%; }
}

/* ============================================================
   TITAN · bigger logos (nav + large footer logo)
   ============================================================ */
.nav-brand img{ height:60px !important; }
@media (max-width:880px){ .nav-brand img{ height:48px !important; } }
.footer-brand .wordmark img{ height:auto !important; width:100%; max-width:260px; }

/* ============================================================
   TITAN · reviews / social proof
   ============================================================ */
.reviews-stat{ text-align:center; }
.big-rating{ font-family:var(--display); font-size:clamp(56px,10vw,104px); color:var(--accent); line-height:1; }
.stars{ color:var(--gold); letter-spacing:4px; }
.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:clamp(32px,5vw,56px); }
.review-card{ background:var(--bg); border:1px solid var(--line); border-radius:6px; padding:clamp(22px,3vw,32px); }
.review-card .stars{ font-size:15px; display:block; margin-bottom:14px; }
.review-card blockquote{ font-family:var(--display); font-style:italic; font-size:clamp(18px,2vw,22px); line-height:1.42; color:var(--ink); margin-bottom:16px; }
.review-card .who{ font-family:var(--mono); font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--ink-soft); }
@media(max-width:760px){ .reviews-grid{ grid-template-columns:1fr; } }
