/* ============================================================
   FORKCAST DEMO · 01b · THE EDITORIAL · HERITAGE
   Shared stylesheet for all 5 pages of this skin.

   Palette: sandstone, oxblood, brass. Old-money prestige.
   Type: Playfair Display, Lora body, JetBrains mono.
   Pattern: full-bleed image-led hero. Cinematic pacing.
   ============================================================ */

:root {
  --bg: #E8DCC7;
  --bg-soft: #F1E5D0;
  --bg-cream: #F8F0E0;
  --bg-dark: #1F1812;
  --ink: #2A1F18;
  --ink-soft: #5A4A3D;
  --accent: #6B1E1A;
  --accent-light: #8B3530;
  --brass: #B08D4F;
  --brass-soft: #C9A878;
  --line: rgba(42, 31, 24, 0.15);
  --line-strong: rgba(42, 31, 24, 0.3);

  --display: 'Playfair Display', Georgia, serif;
  --body: 'Lora', Georgia, serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --gutter: clamp(24px, 5vw, 96px);
  --content-max: 1320px;
  --section-pad: clamp(80px, 10vw, 180px);
}

* { 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.65;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent); }

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  background: var(--bg-dark);
  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(--brass); font-weight: 500; }
.demo-banner a {
  color: var(--bg);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  margin-left: 8px;
}
.demo-banner a:hover { color: var(--brass); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(232, 220, 199, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav.on-dark {
  background: rgba(31, 24, 18, 0.92);
  border-bottom-color: rgba(176, 141, 79, 0.25);
}
.nav.on-dark .nav-brand,
.nav.on-dark .nav-links a,
.nav.on-dark .nav-cta { color: var(--bg); }
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--ink);
  position: relative;
  padding: 2px 0;
}
.nav-brand::before, .nav-brand::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}
.nav-brand::before { top: -4px; }
.nav-brand::after { bottom: -4px; }
.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.75; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }
.nav.on-dark .nav-links a.active { color: var(--brass); }
.nav-cta {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  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.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.breadcrumb a { padding-bottom: 1px; border-bottom: 1px solid transparent; transition: border 0.2s; }
.breadcrumb a:hover { border-bottom-color: var(--brass); color: var(--accent); }
.breadcrumb .sep { padding: 0 12px; opacity: 0.55; }

/* ============================================================
   FULL-BLEED HERO · the signature pattern of Editorial Heritage
   ============================================================ */
.hero-bleed {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--bg);
}
.hero-bleed-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4A2820 0%, #1F1812 60%, #2A1F18 100%);
  z-index: 1;
}
/* Image-slot caption: top-right corner badge only. Quiet, off-axis. */
.hero-bleed-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 40px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.45;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.hero-bleed-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
/* Art-direction prose hidden on hero so headline owns the page. Lives in HTML for client onboarding reference. */
.hero-bleed-image .image-placeholder .intent { display: none; }

/* Vignette: lighter at top (corner label reads), darkest at bottom (headline+sub legibility). */
.hero-bleed-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,24,18,0.42) 0%, rgba(31,24,18,0.38) 25%, rgba(31,24,18,0.6) 55%, rgba(31,24,18,0.88) 80%, rgba(31,24,18,0.96) 100%);
  z-index: 2;
}
.hero-bleed-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(96px, 14vh, 200px) var(--gutter) clamp(72px, 10vh, 128px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bleed-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-bleed-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}
/* Headline: clamp tuned so the line lives in lower-third, never overflows fold, never competes with the photo */
.hero-bleed h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  color: var(--bg);
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-bleed h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-soft);
}
.hero-bleed-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--bg);
  opacity: 0.94;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-bleed-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.85;
}
.hero-bleed-meta span::before { content: "·"; margin-right: 24px; color: var(--brass); }
.hero-bleed-meta span:first-child::before { content: ""; margin: 0; }
.hero-bleed-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--brass);
  color: var(--bg-dark);
  padding: 22px 38px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  border: none;
  position: relative;
}
.btn-primary:hover { background: var(--accent); color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--bg);
  padding: 22px 38px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid var(--brass);
}
.btn-outline:hover { background: var(--brass); color: var(--bg-dark); }

.btn-ghost {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--bg);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--brass); }

.on-light .btn-primary { background: var(--accent); color: var(--bg-cream); }
.on-light .btn-primary:hover { background: var(--ink); }
.on-light .btn-ghost { color: var(--ink); border-bottom-color: var(--accent); }
.on-light .btn-ghost:hover { color: var(--accent); }

/* ---------- 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: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.section-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  color: var(--ink);
  position: relative;
}
.section-heading em { font-style: italic; color: var(--accent); }
.section-heading-rule {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brass);
  position: relative;
}
.section-heading-rule::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
  opacity: 0.4;
}
.section-lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ============================================================
   PRESS STRIP (home page, immediately under the hero)
   Per sales-engine canon: trust signals must land within the first
   scroll. Placeholder credentials slots for the operator's hats,
   guide listings, awards, press quotes. Sandstone + brass rules.
   ============================================================ */
.press-strip {
  background: var(--bg);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
  position: relative;
}
.press-strip::before, .press-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
  opacity: 0.4;
}
.press-strip::before { top: 3px; }
.press-strip::after { bottom: 3px; }
.press-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 44px);
}
.press-strip-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  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(36px, 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: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.press-logo-slot .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.35;
  color: var(--ink);
  opacity: 0.85;
}
@media (max-width: 760px) {
  .press-logos { gap: 24px; }
  .press-logo-slot { max-width: 160px; }
}

/* ============================================================
   TONIGHT'S TASTING (home page, follows hero + press strip)
   Three featured courses, image-led, sandstone background.
   ============================================================ */
.tasting {
  background: var(--bg);
}
.tasting-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.tasting-header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.tasting-header .section-eyebrow { justify-content: center; }
.tasting-header .section-eyebrow::before {
  background: var(--brass);
}
.tasting-header .section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.tasting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px);
}
.course-card {
  display: flex;
  flex-direction: column;
}
.course-image {
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--brass);
}
.course-image .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  gap: 12px;
}
.course-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.course-image .image-placeholder .intent {
  max-width: 280px;
  line-height: 1.6;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}
.course-roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.course-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.course-name em { font-style: italic; font-weight: 400; color: var(--accent); }
.course-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 340px;
}
.course-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--brass);
  opacity: 0.85;
}
@media (max-width: 880px) {
  .tasting-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   THE ROOM (home page, image-led wide section)
   Full-width photo with caption overlay at bottom.
   ============================================================ */
.room-feature {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.room-feature-image {
  position: relative;
  aspect-ratio: 21/9;
  background: linear-gradient(160deg, #3D2A20 0%, #1F1812 100%);
}
/* Same corner-badge pattern. Caption overlay below owns the text. */
.room-feature-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.45;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.room-feature-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.room-feature-image .image-placeholder .intent { display: none; }
/* Vignette pinned to bottom so caption stays legible */
.room-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,24,18,0.25) 0%, rgba(31,24,18,0.4) 50%, rgba(31,24,18,0.85) 100%);
  z-index: 2;
}
.room-feature-caption {
  position: absolute;
  bottom: clamp(32px, 5vw, 80px);
  left: clamp(32px, 5vw, 96px);
  right: clamp(32px, 5vw, 96px);
  color: var(--bg);
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 96px);
}
.room-feature-caption h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  max-width: 540px;
}
.room-feature-caption h2 em { font-style: italic; color: var(--brass-soft); }
.room-feature-caption p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 420px;
  opacity: 0.92;
}
@media (max-width: 880px) {
  .room-feature-image { aspect-ratio: 4/5; }
  .room-feature-caption { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   THE STORY (home page snippet, two columns)
   ============================================================ */
.story-snippet {
  background: var(--bg);
}
.story-snippet-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.story-snippet-image {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  position: relative;
  border: 1px solid var(--brass);
}
.story-snippet-image .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  gap: 12px;
}
.story-snippet-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.story-snippet-image .image-placeholder .intent {
  max-width: 300px;
  line-height: 1.6;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.story-snippet .copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brass);
}
.story-snippet .copy h2 em { font-style: italic; color: var(--accent); }
.story-snippet .copy p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 500px;
}
.story-snippet .copy .sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}
.story-snippet .copy .sig:hover { color: var(--accent); }
@media (max-width: 880px) {
  .story-snippet-inner { grid-template-columns: 1fr; }
  .story-snippet-image { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   FINAL CTA (reservation prompt before footer)
   ============================================================ */
.final-cta {
  background: var(--bg-dark);
  color: var(--bg);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 12vw, 200px);
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}
.final-cta::before { top: clamp(32px, 5vw, 64px); }
.final-cta::after { bottom: clamp(32px, 5vw, 64px); }
.final-cta .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 32px;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  margin-bottom: 28px;
}
.final-cta h2 em { font-style: italic; color: var(--brass-soft); }
.final-cta p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0.92;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  background: var(--bg-dark);
  overflow: hidden;
  color: var(--bg);
  display: flex;
  flex-direction: column;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D2820 0%, #1F1812 100%);
  z-index: 1;
}
/* Same corner-badge pattern as hero-bleed. Label visible, prose hidden, vignette deep at bottom. */
.page-hero-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.45;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.page-hero-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.page-hero-image .image-placeholder .intent { display: none; }
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,24,18,0.4) 0%, rgba(31,24,18,0.4) 30%, rgba(31,24,18,0.65) 60%, rgba(31,24,18,0.92) 100%);
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(64px, 10vh, 128px) var(--gutter) clamp(48px, 7vh, 80px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.3px;
  color: var(--bg);
  margin-bottom: 24px;
  max-width: 720px;
}
.page-hero h1 em { font-style: italic; color: var(--brass-soft); }
.page-hero-lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--bg);
  opacity: 0.94;
  max-width: 560px;
}

.menu-canvas {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter) clamp(72px, 9vw, 140px);
}
.menu-course {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--brass);
  position: relative;
}
.menu-course::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
  opacity: 0.4;
}
.menu-course:first-child { border-top: none; padding-top: 0; }
.menu-course:first-child::after { display: none; }
.menu-course-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.menu-course-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.5px;
}
.menu-course-head h2 em { font-style: italic; color: var(--accent); }
.menu-course-head .roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--brass);
  letter-spacing: 2px;
}
.menu-course-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.5;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 26px 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(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.menu-item-name em { font-style: italic; font-weight: 400; color: var(--accent); }
.menu-item-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  font-style: italic;
  font-family: var(--display);
}
.menu-item-tags {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
}
.menu-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--brass);
  text-transform: uppercase;
  border: 1px solid var(--brass);
  padding: 4px 10px;
}
.menu-item-price {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .menu-item { grid-template-columns: 1fr; gap: 8px; }
}

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

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(48px, 6vw, 96px);
}
.story-prose p {
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 32px;
}
.story-prose p:first-of-type {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
  color: var(--ink-soft);
}
.story-prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brass);
}
.story-prose h2 em { font-style: italic; color: var(--accent); }

.pull-quote {
  background: var(--bg-dark);
  color: var(--bg);
  padding: clamp(72px, 9vw, 128px) var(--gutter);
  text-align: center;
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 12vw, 200px);
  height: 1px;
  background: var(--brass);
}
.pull-quote::before { top: clamp(40px, 5vw, 72px); opacity: 0.4; }
.pull-quote::after { bottom: clamp(40px, 5vw, 72px); opacity: 0.4; }
.pull-quote blockquote {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
}
.pull-quote blockquote em { color: var(--brass-soft); }
.pull-quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-top: 40px;
  opacity: 0.85;
}

.story-photos {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.story-photos-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.story-photos-header .section-eyebrow { justify-content: center; }
.story-photos-header .section-eyebrow::before { background: var(--brass); }
.story-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
.story-photo {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  position: relative;
  border: 1px solid var(--brass);
}
.story-photo.tall { grid-row: span 2; aspect-ratio: 4/6; }
.story-photo .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  gap: 12px;
}
.story-photo .image-placeholder .label { color: var(--accent); font-weight: 500; }
.story-photo .image-placeholder .intent {
  max-width: 300px;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .story-photos-grid { grid-template-columns: 1fr; }
  .story-photo.tall { grid-row: auto; aspect-ratio: 4/5; }
}

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

/* ============================================================
   BOOKINGS PAGE
   ============================================================ */
.booking-canvas {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter);
}
.booking-widget {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  border: 1px solid var(--brass);
  position: relative;
}
.booking-widget .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
  gap: 12px;
}
.booking-widget .image-placeholder .label { color: var(--accent); font-weight: 500; }
.booking-widget .image-placeholder .intent {
  max-width: 380px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .booking-widget { aspect-ratio: 3/4; }
}

.bookings-split {
  background: var(--bg-soft);
  padding: var(--section-pad) var(--gutter);
}
.bookings-split-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
}
.bookings-split-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brass);
}
.bookings-split-inner h2 em { font-style: italic; color: var(--accent); }
.bookings-split-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 480px;
}
@media (max-width: 760px) {
  .bookings-split-inner { grid-template-columns: 1fr; gap: 40px; }
}

.private-dining {
  position: relative;
  background: var(--bg-dark);
  color: var(--bg);
  overflow: hidden;
}
.private-dining-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D2A20 0%, #1F1812 100%);
  z-index: 1;
}
/* Same corner-badge pattern */
.private-dining-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.45;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.private-dining-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.private-dining-image .image-placeholder .intent { display: none; }
.private-dining-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,24,18,0.55) 0%, rgba(31,24,18,0.45) 100%);
  z-index: 2;
}
.private-dining-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
.private-dining-content .copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.private-dining-content .copy h2 em { font-style: italic; color: var(--brass-soft); }
.private-dining-content .copy p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  margin-bottom: 32px;
  opacity: 0.92;
  max-width: 480px;
}
@media (max-width: 880px) {
  .private-dining-content { grid-template-columns: 1fr; }
}

.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(40px, 5vw, 60px);
  line-height: 1;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brass);
}
.booking-faq h2 em { font-style: italic; color: var(--accent); }
.booking-faq .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.booking-faq details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.booking-faq details:last-child { border-bottom-color: var(--brass); }
.booking-faq summary {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  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: 28px;
  color: var(--brass);
  transition: transform 0.2s;
  font-weight: 400;
}
.booking-faq details[open] summary::after { content: "-"; }
.booking-faq details p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-map {
  aspect-ratio: 21/9;
  background: var(--bg-soft);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  position: relative;
  margin-bottom: 0;
}
.contact-map .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
  gap: 12px;
}
.contact-map .image-placeholder .label { color: var(--accent); font-weight: 500; }
.contact-map .image-placeholder .intent {
  max-width: 460px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
}
@media (max-width: 760px) { .contact-map { aspect-ratio: 4/3; } }

.contact-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px);
}
.contact-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brass);
}
.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: 12px;
}
.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.7;
  color: var(--ink-soft);
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.press-block {
  background: var(--bg-soft);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.press-block h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.press-block h2 em { font-style: italic; color: var(--accent); }
.press-block p {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.press-block .email-big {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.press-block .email-big:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 88px var(--gutter) 36px;
  border-top: 4px solid var(--brass);
}
.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: 56px;
  border-bottom: 1px solid rgba(176, 141, 79, 0.3);
}
.footer-brand .wordmark {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 16px;
  padding: 4px 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  display: inline-block;
}
.footer-brand p {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--brass-soft);
  max-width: 300px;
  opacity: 0.9;
  margin-top: 16px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  line-height: 1.9;
  color: var(--bg);
  opacity: 0.82;
}
.footer-col a:hover { opacity: 1; color: var(--brass); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--bg);
  opacity: 0.6;
}
.footer-bottom .built-by a {
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.footer-bottom .built-by a:hover { color: var(--bg); }
@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 Heritage signature: "The Engraving."
   6 proven moves, tuned to a brass etched-glass heritage system:
   - reveals (slower cadence) + gentle image settle
   - SIGNATURE self-drawing brass underline beneath headings
   - SIGNATURE gold-leaf shimmer sweep across display headlines
   - brass etched-plate monogram (engraved nameplate SVG)
   - RESERVE brass-circle cursor accent
   - Playfair press marquee with brass diamonds
   - broken-grid story snippet with giant faint brass ampersand
   - candlelit brass-on-dark editorial pause + brass hallmark seal
   CSS-first, JS-light. Respects prefers-reduced-motion.
   ============================================================ */

/* --- Move 1: Scroll-driven entrance (slower, occasion cadence) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.15s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-image {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-image.in-view { opacity: 1; transform: scale(1); }

/* SIGNATURE: brass underline that draws itself left to right on reveal */
.brass-rule {
  display: block;
  width: clamp(72px, 9vw, 120px);
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  margin: 18px 0 4px;
}
.brass-rule.in-view { transform: scaleX(1); }
.brass-rule.center { margin-left: auto; margin-right: auto; transform-origin: center; }

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

/* SIGNATURE: gold-leaf shimmer sweep across display headlines */
.gold-leaf {
  background: linear-gradient(100deg,
    var(--bg) 0%, var(--bg) 42%,
    var(--brass-soft) 50%,
    var(--bg) 58%, var(--bg) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gold-sweep 7s ease-in-out infinite;
}
.gold-leaf em { -webkit-text-fill-color: var(--brass-soft); color: var(--brass-soft); }
/* dark-on-light variant for subpage heroes (ink base, brass highlight) */
.gold-leaf-dark {
  background: linear-gradient(100deg,
    var(--ink) 0%, var(--ink) 42%,
    var(--brass) 50%,
    var(--ink) 58%, var(--ink) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gold-sweep 7s ease-in-out infinite;
}
.gold-leaf-dark em { -webkit-text-fill-color: var(--accent); color: var(--accent); }
@keyframes gold-sweep {
  0%, 100% { background-position: 160% 0; }
  50% { background-position: -60% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-leaf { animation: none; -webkit-text-fill-color: var(--bg); color: var(--bg); }
  .gold-leaf-dark { animation: none; -webkit-text-fill-color: var(--ink); color: var(--ink); }
}

/* --- Move 2: Brass etched-plate monogram --- */
.nav-brand-monogram {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-brand-monogram svg {
  width: 30px; height: 24px;
  display: block; flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-brand-monogram:hover svg { transform: translateY(-2px); }
.nav-brand-monogram svg rect,
.nav-brand-monogram svg line,
.nav-brand-monogram svg path { stroke: var(--brass); fill: none; }
.nav.on-dark .nav-brand-monogram svg rect,
.nav.on-dark .nav-brand-monogram svg line,
.nav.on-dark .nav-brand-monogram svg path { stroke: var(--brass-soft); }

.footer-brand .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .wordmark svg {
  width: 34px; height: 27px;
  display: block; flex-shrink: 0;
}
.footer-brand .wordmark svg rect,
.footer-brand .wordmark svg line,
.footer-brand .wordmark svg path { stroke: var(--brass); fill: none; }

/* --- Move 3: RESERVE brass-circle cursor accent --- */
.cursor-accent {
  position: fixed; top: 0; left: 0;
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--bg-dark);
  font-family: var(--mono);
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 1.4px; 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.2, 0.8, 0.2, 1),
              transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 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 (heritage) --- */
.press-marquee {
  background: var(--bg-soft);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  padding: 38px 0;
  overflow: hidden;
  position: relative;
}
.press-marquee::before, .press-marquee::after {
  content: ''; position: absolute; left: 0; right: 0;
  height: 1px; background: var(--brass); opacity: 0.4;
}
.press-marquee::before { top: 4px; }
.press-marquee::after { bottom: 4px; }
.press-marquee-eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 24px;
}
.press-marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 60s 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(--brass);
  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 faint brass ampersand --- */
.story-snippet.broken-grid { overflow: hidden; }
.story-snippet.broken-grid .story-snippet-inner {
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  position: relative;
  gap: clamp(56px, 8vw, 150px);
}
.story-snippet.broken-grid .story-snippet-image {
  margin-left: 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: '&';
  position: absolute;
  top: -96px; right: -10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(140px, 18vw, 280px);
  line-height: 1;
  color: var(--brass);
  opacity: 0.12;
  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-left: 0; max-width: 480px; }
  .story-snippet.broken-grid .copy::before { top: -80px; font-size: 130px; }
}

/* --- Move 6: Editorial pause (candlelit brass-on-dark) + hallmark seal --- */
.editorial-pause {
  background: var(--bg-dark);
  color: var(--brass-soft);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(64px, 9vw, 132px) 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% 45%, rgba(176, 141, 79, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.editorial-pause-inner { position: relative; z-index: 1; max-width: 940px; }
.editorial-pause blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.3;
  color: var(--brass-soft);
  letter-spacing: 0.2px;
}
.editorial-pause blockquote em { color: var(--bg); font-style: italic; }
.editorial-pause-rule {
  display: block;
  width: 70px; height: 1px;
  background: var(--brass);
  margin: 0 auto 52px;
  opacity: 0.6;
}
.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(--brass);
  margin-top: 30px;
  opacity: 0.85;
}
/* SIGNATURE: brass hallmark seal (the engraving's stamp) */
.hallmark-seal {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  margin: 0 auto 44px;
  position: relative;
  color: var(--brass-soft);
}
.hallmark-seal::before {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  opacity: 0.4;
}
.hallmark-seal .est {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brass);
}
.hallmark-seal .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--brass-soft);
  line-height: 1;
}
.hallmark-seal .star { color: var(--brass); font-size: 10px; }

/* ============================================================
   CYCLE 9 · INTERACTIVE SIGNATURE "THE HALLMARK"
   A brass press-seal the visitor presses to stamp their
   reservation card in oxblood wax. On-DNA for a legacy room
   (sealing a letter, the house crest). Premium, ceremonial,
   and it earns a smile. Opt-in stamp sound (Web Audio, never
   autoplays). Reduced-motion renders the card pre-stamped.
   ============================================================ */
.hallmark {
  background: var(--bg-dark);
  color: var(--bg);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
}
.hallmark::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(176,141,79,0.16) 0%, transparent 70%);
}
.hallmark-inner {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hallmark-copy .section-eyebrow { color: var(--brass); }
.hallmark-copy h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  color: var(--bg);
  margin: 10px 0 18px;
}
.hallmark-copy h2 em { font-style: italic; color: var(--brass-soft); }
.hallmark-copy p {
  font-size: 16px; line-height: 1.7; color: rgba(248,240,224,0.78); max-width: 40ch; margin-bottom: 14px;
}
.hallmark-hint {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brass); opacity: 0.85;
}
/* the press-seal + the reservation card share a stage */
.hallmark-stage {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 26px;
}
/* the reservation card the seal stamps */
.reservation-card {
  position: relative; width: 100%; max-width: 340px;
  background: var(--bg-cream); color: var(--ink);
  border: 1px solid var(--brass); border-radius: 3px;
  padding: 30px 28px 34px; text-align: center;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}
.reservation-card .rc-rule { width: 40px; height: 1px; background: var(--brass); margin: 0 auto 16px; }
.reservation-card .rc-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-soft); }
.reservation-card .rc-line { font-family: var(--display); font-style: italic; font-size: 21px; color: var(--ink); margin: 8px 0 4px; }
.reservation-card .rc-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); }
/* the wax stamp impression that lands on the card */
.reservation-card .wax {
  position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%) scale(0) rotate(-12deg);
  width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, var(--accent-light), var(--accent) 70%, #4a1411 100%);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4), inset 0 2px 6px rgba(255,255,255,0.18), inset 0 -4px 8px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: none;
}
/* irregular wax edge */
.reservation-card .wax::before {
  content: ''; position: absolute; inset: -5px; border-radius: 47% 53% 50% 50% / 52% 48% 52% 48%;
  background: inherit; z-index: -1; filter: blur(0.3px);
}
.reservation-card .wax .crest {
  font-family: var(--display); font-style: italic; font-size: 11px; letter-spacing: 1px;
  color: var(--brass-soft); text-align: center; line-height: 1.1; text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}
.reservation-card.stamped .wax {
  opacity: 1; transform: translateX(-50%) scale(1) rotate(-7deg);
  animation: waxLand 0.42s cubic-bezier(0.34,1.5,0.5,1);
}
@keyframes waxLand {
  0% { transform: translateX(-50%) scale(1.7) rotate(-7deg); opacity: 0.4; }
  60% { transform: translateX(-50%) scale(0.92) rotate(-7deg); opacity: 1; }
  100% { transform: translateX(-50%) scale(1) rotate(-7deg); opacity: 1; }
}
/* the brass press-seal (the thing you press) */
.press-seal {
  position: relative; width: 124px; height: 124px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background:
    radial-gradient(circle at 38% 32%, #E4C98A 0%, var(--brass-soft) 30%, var(--brass) 62%, #8a6c34 100%);
  box-shadow: 0 16px 30px rgba(0,0,0,0.45), inset 0 2px 5px rgba(255,255,255,0.5), inset 0 -6px 12px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.18s cubic-bezier(0.34,1.4,0.5,1), box-shadow 0.18s;
  will-change: transform;
}
.press-seal::before {
  content: ''; position: absolute; inset: 11px; border-radius: 50%;
  border: 1px solid rgba(42,31,24,0.4);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.12);
}
.press-seal .seal-face {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  color: #5a4420; text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.press-seal .seal-face .est { font-family: var(--mono); font-size: 8px; letter-spacing: 2px; }
.press-seal .seal-face .star { font-size: 20px; line-height: 1; }
.press-seal .seal-face .yr { font-family: var(--display); font-style: italic; font-size: 12px; }
@media (hover: hover) { .press-seal:hover { transform: translateY(-6px); box-shadow: 0 22px 38px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.5), inset 0 -6px 12px rgba(0,0,0,0.35); } }
.press-seal.pressing { transform: translateY(4px) scale(0.96); box-shadow: 0 6px 14px rgba(0,0,0,0.45), inset 0 2px 5px rgba(255,255,255,0.45), inset 0 -4px 9px rgba(0,0,0,0.4); }
/* brass shimmer ring on press */
.seal-ring {
  position: absolute; left: 50%; top: 50%; width: 124px; height: 124px;
  border: 2px solid var(--brass-soft); border-radius: 50%;
  transform: translate(-50%,-50%) scale(1); opacity: 0; pointer-events: none;
}
.seal-ring.go { animation: sealRing 0.6s ease-out; }
@keyframes sealRing { 0% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(2.1); } }
@media (max-width: 760px) {
  .hallmark-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hallmark-copy p { margin-left: auto; margin-right: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .reservation-card .wax { opacity: 1; transform: translateX(-50%) scale(1) rotate(-7deg); animation: none; }
  .press-seal, .press-seal.pressing { transition: none; }
  .seal-ring.go { animation: none; }
}

/* --- gold-foil shimmer + toast (easter egg: press a few times) --- */
.foil-shimmer { position: fixed; inset: 0; z-index: 175; pointer-events: none; overflow: hidden; }
.foil-shimmer i { position: absolute; top: -16px; width: 7px; height: 7px; border-radius: 50%; background: var(--brass-soft); 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(--bg-dark); border-bottom: 2px solid var(--brass);
  padding: 12px 26px; box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  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) { .foil-shimmer { display: none; } }

/* --- opt-in sound toggle (quiet brass 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(248,240,224,0.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); 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(42,31,24,0.2); transition: background 0.2s; }
.sound-toggle:hover { border-color: var(--brass); }
.sound-toggle.on { border-color: var(--brass); color: var(--accent); }
.sound-toggle.on .led { background: var(--brass); }
@media (max-width: 600px) { .sound-toggle { left: 12px; bottom: 70px; } }

/* ============================================================
   CYCLE 9 · COMMENTARY DOCK (sales guide, demo home only)
   Sandstone panel, brass hairline, oxblood accents. 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(248,240,224,0.97); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-top: 2px solid var(--brass);
  box-shadow: 0 24px 60px rgba(31,24,18,0.3);
  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(42,31,24,0.16); transition: background 0.25s; }
.cx-dots span.on { background: var(--brass); }
.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(--bg-dark); border: 0; border-bottom: 2px solid var(--brass);
  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)
   Heritage inline-SVG map: sandstone ground, brass hairline
   streets, a garden square, 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; z-index: 1; }
.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-cream);
  border: 1px solid var(--brass); padding: 6px 13px;
  box-shadow: 0 6px 16px rgba(31,24,18,0.2); white-space: nowrap;
}
.contact-map .map-dir {
  position: absolute; z-index: 3; left: 18px; bottom: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 11px 18px; display: inline-flex; gap: 9px; align-items: center;
  transition: background 0.2s;
}
.contact-map .map-dir:hover { background: var(--bg-dark); }
.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 room-feature "see the map" reinforcement link */
.visit-map-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--display); font-style: italic; font-size: 19px;
  color: var(--brass-soft); border-bottom: 1px solid var(--brass); padding-bottom: 3px;
}
.visit-map-link:hover { color: var(--bg); }

/* ============================================================
   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(--bg-dark); border-top: 1px solid var(--line-strong); 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-cream); }
.fc-buy-text strong { color: var(--brass); }
.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-cream); font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 30px; border-radius: 3px; box-shadow: 0 0 0 0 rgba(107, 30, 26, 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(107, 30, 26, 0.45); } 50% { box-shadow: 0 0 26px 4px rgba(107, 30, 26, 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: var(--brass-soft); border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.fc-buy-back:hover { color: var(--brass); }
@media (prefers-reduced-motion: reduce) { .fc-buy-cta { animation: none; } .fc-buy-cta::after { display: none; } }
