/* ============================================================
   FORKCAST DEMO · 02b · THE BAR · COCKTAIL
   Shared stylesheet for all 5 pages of this skin.

   Palette: walnut, brass, leather, oxblood. Speakeasy.
   Type: Marcellus (Roman engraved-brass), Cormorant Garamond
   italic (book italic), Lora (body), JetBrains Mono (labels).
   Pattern: full-bleed dark hero. Pendant-light pool. Brass-rail
   dividers. Cocktail glass icons. Confident-classic voice.
   ============================================================ */

:root {
  /* Walnut base + warmer surfaces */
  --bg: #14100D;
  --bg-deep: #0A0807;
  --bg-leather: #1F1714;
  --bg-warm: #261B14;
  --bg-soft: #2B201A;

  /* Bone + dust text on dark */
  --ink: #E8DCC0;
  --ink-soft: #B49B7C;
  --ink-dim: #846E55;

  /* Brass family */
  --brass: #B08D4F;
  --brass-light: #D4AF6F;
  --brass-deep: #846238;
  --brass-glow: rgba(208, 175, 111, 0.22);

  /* Accent */
  --oxblood: #6B1F33;
  --oxblood-light: #8B3550;
  --leather: #3A2418;

  /* Rules */
  --line: rgba(176, 141, 79, 0.15);
  --line-strong: rgba(176, 141, 79, 0.32);

  /* Type stack */
  --display: 'Marcellus', 'Trajan Pro', Georgia, serif;
  --italic: 'Cormorant Garamond', Georgia, serif;
  --body: 'Lora', Georgia, serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout tokens */
  --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.7;
  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(--brass-light); }

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

/* ---------- NAV (always on dark for this skin) ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(20, 16, 13, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(176, 141, 79, 0.25);
}
.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: 22px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--brass-light);
  position: relative;
  padding: 4px 0;
}
.nav-brand::before, .nav-brand::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}
.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; color: var(--ink); }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--brass-light); }
.nav-cta {
  font-family: var(--italic);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}
.nav-cta:hover { color: var(--brass-light); }
@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(--brass-light); }
.breadcrumb .sep { padding: 0 12px; opacity: 0.5; color: var(--brass); }

/* ---------- BRASS RAIL DIVIDER (signature accent) ---------- */
.brass-rail {
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--brass-deep) 8%,
    var(--brass-light) 50%,
    var(--brass-deep) 92%,
    transparent 100%);
  position: relative;
  margin: 0;
}
.brass-rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- GLASS ICON ACCENTS (inline SVG via background-image) ---------- */
.glass-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.85;
  flex-shrink: 0;
}
/* Coupe (martini-style cocktail glass) */
.glass-icon.coupe {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 40' fill='none' stroke='%23B08D4F' stroke-width='1.4' stroke-linecap='round'><path d='M4 6 L28 6 L16 22 Z'/><line x1='16' y1='22' x2='16' y2='34'/><line x1='10' y1='34' x2='22' y2='34'/></svg>");
}
/* Lowball (rocks glass) */
.glass-icon.lowball {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 40' fill='none' stroke='%23B08D4F' stroke-width='1.4' stroke-linecap='round'><path d='M7 8 L25 8 L23 32 L9 32 Z'/><line x1='8' y1='18' x2='24' y2='18'/></svg>");
}
/* Highball (tall glass) */
.glass-icon.highball {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 40' fill='none' stroke='%23B08D4F' stroke-width='1.4' stroke-linecap='round'><path d='M9 4 L23 4 L22 36 L10 36 Z'/><line x1='9.6' y1='14' x2='22.4' y2='14'/></svg>");
}
/* Decanter (story icon) */
.glass-icon.decanter {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 40' fill='none' stroke='%23B08D4F' stroke-width='1.4' stroke-linecap='round'><path d='M14 4 L18 4 L18 12 L24 22 L24 34 Q24 36 22 36 L10 36 Q8 36 8 34 L8 22 L14 12 Z'/><line x1='8' y1='24' x2='24' y2='24'/></svg>");
}

/* ============================================================
   FULL-BLEED HERO (home page)
   Walnut bar + pendant-light pool + cocktail-on-bar photograph
   ============================================================ */
.hero-bleed {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.hero-bleed-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 38%, rgba(208, 175, 111, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 70%, rgba(107, 31, 51, 0.10) 0%, transparent 70%),
    linear-gradient(160deg, #2A1F18 0%, #14100D 55%, #0A0807 100%);
  z-index: 1;
}
.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; }
.hero-bleed-image .image-placeholder .intent { display: none; }
.hero-bleed-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,16,13,0.32) 0%,
    rgba(20,16,13,0.42) 30%,
    rgba(20,16,13,0.72) 65%,
    rgba(10,8,7,0.94) 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;
}
/* Top-left wordmark plate (bar-front signage echo) */
.hero-bleed-signage {
  position: absolute;
  top: clamp(96px, 12vh, 140px);
  left: var(--gutter);
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: clamp(6px, 1vw, 14px);
  color: var(--brass-light);
  line-height: 1;
  max-width: 80vw;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.hero-bleed-signage .est {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 18px;
  opacity: 0.85;
}
.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;
}
.hero-bleed h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.06;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-bleed h1 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.hero-bleed-sub {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.92;
  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-light);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.88;
}
.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-deep);
  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(--brass-light); color: var(--bg-deep); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 21px 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-deep); }

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

/* ---------- 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(--brass);
  margin-bottom: 24px;
  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, 76px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  color: var(--ink);
  position: relative;
}
.section-heading em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.section-lede {
  font-family: var(--italic);
  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, under hero, trust-first)
   ============================================================ */
.press-strip {
  background: var(--bg-leather);
  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(--brass);
  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(--brass);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.press-logo-slot .quote {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.35;
  color: var(--ink);
  opacity: 0.88;
}
@media (max-width: 760px) {
  .press-logos { gap: 24px; }
  .press-logo-slot { max-width: 160px; }
}

/* ============================================================
   TONIGHT'S POUR (home page, three signature cocktails)
   Replaces Heritage's "Tonight's Tasting" course grid.
   ============================================================ */
.pour-list {
  background: var(--bg);
}
.pour-list-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.pour-list-header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.pour-list-header .section-eyebrow { justify-content: center; }
.pour-list-header .section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.pour-list-header .section-lede { margin: 0 auto; }
.pour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px);
}
.pour-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-leather);
  border: 1px solid var(--leather);
  border-top: 2px solid var(--brass);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
}
.pour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--brass-light) 50%, transparent 100%);
  opacity: 0.6;
}
.pour-image {
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--leather);
}
.pour-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.78;
  gap: 12px;
}
.pour-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.pour-image .image-placeholder .intent {
  max-width: 280px;
  line-height: 1.6;
  font-family: var(--italic);
  font-style: italic;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
}
.pour-glass-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.pour-card .pour-glass-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass);
}
.pour-card .pour-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.pour-card .pour-name em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.3px;
}
.pour-card .pour-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 340px;
  font-style: italic;
  font-family: var(--italic);
}
.pour-card .pour-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(--line-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pour-card .pour-price {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .pour-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   THE BACKBAR (home page, wide cinematic feature)
   ============================================================ */
.backbar-feature {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.backbar-feature-image {
  position: relative;
  aspect-ratio: 21/9;
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(208, 175, 111, 0.18) 0%, transparent 70%),
    linear-gradient(160deg, #2D1F16 0%, #14100D 100%);
}
.backbar-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;
}
.backbar-feature-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.backbar-feature-image .image-placeholder .intent { display: none; }
.backbar-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,8,7,0.18) 0%,
    rgba(10,8,7,0.35) 50%,
    rgba(10,8,7,0.92) 100%);
  z-index: 2;
}
.backbar-caption {
  position: absolute;
  bottom: clamp(32px, 5vw, 80px);
  left: clamp(32px, 5vw, 96px);
  right: clamp(32px, 5vw, 96px);
  color: var(--ink);
  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);
}
.backbar-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: 560px;
  color: var(--ink);
}
.backbar-caption h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.4px;
}
.backbar-caption p {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 420px;
  opacity: 0.92;
  color: var(--ink);
}
@media (max-width: 880px) {
  .backbar-feature-image { aspect-ratio: 4/5; }
  .backbar-caption { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   STORY SNIPPET (home page tease for The Room page)
   ============================================================ */
.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-leather);
  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.75;
  gap: 12px;
}
.story-snippet-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.story-snippet-image .image-placeholder .intent {
  max-width: 300px;
  line-height: 1.6;
  font-family: var(--italic);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
}
.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);
  color: var(--ink);
}
.story-snippet .copy h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.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(--italic);
  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(--brass);
  padding-bottom: 4px;
}
.story-snippet .copy .sig:hover { color: var(--brass-light); }
@media (max-width: 880px) {
  .story-snippet-inner { grid-template-columns: 1fr; }
  .story-snippet-image { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   FINAL CTA (close every page)
   ============================================================ */
.final-cta {
  background: var(--bg-deep);
  color: var(--ink);
  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.05;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  color: var(--ink);
}
.final-cta h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.final-cta p {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0.92;
  color: var(--ink);
}

/* ============================================================
   PAGE-LEVEL HERO (menu, story, bookings, contact)
   Shorter than the home hero; same dark walnut spotlight.
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  background: var(--bg);
  overflow: hidden;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 45% 40%, rgba(208, 175, 111, 0.14) 0%, transparent 65%),
    linear-gradient(160deg, #2A1F18 0%, #14100D 60%, #0A0807 100%);
  z-index: 1;
}
.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(20,16,13,0.36) 0%,
    rgba(20,16,13,0.42) 30%,
    rgba(20,16,13,0.7) 65%,
    rgba(10,8,7,0.94) 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.05;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 720px;
}
.page-hero h1 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.page-hero-lede {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.92;
  max-width: 560px;
}

/* ============================================================
   MENU PAGE (the drinks list)
   ============================================================ */
.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: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.menu-course-head .head-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-course-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.menu-course-head h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.menu-course-head .glass-icon { width: 36px; height: 36px; }
.menu-course-head .course-tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 6px 12px;
}
.menu-course-note {
  font-family: var(--italic);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.55;
}

.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: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.menu-item-name em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.3px;
}
.menu-item-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  font-style: italic;
  font-family: var(--italic);
}
.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-leather);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}
.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(--brass);
  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 (The Room)
   ============================================================ */
.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.9;
  color: var(--ink);
  margin-bottom: 32px;
}
.story-prose p:first-of-type {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  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.4px;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brass);
  color: var(--ink);
}
.story-prose h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.4px;
}

.pull-quote {
  background: var(--bg-deep);
  color: var(--ink);
  padding: clamp(72px, 9vw, 128px) var(--gutter);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}
.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.45; }
.pull-quote::after { bottom: clamp(40px, 5vw, 72px); opacity: 0.45; }
.pull-quote blockquote {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  color: var(--ink);
}
.pull-quote blockquote em { color: var(--brass-light); }
.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-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
.story-photo {
  aspect-ratio: 4/5;
  background: var(--bg-leather);
  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.78;
  gap: 12px;
}
.story-photo .image-placeholder .label { color: var(--brass); font-weight: 500; }
.story-photo .image-placeholder .intent {
  max-width: 300px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}
@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-leather);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.press-logo {
  aspect-ratio: 4/2;
  background: var(--bg-warm);
  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.8;
}
@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-leather);
  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.78;
  gap: 12px;
}
.booking-widget .image-placeholder .label { color: var(--brass); font-weight: 500; }
.booking-widget .image-placeholder .intent {
  max-width: 380px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .booking-widget { aspect-ratio: 3/4; }
}

.bookings-split {
  background: var(--bg-leather);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}
.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;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brass);
  color: var(--ink);
}
.bookings-split-inner h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.4px;
}
.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-corner {
  position: relative;
  background: var(--bg-deep);
  color: var(--ink);
  overflow: hidden;
}
.private-corner-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 30% 50%, rgba(208, 175, 111, 0.16) 0%, transparent 70%),
    linear-gradient(160deg, #2D1F16 0%, #14100D 100%);
  z-index: 1;
}
.private-corner-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-corner-image .image-placeholder .label { color: var(--brass); font-weight: 500; }
.private-corner-image .image-placeholder .intent { display: none; }
.private-corner-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,7,0.6) 0%, rgba(10,8,7,0.4) 100%);
  z-index: 2;
}
.private-corner-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-corner-content .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: 24px;
  color: var(--ink);
}
.private-corner-content .copy h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.5px;
}
.private-corner-content .copy p {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  margin-bottom: 32px;
  opacity: 0.92;
  max-width: 480px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .private-corner-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;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brass);
  color: var(--ink);
}
.booking-faq h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.4px;
}
.booking-faq .lede {
  font-family: var(--italic);
  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: 400;
  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;
  letter-spacing: 0.3px;
}
.booking-faq summary::-webkit-details-marker { display: none; }
.booking-faq summary::after {
  content: "+";
  font-family: var(--italic);
  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-leather);
  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.78;
  gap: 12px;
}
.contact-map .image-placeholder .label { color: var(--brass); font-weight: 500; }
.contact-map .image-placeholder .intent {
  max-width: 460px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
  color: var(--ink-soft);
}
@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(--brass);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brass);
}
.contact-block .big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-block a.big { transition: color 0.2s; }
.contact-block a.big:hover { color: var(--brass-light); }
.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-leather);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}
.press-block .section-eyebrow { justify-content: center; }
.press-block h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  color: var(--ink);
}
.press-block h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-light);
  letter-spacing: -0.4px;
}
.press-block p {
  font-family: var(--italic);
  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: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  letter-spacing: 0.3px;
}
.press-block .email-big:hover { color: var(--brass-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  color: var(--ink);
  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.32);
}
.footer-brand .wordmark {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--brass-light);
  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(--italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 300px;
  opacity: 0.92;
  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(--ink);
  opacity: 0.82;
}
.footer-col a:hover { opacity: 1; color: var(--brass-light); }
.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(--ink);
  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(--brass-light); }
@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 6)
   6 moves layered on top of canon: scroll-driven reveals,
   hand-drawn monogram, brass cursor accent, marquee ticker,
   broken-grid story snippet, editorial pause section.
   All CSS-first, JS-light. Respects prefers-reduced-motion.
   ============================================================ */

/* --- Move 1: Scroll-driven entrance --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.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; }

.reveal-image {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-image.in-view {
  opacity: 1;
  transform: scale(1);
}

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

/* --- Move 2: Hand-drawn coupe monogram --- */
.nav-brand-monogram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand-monogram svg {
  width: 26px;
  height: 30px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-brand-monogram:hover svg { transform: rotate(-6deg); }
.nav-brand-monogram svg path,
.nav-brand-monogram svg line { stroke: var(--brass-light); fill: none; }

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

/* --- Move 3: Brass cursor accent inside image frames --- */
.cursor-accent {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--bg-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  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: Marquee press ticker --- */
.press-marquee {
  background: var(--bg-leather);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  padding: 36px 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.35;
}
.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(--brass);
  text-align: center;
  margin-bottom: 24px;
}
.press-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 54s linear infinite;
  align-items: center;
}
.press-marquee-track > .marquee-block {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 38px);
  color: var(--ink);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.press-marquee-track .sep {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.press-marquee-track em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass-light);
}
@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 --- */
.story-snippet.broken-grid {
  overflow: hidden;
}
.story-snippet.broken-grid .story-snippet-inner {
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  position: relative;
  gap: clamp(56px, 8vw, 140px);
}
.story-snippet.broken-grid .story-snippet-image {
  margin-left: calc(-1 * var(--gutter) - 24px);
  aspect-ratio: 5/6;
  position: relative;
  border-radius: 0;
}
.story-snippet.broken-grid .story-snippet-image::after {
  content: '';
  position: absolute;
  bottom: -48px;
  right: -64px;
  width: 72%;
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
}
.story-snippet.broken-grid .copy {
  position: relative;
  z-index: 2;
}
.story-snippet.broken-grid .copy::before {
  content: '01.';
  position: absolute;
  top: -64px;
  left: -8px;
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(40px, 4vw, 64px);
  color: var(--brass);
  opacity: 0.5;
  letter-spacing: -2px;
}
@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; aspect-ratio: 4/5; }
  .story-snippet.broken-grid .story-snippet-image::after { display: none; }
  .story-snippet.broken-grid .copy::before { top: -56px; }
}

/* --- Move 6: Editorial pause section --- */
.editorial-pause {
  background: var(--bg-deepest);
  color: var(--brass-light);
  min-height: 78vh;
  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 38% 48% at 50% 50%, rgba(208, 175, 111, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.editorial-pause-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.editorial-pause blockquote {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.3;
  color: var(--brass-light);
  position: relative;
  letter-spacing: 0.2px;
}
.editorial-pause-rule {
  display: block;
  width: 72px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto 56px;
  opacity: 0.55;
}
.editorial-pause-rule.below {
  margin: 56px 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: 32px;
  opacity: 0.85;
}

/* ============================================================
   CYCLE 9 · BAR COCKTAIL BENCHMARK ADDITIONS
   1. SHAKE ONE UP · interactive signature
   2. Opt-in sound toggle
   3. Toast + sparkle shimmer
   4. Commentary dock (.cx)
   5. Find Us map classes
   6. Visit map link
   All guarded for prefers-reduced-motion and hover: none.
   GPU-cheap: transform + opacity only.
   ============================================================ */

/* --- SHAKE ONE UP: signature section layout --- */
.shake-sig {
  background: var(--bg-leather);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
}
.shake-sig::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(208,175,111,0.10) 0%, transparent 70%);
}
.shake-inner {
  position: relative; z-index: 1;
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.shake-copy .section-eyebrow { color: var(--brass); }
.shake-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.07;
  color: var(--ink);
  margin: 10px 0 16px;
  letter-spacing: 0.5px;
}
.shake-copy h2 em { font-family: var(--italic); font-style: italic; color: var(--brass-light); }
.shake-copy p {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 40ch; margin-bottom: 14px;
}
.shake-hint {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brass); opacity: 0.85;
}
/* cocktail reveal: name + one-liner below the stage */
.shake-reveal {
  margin-top: 18px; text-align: center; min-height: 52px;
  transition: opacity 0.35s;
}
.shake-reveal.hidden { opacity: 0; pointer-events: none; }
.shake-reveal .cocktail-name {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 2px;
  color: var(--brass-light);
  display: block;
}
.shake-reveal .cocktail-desc {
  font-family: var(--italic); font-style: italic; font-size: 15px;
  color: var(--ink-soft); display: block; margin-top: 4px;
}

/* The shaker stage */
.shake-stage {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

/* ---- CSS-drawn cocktail shaker ---- */
.shaker-btn {
  position: relative; cursor: pointer; background: none; border: none; padding: 0;
  width: 80px; display: flex; flex-direction: column; align-items: center;
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.34,1.4,0.5,1);
}
@media (hover: hover) { .shaker-btn:hover { transform: translateY(-5px); } }
.shaker-tin {
  width: 48px; height: 88px; position: relative;
  background: linear-gradient(160deg, var(--brass-light) 0%, var(--brass) 40%, var(--brass-deep) 100%);
  border-radius: 6px 6px 10px 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5), inset 2px 0 0 rgba(255,255,255,0.18), inset -2px 0 0 rgba(0,0,0,0.22);
}
.shaker-tin::before {
  content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 1px; background: rgba(20,16,13,0.35);
  box-shadow: 0 8px 0 rgba(20,16,13,0.2), 0 16px 0 rgba(20,16,13,0.15);
}
.shaker-tin::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 10px;
  background: linear-gradient(to bottom, var(--brass) 0%, var(--brass-deep) 100%);
  border-radius: 0 0 4px 4px;
}
/* rattle animation */
.shaker-btn.rattling .shaker-tin {
  animation: shakerRattle 0.5s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes shakerRattle {
  0%   { transform: rotate(0deg) translate(0,0); }
  10%  { transform: rotate(-7deg) translate(-2px, -1px); }
  20%  { transform: rotate(7deg) translate(2px, -2px); }
  30%  { transform: rotate(-6deg) translate(-2px, 1px); }
  40%  { transform: rotate(6deg) translate(2px, -1px); }
  50%  { transform: rotate(-4deg) translate(-1px, 0); }
  60%  { transform: rotate(4deg) translate(1px, -1px); }
  75%  { transform: rotate(-2deg) translate(0, 0); }
  100% { transform: rotate(0deg) translate(0, 0); }
}

/* ---- CSS-drawn coupe/martini glass ---- */
.glass-wrap {
  margin-top: 24px; position: relative; width: 80px; height: 90px;
  display: flex; align-items: flex-end; justify-content: center;
}
.glass-svg {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 90px; overflow: visible;
}
/* the glass fill (clip reveals from bottom) */
.glass-fill {
  position: absolute; bottom: 22px; left: 50%;
  width: 52px; transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background: var(--brass-light);
  height: 0;
  transition: height 0.6s cubic-bezier(0.34,1.1,0.5,1), background 0.35s;
  max-height: 34px;
  overflow: hidden;
  opacity: 0.82;
}
.glass-fill.filled {
  height: 34px;
}
/* garnish drop */
.glass-garnish {
  position: absolute; top: 12px; right: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--oxblood-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(-18px);
  transition: opacity 0.3s 0.55s, transform 0.4s 0.55s cubic-bezier(0.34,1.3,0.5,1);
}
.glass-garnish.dropped {
  opacity: 1; transform: translateY(0);
}

/* reduced-motion: show glass pre-filled, no animation */
@media (prefers-reduced-motion: reduce) {
  .glass-fill { transition: none; height: 34px; }
  .glass-garnish { transition: none; opacity: 1; transform: translateY(0); }
  .shaker-btn.rattling .shaker-tin { animation: none; }
  .shaker-btn { transition: none; }
  .shake-reveal { transition: none; opacity: 1; }
}

@media (max-width: 760px) {
  .shake-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .shake-copy p { margin-left: auto; margin-right: auto; }
  .shake-stage { margin-top: 8px; }
}

/* --- gold sparkle shimmer + toast (easter egg: 3 shakes) --- */
.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-light); opacity: 0.9;
}
.toast {
  position: fixed; left: 50%; top: 80px; transform: translateX(-50%) translateY(-18px); z-index: 210;
  font-family: var(--italic); font-style: italic; font-size: 19px;
  color: var(--ink); background: var(--bg-deep); border-bottom: 2px solid var(--brass);
  padding: 12px 26px; box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  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(31,23,20,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(176,141,79,0.25); transition: background 0.2s; }
.sound-toggle:hover { border-color: var(--brass); }
.sound-toggle.on { border-color: var(--brass); color: var(--brass-light); }
.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)
   Walnut panel, brass hairline, oxblood accents. Dismissible,
   reopenable, bottom sheet on phones.
   ============================================================ */
.cx {
  position: fixed; right: 22px; bottom: 22px; z-index: 180;
  width: 320px; max-width: calc(100vw - 44px);
  background: rgba(31,23,20,0.97); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-top: 2px solid var(--brass);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  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(--brass); }
.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(--brass-light); }
.cx-body { padding: 18px 16px 8px; transition: opacity 0.17s; }
.cx.swapping .cx-body { opacity: 0; }
.cx-feel { font-family: var(--display); font-size: 22px; line-height: 1.15; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.5px; }
.cx-feel em { font-family: var(--italic); font-style: italic; color: var(--brass-light); }
.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(176,141,79,0.18); 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(--ink); background: var(--bg-deep); 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)
   Dark walnut ground, brass hairline streets, oxblood route
   and pulsing pin. 1:1 swap for a Google Maps embed.
   ============================================================ */
.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(--italic); font-style: italic; font-size: 17px;
  color: var(--ink); background: var(--bg-leather);
  border: 1px solid var(--brass); padding: 6px 13px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4); 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(--ink); background: var(--brass);
  padding: 11px 18px; display: inline-flex; gap: 9px; align-items: center;
  transition: background 0.2s;
}
.contact-map .map-dir:hover { background: var(--brass-light); color: var(--bg-deep); }
.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 backbar "find the door" reinforcement link */
.visit-map-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--italic); font-style: italic; font-size: 19px;
  color: var(--brass-light); border-bottom: 1px solid var(--brass); padding-bottom: 3px;
}
.visit-map-link:hover { color: var(--ink); }

/* ============================================================
   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-deep); border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 76px) var(--gutter); text-align: center; position: relative; overflow: hidden; }
.fc-buy-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.fc-buy-text { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); line-height: 1.2; color: var(--ink); }
.fc-buy-text strong { color: var(--brass-light); }
.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(--brass); color: var(--bg-deep); font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 30px; border-radius: 2px; box-shadow: 0 0 0 0 rgba(176, 141, 79, 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(176, 141, 79, 0.45); } 50% { box-shadow: 0 0 26px 4px rgba(176, 141, 79, 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(--ink-dim); border-bottom: 1px solid var(--brass); padding-bottom: 2px; }
.fc-buy-back:hover { color: var(--brass-light); }
@media (prefers-reduced-motion: reduce) { .fc-buy-cta { animation: none; } .fc-buy-cta::after { display: none; } }
