/* Pinecone — Homepage redesign
   Editorial heritage: Cormorant serif + Inter sans, warm cream paper,
   narrow columns, oversize numerals, generous whitespace.
   Original visual interpretation of the brand's existing palette. */

:root {
  --paper:        #f5ead4;
  --paper-2:      #ede0c4;
  --paper-warm:   #f8f1de;
  --paper-deep:   #e6d6b1;
  --ink:          #2a1a16;
  --ink-2:        #4a3528;
  --ink-mute:     rgba(42, 26, 22, 0.55);
  --ink-faint:    rgba(42, 26, 22, 0.18);

  --sage:         #c4d4a8;
  --sage-deep:    #6f8253;
  --peach:        #e8a888;
  --peach-deep:   #b46a48;
  --mauve:        #a87998;
  --mauve-deep:   #5e3550;
  --mustard:      #c89a4a;
  --mustard-deep: #8a6826;
  --wine:         #3a1f2a;
  --moss-deep:    #3d4f2a;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans:  "Faculty Glyphic", "Optima", ui-sans-serif, system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* ONE GRID (desktop pass 2026-08-02). These now match --v2-max/--v2-gut
     exactly. Before this, the nav sat on a 1280px frame while sections sat
     on 1320px — every left edge wandered 20px at full screen, and the
     gutters differed by another 8px. One frame, one gutter, everywhere. */
  --max:   1320px;
  --gut:   clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Anchor jumps glide, and land BELOW the sticky nav instead of under it. */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
/* Selection in the house colors — system blue was flashing into the cream. */
::selection { background: var(--mustard); color: var(--ink); }
/* 2 — pages cross-fade into each other (progressive; older browsers cut). */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 240ms; }
body {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button, a { font: inherit; }
button { cursor: pointer; border: none; background: transparent; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }

/* paper texture */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(184,140,90,0.05) 0, transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(120,80,60,0.04) 0, transparent 42%);
}

/* ============ The Whorl in motion ============ */
/* Each of the 21 scales unfurls outward in sequence on arrival — the
   golden-angle story told once, in half a second, then still. The petal
   PATH animates (not its positioned group), so the spiral geometry the
   attribute transform draws is never overridden. */
@keyframes whorlBloom {
  from { opacity: 0; transform: scale(0.2); }
  to   { opacity: 0.9; transform: scale(1); }
}
.whorl-petal {
  transform-box: fill-box; transform-origin: center;
  animation: whorlBloom 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.brand .whorl { transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1); }
.brand:hover .whorl { transform: scale(1.07) rotate(5deg); }
@media (prefers-reduced-motion: reduce) {
  .whorl-petal { animation: none; }
  .brand:hover .whorl { transform: none; }
}

/* ============ Type system ============ */
.eyebrow {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mustard-deep);
}
.section-label {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ""; width: 28px; height: 1px; background: var(--ink-faint);
  display: inline-block;
}
.h-display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98; letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}
.h-display em { font-style: italic; font-weight: 500; color: var(--mustard-deep); }
.h-section {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02; letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.h-section em { font-style: italic; font-weight: 500; }
.lede {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4;
  color: var(--ink-2);
  max-width: 36ch;
  text-wrap: pretty;
}
p.body { font-size: 15.5px; line-height: 1.65; color: var(--ink-2); max-width: 60ch; }

.rule {
  height: 1px; background: var(--ink-faint); width: 100%;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid var(--ink);
  transition: all 200ms ease;
  white-space: nowrap;
}
.btn .arr { font-family: var(--serif); font-size: 18px; line-height: 1; transition: transform 220ms ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--mustard-deep); border-color: var(--mustard-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-quiet { background: transparent; color: var(--ink-2); border-color: var(--ink-faint); }
.btn-quiet:hover { color: var(--ink); border-color: var(--ink); }

/* ============ Top bar (announcement) ============ */
.banner {
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px var(--gut);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  position: relative; z-index: 5;
}
.banner b { color: var(--mustard); font-weight: 600; }
.banner .sep {
  width: 4px; height: 4px; border-radius: 999px; background: rgba(245,234,212,0.4);
  display: inline-block;
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(245, 234, 212, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-faint);
  /* Gutter lives on the BAR, not inside the frame — the same pattern every
     section uses. With it inside, nav text sat 64px right of the content
     below it at full screen. */
  padding: 0 var(--gut);
  transition: box-shadow 320ms ease, background 320ms ease;
}
/* Scrolled: the bar condenses a touch and takes a soft shadow — it sits ON
   the page instead of floating over it. */
.nav.nav-scrolled {
  background: rgba(245, 234, 212, 0.97);
  box-shadow: 0 10px 34px -22px rgba(42, 26, 22, 0.35);
}
.nav.nav-scrolled .nav-inner { padding-top: 11px; padding-bottom: 11px; }
.nav-inner { transition: padding 320ms ease; }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px 0;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 9px;
}
.brand svg { flex: 0 0 auto; }
.brand .slogan { align-self: flex-end; padding-bottom: 6px; }
.brand .logo {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 30px; letter-spacing: -0.01em; color: var(--mustard-deep);
  line-height: 1;
}
.brand .slogan {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  font-size: 13px; font-weight: 500;
}
.nav-item { position: relative; }
.nav-links button {
  font-family: inherit; font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: none; border: 0; padding: 4px 0; cursor: pointer;
  transition: color 180ms ease;
}
.nav-links button:hover, .nav-links button.open { color: var(--mustard-deep); }
.nav-drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--paper-warm); border: 1px solid var(--ink-faint);
  box-shadow: 0 24px 40px -28px rgba(42,26,22,0.45);
  padding: 10px; min-width: 208px; z-index: 20;
  display: flex; flex-direction: column; gap: 2px;
  animation: navDrop 200ms cubic-bezier(0.22,1,0.36,1);
}
.nav-drop::before {
  content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px;
}
.nav-drop a {
  display: block; padding: 9px 12px; font-size: 13.5px; color: var(--ink-2);
  white-space: nowrap; transition: background 160ms ease, color 160ms ease;
}
.nav-drop a:hover { background: var(--paper-deep); color: var(--ink); }
@keyframes navDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-links a {
  color: var(--ink-2);
  position: relative; padding: 4px 0;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--mustard-deep); }
.nav-links a.has-caret::after,
.nav-links button.has-caret::after {
  content: "▾"; font-size: 9px; margin-left: 4px; opacity: 0.6;
}
.nav-cta-row { display: flex; gap: 14px; align-items: center; justify-self: end; }
.nav-cta-row .phone:hover { color: var(--mustard-deep); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--ink-faint);
  width: 42px; height: 42px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: border-color 200ms ease;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle i { display: block; width: 17px; height: 1.5px; background: var(--ink); transition: transform 240ms cubic-bezier(0.22,1,0.36,1), opacity 180ms ease; }
.nav-toggle.open i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open i:nth-child(2) { opacity: 0; }
.nav-toggle.open i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-scrim {
  position: fixed; inset: 0; z-index: 9;
  background: rgba(42, 26, 22, 0.30);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  animation: scrimIn 240ms ease both;
}
@keyframes scrimIn { from { opacity: 0; } }

.nav-sheet {
  display: none; flex-direction: column;
  background: var(--paper-warm); border-top: 1px solid var(--ink-faint);
  padding: 10px var(--gut) 22px;
  animation: navSheet 240ms cubic-bezier(0.22,1,0.36,1);
}
@keyframes navSheet {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.nav-sheet a {
  font-family: var(--serif); font-size: 21px; color: var(--ink);
  padding: 13px 0; border-bottom: 1px solid var(--ink-faint);
}
.nav-sheet a:hover { color: var(--mustard-deep); }
.nav-sheet .nav-sheet-cta {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  text-align: center; padding: 17px; margin-top: 18px; border-bottom: none;
}
.nav-sheet .nav-sheet-cta:hover { background: var(--mustard-deep); color: var(--paper); }
.nav-cta-row .phone {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; color: var(--ink-mute);
}
@media (max-width: 1120px) { .nav-links { display: none; } .nav-toggle { display: flex; } .nav-scrim {
  position: fixed; inset: 0; z-index: 9;
  background: rgba(42, 26, 22, 0.30);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  animation: scrimIn 240ms ease both;
}
@keyframes scrimIn { from { opacity: 0; } }

.nav-sheet { display: flex; } }
/* ─── Mobile menu sheet: a full-screen, opaque, FIXED layer that lives outside the
   bar (it is portaled to <body> in Nav). Sits just under the bar (z 9 < 10) so
   the bar's own ✕ keeps closing it. The bar loses its blur while the sheet is
   open — on iPhone Safari a blurred ancestor breaks fixed descendants and
   ghosts their text (Micah's 2026-09-05 screenshot). ─── */
.nav-sheet {
  position: fixed; inset: 0; z-index: 9;
  height: 100vh; height: 100dvh;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--paper-warm); border-top: none;
  padding: calc(env(safe-area-inset-top, 0px) + 84px) var(--gut) calc(env(safe-area-inset-bottom, 0px) + 28px);
}
.nav.nav-scrolled.menu-open, .nav.menu-open {
  -webkit-backdrop-filter: none; backdrop-filter: none;
  background: var(--paper-warm); box-shadow: none;
}
@media (min-width: 1121px) { .nav-sheet { display: none; } }
/* Desktop: 13px nav links are fly-sized in a 1920px window. */
@media (min-width: 1440px) {
  .nav-links { gap: 38px; font-size: 14.5px; }
  .nav-links button { font-size: 14.5px; }
  .nav-cta-row .phone { font-size: 12px; }
}
@media (max-width: 620px) {
  /* 2026-09-05: on phones the bar keeps the TOUR button (the one thing the
     site is for) and drops the phone number instead — the number is one tap
     away in the footer and on Contact. Compact sizing so brand + button +
     menu fit a 375px screen. */
  .nav-cta-row { gap: 10px; }
  .nav-cta-row .phone { display: none; }
  .nav-cta-row .btn-primary { display: inline-flex; padding: 9px 10px; font-size: 9.5px; letter-spacing: 0.08em; white-space: nowrap; }
  .brand svg { display: none; } /* wordmark alone on phones — the trees come back at tablet width */
  .nav-cta-row .btn-primary .arr { display: none; }
  .brand .slogan { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) var(--gut) clamp(60px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 36rem; }
.hero-copy .h-display { margin: 18px 0 26px; }
.hero-copy .lede { margin: 0 0 36px; }
.hero-meta {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-faint);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.hero-meta .stat {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta .stat b {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 2.8vw, 38px); line-height: 1; color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-meta .stat span {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: grid; place-items: center;
}

/* ============ Pinecone interactive (top-down) ============ */
.pinecone-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
  filter: drop-shadow(0 30px 50px rgba(42,26,22,0.10));
}
.scale {
  cursor: pointer;
  transition: filter 240ms ease;
}
.scale-shape {
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 400ms ease,
    opacity 400ms ease;
}
.scale.dim .scale-shape { opacity: 0.42; filter: saturate(0.6); }
.scale.active .scale-shape { filter: drop-shadow(0 14px 22px rgba(42,26,22,0.20)); }
.scale-label {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  fill: var(--ink); pointer-events: none;
  transition: opacity 320ms ease;
}
.scale.dim .scale-label { opacity: 0.4; }

.pc-core {
  position: absolute;
  width: 22%; aspect-ratio: 1/1; border-radius: 50%;
  background: var(--paper-warm);
  border: 1px solid var(--ink-faint);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 14px 28px rgba(42,26,22,0.12);
  display: grid; place-items: center;
  z-index: 5;
  cursor: pointer;
  transition: transform 360ms cubic-bezier(0.22,1,0.36,1);
}
.pc-core:hover { transform: scale(1.04); }
.pc-core .label {
  font-family: var(--mono); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mustard-deep);
  margin-bottom: 4px;
}
.pc-core h4 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(14px, 1.3vw, 18px); margin: 0; line-height: 1.05;
  letter-spacing: -0.005em;
  text-align: center;
}

.pc-detail {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  z-index: 7;
}
.pc-detail-card {
  width: min(420px, 86%);
  background: var(--paper-warm);
  border: 1px solid var(--ink-faint);
  border-radius: 22px;
  padding: 22px 24px 20px;
  box-shadow: 0 26px 50px rgba(42,26,22,0.18);
  pointer-events: auto;
  transform: translateY(8px) scale(0.96);
  opacity: 0;
  transition: transform 480ms cubic-bezier(0.22,1,0.36,1), opacity 360ms ease;
}
.pc-detail.show .pc-detail-card { transform: none; opacity: 1; }
.pc-detail-card .swatch-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.pc-detail-card .swatch {
  width: 22px; height: 22px; border-radius: 999px; border: 1px solid var(--ink-faint);
}
.pc-detail-card .meta {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
}
.pc-detail-card h3 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 32px; line-height: 1; margin: 0 0 4px; letter-spacing: -0.012em;
}
.pc-detail-card .tagline {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  color: var(--ink-2); margin: 0 0 12px;
}
.pc-detail-card ul {
  list-style: none; margin: 0; padding: 12px 0 0; border-top: 1px solid var(--ink-faint);
  display: flex; flex-direction: column; gap: 8px;
}
.pc-detail-card ul li {
  display: grid; grid-template-columns: 28px 1fr; gap: 8px;
  font-size: 13px; line-height: 1.4; color: var(--ink-2);
  opacity: 0; transform: translateX(-6px);
  animation: slideIn 460ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pc-detail-card ul li:nth-child(1) { animation-delay: 200ms; }
.pc-detail-card ul li:nth-child(2) { animation-delay: 280ms; }
.pc-detail-card ul li:nth-child(3) { animation-delay: 360ms; }
.pc-detail-card ul li:nth-child(4) { animation-delay: 440ms; }
@keyframes slideIn { to { opacity: 1; transform: none; } }
.pc-detail-card ul .num {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  color: var(--mustard-deep); letter-spacing: 0.08em; padding-top: 3px;
}
.pc-detail-card ul b {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 15px; color: var(--ink); display: block;
}
.pc-detail-card .bottom {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--ink-faint);
  display: flex; align-items: center; gap: 8px;
}
.pc-detail-card .bottom .arrows { margin-left: auto; display: flex; gap: 6px; }
.pc-detail-card .bottom .arr {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--ink-faint);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px; color: var(--ink-2);
  transition: all 180ms ease;
}
.pc-detail-card .bottom .arr:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pc-detail-card .bottom .close {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--ink-faint); color: var(--ink-2);
}
.pc-detail-card .bottom .close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* hint chip below the pinecone */
.pc-hint {
  position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
  border-radius: 999px;
  background: rgba(248, 241, 222, 0.7);
  border: 1px dashed var(--ink-faint);
}
.pc-hint .pulse {
  width: 6px; height: 6px; border-radius: 999px; background: var(--mustard-deep);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ============ Hero collapse ============ */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-stage { max-width: 520px; }
}

/* ============ Section base ============ */
section.band {
  position: relative; z-index: 1;
  padding: clamp(64px, 8vw, 120px) var(--gut);
}
section.band-paper { background: var(--paper); }
section.band-warm  { background: var(--paper-warm); border-top: 1px solid var(--ink-faint); border-bottom: 1px solid var(--ink-faint); }
section.band-deep  { background: var(--paper-deep); border-top: 1px solid var(--ink-faint); border-bottom: 1px solid var(--ink-faint); }
section.band-cream { background: var(--paper-2); border-top: 1px solid var(--ink-faint); border-bottom: 1px solid var(--ink-faint); }

/* ============ Concierge ============ */
.concierge-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 88px);
  margin-top: clamp(36px, 4vw, 56px);
  align-items: start;
}
.block-label {
  display: inline-block;
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--mustard-deep);
  padding: 5px 11px; border: 1px solid var(--mustard-deep); border-radius: 999px;
  margin-bottom: 22px;
}
.provided-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px;
}
.provided-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start;
  padding-bottom: 18px; border-bottom: 1px solid var(--ink-faint);
}
.provided-list li:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
.provided-list .check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 2px;
}
.provided-list b {
  font-family: var(--serif); font-weight: 500; font-size: 18px;
  color: var(--ink); display: block; line-height: 1.2; margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.provided-list p {
  margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.provided .footnote {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--ink-faint);
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--mustard-deep);
}

.cadence {
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--ink-faint);
  position: relative;
}
.cadence-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1;
  margin: 0 0 10px; letter-spacing: -0.01em;
  color: var(--ink); text-wrap: balance;
}
.cadence-h em { font-style: italic; font-weight: 500; color: var(--mustard-deep); }
.cadence-lede {
  font-size: 16px; color: var(--ink-2); margin: 0 0 28px;
}
.cadence-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.cadence-list li {
  display: grid; grid-template-columns: 3px 1fr; gap: 18px;
  padding-bottom: 22px; border-bottom: 1px solid var(--ink-faint);
}
.cadence-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cadence-list .rule {
  background: var(--mustard-deep);
  width: 3px; height: 100%; min-height: 60px;
}
.cadence-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 6px;
}
.cadence-list h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; line-height: 1.15; margin: 0 0 8px;
  color: var(--ink); letter-spacing: -0.005em;
}
.cadence-list p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

@media (max-width: 980px) {
  .concierge-wrap { grid-template-columns: 1fr; }
  .provided-list { grid-template-columns: 1fr; }
  .provided-list li { border-bottom: 1px solid var(--ink-faint) !important; padding-bottom: 18px !important; }
  .provided-list li:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
}
section.band-ink   { background: var(--ink); color: var(--paper); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
section.band-ink .h-section,
section.band-ink .lede { color: var(--paper); }
section.band-ink .body { color: rgba(245,234,212,0.85); }
section.band-ink .section-label { color: rgba(245,234,212,0.65); }
section.band-ink .section-label::before { background: rgba(245,234,212,0.3); }
section.band-ink .eyebrow { color: var(--mustard); }
section.band-ink .rule { background: rgba(245,234,212,0.18); }

.band-inner { max-width: var(--max); margin: 0 auto; }

/* ============ Section head — recurring 2-col layout ============ */
.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .left { display: flex; flex-direction: column; gap: 16px; }
.section-head .right { padding-bottom: 4px; }
.section-head .right .lede { margin: 0; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* ============ Difference grid ============ */
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}
.diff-card {
  background: var(--paper-warm);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 340px;
}
.diff-card .num {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--mustard-deep);
}
.diff-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 2vw, 30px); line-height: 1.05;
  letter-spacing: -0.008em;
  margin: 0;
}
.diff-card h3 em { font-style: italic; }
.diff-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.diff-card .photo {
  margin-top: auto;
  aspect-ratio: 4 / 3; width: 100%;
  border: 1px solid var(--ink-faint);
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(42,26,22,0.04) 0 8px,
      rgba(42,26,22,0.08) 8px 16px);
  position: relative; overflow: hidden;
}
.diff-card .photo .ph {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--paper-warm); padding: 5px 10px; border: 1px solid var(--ink-faint); border-radius: 999px;
}
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============ Video section ============ */
.video-block {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,234,212,0.08) 0, rgba(0,0,0,0.4) 60%),
    linear-gradient(135deg, #2a1a16 0%, #4a3528 100%);
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  transition: transform 240ms ease;
}
.video-block:hover { transform: scale(1.005); }
.video-block .play {
  width: 92px; height: 92px; border-radius: 999px;
  border: 1.5px solid rgba(245,234,212,0.7);
  background: rgba(245,234,212,0.12);
  display: grid; place-items: center;
  color: var(--paper);
  backdrop-filter: blur(4px);
  transition: all 240ms ease;
}
.video-block:hover .play { background: var(--mustard-deep); border-color: var(--mustard-deep); transform: scale(1.06); }
.video-block .play svg { margin-left: 4px; }
.video-block .corner-meta {
  position: absolute; bottom: 22px; left: 26px;
  color: var(--paper);
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  opacity: 0.85;
}
.video-block .duration {
  position: absolute; bottom: 22px; right: 26px;
  color: var(--paper);
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em;
  opacity: 0.85;
}
.video-block .photo-hint {
  position: absolute; top: 22px; left: 26px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,234,212,0.7);
  border: 1px solid rgba(245,234,212,0.3);
  padding: 4px 10px; border-radius: 999px;
}

/* ============ Pillars / Four Ps ============ */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}
.pillar {
  background: var(--paper-warm);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 320px;
  position: relative;
  cursor: default;
  transition: background 240ms ease;
}
.pillar:hover { background: var(--paper); }
.pillar .glyph {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--ink-faint); border-radius: 999px;
  margin-bottom: 8px;
}
.pillar .pnum {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--serif); font-size: 60px; font-weight: 400;
  font-style: italic; color: var(--mustard-deep);
  opacity: 0.18; line-height: 1; letter-spacing: -0.02em;
  pointer-events: none;
}
.pillar h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px); margin: 0; letter-spacing: -0.005em;
}
.pillar h4 em { font-style: italic; }
.pillar p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* ============ Heritage feature (split) ============ */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.split.flip { grid-template-columns: 1fr 1.05fr; }
@media (max-width: 880px) { .split, .split.flip { grid-template-columns: 1fr; } }
.split .copy { display: flex; flex-direction: column; gap: 18px; max-width: 38rem; }
.split .copy .h-section { margin: 0; }
.split .copy p { margin: 0; }
.split .copy .actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 10px; }

.feat-photo {
  aspect-ratio: 4 / 5; width: 100%;
  border: 1px solid var(--ink-faint);
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(42,26,22,0.05) 0 10px,
      rgba(42,26,22,0.10) 10px 20px);
}
.feat-photo .ph {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
  background: var(--paper-warm); padding: 5px 10px; border: 1px solid var(--ink-faint); border-radius: 999px;
}
.feat-photo .stamp {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--paper-warm); border: 1px solid var(--ink-faint);
  padding: 14px 18px; border-radius: 4px;
  max-width: 70%;
}
.feat-photo .stamp .lbl {
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
.feat-photo .stamp .val {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px; color: var(--ink); margin-top: 2px;
}

/* ============ Programs (age groups) ============ */
.programs-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--ink-faint);
}
.program-row {
  display: grid; grid-template-columns: 80px 1fr 200px 200px 60px;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(24px, 2.6vw, 36px) 0;
  border-bottom: 1px solid var(--ink-faint);
  transition: padding 200ms ease, background 200ms ease;
  cursor: pointer;
}
.program-row:hover { background: var(--paper-warm); padding-left: 16px; padding-right: 16px; }
.program-row .pnum {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--mustard-deep);
}
.program-row .pname {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -0.012em;
  color: var(--ink);
}
.program-row .pname em { font-style: italic; }
.program-row .page {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}
.program-row .pratio b {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--ink); margin-right: 6px;
}
.program-row .parr {
  text-align: right;
  font-family: var(--serif); font-size: 24px; color: var(--ink-2);
  transition: transform 200ms ease, color 200ms ease;
}
.program-row:hover .parr { transform: translateX(6px); color: var(--mustard-deep); }
@media (max-width: 880px) {
  .program-row { grid-template-columns: 60px 1fr 40px; row-gap: 8px; }
  .program-row .page, .program-row .pratio { grid-column: 2; }
}

/* ============ Testimonial / pull quote ============ */
.pull {
  max-width: 56rem; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
}
.pull .mark {
  font-family: var(--serif); font-style: italic; font-size: 90px; line-height: 0.5;
  color: var(--mustard-deep); opacity: 0.6;
}
.pull blockquote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.18;
  color: var(--paper); margin: 0; letter-spacing: -0.008em;
  text-wrap: balance;
}
.pull cite {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,234,212,0.7);
  font-style: normal;
}

/* ============ Promise ============ */
.promise {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  max-width: var(--max); margin: 0 auto;
}
.promise .seal {
  width: 180px; height: 180px;
  border: 1.5px solid var(--ink); border-radius: 999px;
  display: grid; place-items: center;
  text-align: center; padding: 18px;
  position: relative;
}
.promise .seal::before {
  content: ""; position: absolute; inset: 8px; border: 1px solid var(--ink-faint); border-radius: 999px;
}
.promise .seal .small {
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mustard-deep);
}
.promise .seal .big {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1.05;
  color: var(--ink); margin: 6px 0;
}
.promise .copy { display: flex; flex-direction: column; gap: 16px; }
.promise .copy .h-section { margin: 0; }
.promise .copy p { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 56ch; }
.promise .signature {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--mustard-deep); margin-top: 6px;
}
@media (max-width: 760px) { .promise { grid-template-columns: 1fr; } }

/* ============ Aquarium feature ============ */
.aquarium {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.aquarium-photo {
  aspect-ratio: 21 / 9; width: 100%;
  background:
    radial-gradient(circle at 30% 50%, rgba(111,168,220,0.35) 0, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(168,121,152,0.30) 0, transparent 50%),
    linear-gradient(180deg, #1a3a4e 0%, #2a1a16 100%);
  position: relative; overflow: hidden;
}
.aquarium-photo .ph {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,234,212,0.8);
  border: 1px solid rgba(245,234,212,0.3);
  padding: 4px 10px; border-radius: 999px;
}
.aquarium-overlay {
  position: absolute; inset: 0;
  display: grid; align-items: end;
  padding: clamp(30px, 4vw, 60px);
}
.aquarium-overlay .inner { max-width: 38rem; color: var(--paper); }
.aquarium-overlay .h-section { color: var(--paper); margin: 8px 0 14px; }
.aquarium-overlay .lede { color: rgba(245,234,212,0.92); margin: 0 0 22px; }
.aquarium-overlay .eyebrow { color: var(--mustard); }

/* ============ FAQ-style strip ============ */
.faq-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}
.faq-cell {
  background: var(--paper-warm);
  padding: clamp(22px, 2.4vw, 32px);
}
.faq-cell h5 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  margin: 0 0 6px; letter-spacing: -0.005em;
}
.faq-cell h5 em { font-style: italic; }
.faq-cell p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
@media (max-width: 760px) { .faq-strip { grid-template-columns: 1fr; } }

/* ============ Tour CTA ============ */
.tour-cta {
  text-align: center; max-width: 44rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}
.tour-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.tour-cta .legal {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,234,212,0.6);
  margin-top: 12px;
}

/* ============ Footer ============ */
footer.foot {
  background: var(--paper-deep);
  padding: 60px var(--gut) 36px;
  border-top: 1px solid var(--ink-faint);
  position: relative; overflow: hidden;
}
/* The pressmark: the Whorl, enormous and nearly invisible, bleeding off
   the corner — a printer's colophon, not a logo placement. */
.foot-mark {
  position: absolute; right: -140px; bottom: -180px;
  opacity: 0.055; pointer-events: none; user-select: none;
}
.foot-mark .whorl-petal { animation: none; }
footer .foot-inner, footer .legal { position: relative; z-index: 1; }
footer .foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
footer h6 {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  font-size: 14px; color: var(--ink-2);
  text-decoration: underline; text-decoration-color: transparent;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
footer ul a:hover { color: var(--mustard-deep); text-decoration-color: var(--mustard-deep); }
footer .brand-block .logo {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 36px; color: var(--mustard-deep); display: block; line-height: 1;
  margin-top: 14px;
}
footer .brand-block .slogan {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--ink-2); margin-top: 6px;
}
footer .brand-block .addr {
  margin-top: 24px; font-size: 13.5px; color: var(--ink-2); line-height: 1.55;
}
footer .legal {
  max-width: var(--max); margin: 40px auto 0;
  padding-top: 22px; border-top: 1px solid var(--ink-faint);
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}
footer .legal .spacer { flex: 1; }
footer .creds { display: flex; gap: 10px; align-items: center; margin-top: 18px; }
footer .creds .badge {
  border: 1px solid var(--ink-faint); padding: 6px 10px; border-radius: 4px;
  font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); background: var(--paper-warm);
}
@media (max-width: 880px) { footer .foot-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer .foot-inner { grid-template-columns: 1fr; } }

/* ============ Hero video (above-the-fold cinematic) ============ */
.hero-video {
  position: relative; width: 100%;
  height: 92vh; min-height: 560px; max-height: 1240px;
  overflow: hidden;
  background: #1a0e0a;
  border-bottom: 1px solid var(--ink);
}
.hero-video .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,154,74,0.22) 0, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(168,121,152,0.18) 0, transparent 55%),
    linear-gradient(160deg, #2a1a16 0%, #1a0e0a 60%, #0e0807 100%);
}
.hero-video .vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 26%, rgba(20,12,8,0.30) 58%, rgba(20,12,8,0.82) 100%);
  pointer-events: none;
}
.hero-video .placeholder-tag {
  position: absolute; top: 28px; left: 28px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(245,234,212,0.75);
  border: 1px solid rgba(245,234,212,0.3);
  padding: 5px 12px; border-radius: 999px;
  z-index: 2;
}
.hero-video .bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
/* While the tour film plays, the SAME element becomes the player: whole frame
   visible (letterboxed on black), above the vignette and copy, with the native
   controls. Nothing else on the page moves. */
.hero-video.playing .bg-video { object-fit: contain; background: #000; z-index: 5; }
.hero-video.playing .vignette,
.hero-video.playing .overlay-copy,
.hero-video.playing .scrollhint { display: none; }
.hero-video.playing .yt-close { z-index: 6; }
.hero-video .video-meta {
  position: absolute; top: 28px; right: 28px;
  display: flex; gap: 8px; align-items: center;
  z-index: 2;
}
.hero-video .video-meta button {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid rgba(245,234,212,0.4);
  color: var(--paper);
  background: rgba(0,0,0,0.25); backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: all 200ms ease;
}
.hero-video .video-meta button:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-video .center-play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 2; pointer-events: none;
}
.hero-video .center-play .ring { pointer-events: auto; cursor: pointer; }
.hero-video .yt-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; background: #000; }
.hero-video .yt-close {
  position: absolute; top: 20px; right: 20px; z-index: 6;
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(0,0,0,0.55); color: var(--paper);
  border: 1px solid rgba(245,234,212,0.4); padding: 8px 14px; border-radius: 999px; cursor: pointer;
}
.hero-video .yt-close:hover { background: var(--mustard-deep); border-color: var(--mustard-deep); }
.hero-video .center-play .ring {
  width: 116px; height: 116px; border-radius: 999px;
  border: 1.5px solid rgba(245,234,212,0.55);
  display: grid; place-items: center;
  background: rgba(245,234,212,0.10);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  cursor: pointer; color: var(--paper);
  transition: all 280ms cubic-bezier(0.22,1,0.36,1);
  animation: ringPulse 2.6s ease-in-out infinite;
}
.hero-video .center-play .ring:hover {
  transform: scale(1.06);
  background: var(--mustard-deep); border-color: var(--mustard-deep);
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,234,212,0.20); }
  50%      { box-shadow: 0 0 0 18px rgba(245,234,212,0); }
}
.hero-video .overlay-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(28px, 4vw, 60px) var(--gut) clamp(48px, 6vw, 88px);
  z-index: 3;
  color: var(--paper);
}
/* The lockup sits ON the page grid: the hero headline begins exactly where
   every headline after it begins. */
.hero-video .overlay-copy .lockup {
  max-width: var(--max); margin: 0 auto;
}
.hero-video .overlay-copy .lockup .eyebrow { color: var(--paper); opacity: 0.9; margin-bottom: 16px; display: block; }
/* Arrival: eyebrow, then headline — a beat, not a switch-on. Once. */
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } }
.hero-video .lockup .eyebrow { animation: heroRise 640ms cubic-bezier(0.22,1,0.36,1) 120ms both; }
.hero-video .lockup h1      { animation: heroRise 720ms cubic-bezier(0.22,1,0.36,1) 260ms both; }
@media (prefers-reduced-motion: reduce) {
  .hero-video .lockup .eyebrow, .hero-video .lockup h1 { animation: none; }
}
.hero-video .overlay-copy h1 {
  font-family: var(--serif); font-weight: 400;
  /* The hero carries the page's LARGEST type. It was 78px while section
     displays below it hit 84px — the most important words on the page were
     the quietest. Hero 92 > sections 72 restores the crescendo. */
  font-size: clamp(40px, 5.5vw, 92px);
  line-height: 1.08; letter-spacing: -0.018em;
  margin: 0; max-width: 24ch; color: var(--paper);
  text-wrap: balance;
}
.hero-video .overlay-copy h1 em { font-style: italic; font-weight: 500; color: var(--mustard); }
.hero-video .overlay-copy .right {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: rgba(245,234,212,0.92); max-width: 28ch;
  margin: 0; text-align: right;
}
.hero-video .scrollhint {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(245,234,212,0.6); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollHint 2s ease-in-out infinite;
}
.hero-video .scrollhint i {
  display: block; width: 1px; height: 28px; background: rgba(245,234,212,0.45);
}
/* Release: the overlay lets go as you scroll away, tied to the scroll
   itself rather than wiped by it. Progressive — browsers without
   scroll-driven animations simply scroll. */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-video .overlay-copy {
      animation: heroRelease linear both;
      animation-timeline: scroll();
      animation-range: 0 70vh;
    }
    @keyframes heroRelease {
      to { opacity: 0; transform: translateY(-28px); }
    }
  }
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(4px); opacity: 1; }
}
@media (max-width: 1280px) { .hero-video .scrollhint { display: none; } }
@media (max-width: 760px) {
  .hero-video .overlay-copy { grid-template-columns: 1fr; }
  .hero-video .overlay-copy .right { text-align: left; }
}

/* Welcome band that sits below the video */
.welcome {
  background: var(--paper);
  padding: clamp(48px, 6vw, 96px) var(--gut);
  border-bottom: 1px solid var(--ink-faint);
}
.welcome-inner { max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: end; }
.welcome .ctas { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.welcome .stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  padding-top: 24px; margin-top: 24px;
  border-top: 1px solid var(--ink-faint);
}
.welcome .stats .stat b {
  font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1; letter-spacing: -0.01em; color: var(--ink);
}
.welcome .stats .stat span {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
  display: block; margin-top: 4px;
}
@media (max-width: 880px) { .welcome-inner { grid-template-columns: 1fr; } }

/* ============ Layered scroll-in motion ============ */
.reveal { opacity: 0; transition: opacity 800ms cubic-bezier(0.22,1,0.36,1), transform 800ms cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
.reveal.up    { transform: translateY(28px); }
.reveal.up-sm { transform: translateY(14px); }
.reveal.left  { transform: translateX(-32px); }
.reveal.right { transform: translateX(32px); }
.reveal.scale { transform: scale(0.96); }
.reveal.in { opacity: 1; transform: none; }

/* Stagger children inside .reveal-stagger */
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 280ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 380ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 580ms; }
.reveal-stagger.in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scale-shape, .pc-detail-card { transition: none; animation: none; }
}

:focus-visible { outline: 2.5px solid var(--mustard-deep); outline-offset: 3px; border-radius: 4px; }

/* ============ Print — what a parent prints looks designed ============ */
@media print {
  .nav, footer.foot, .banner, .btn, .v2-btn-primary, .v2-btn-ghost,
  .v2-colophon, .pg-cta, .v2-tour-actions, .rm-toggle, .hero-video { display: none !important; }
  body, section, .band { background: #fff !important; color: #000 !important; }
  body::before { display: none; }
  a { color: #000; text-decoration: none; }
  .pg-qa-item, .pg-row, .pg-step, .v2-tuition-row { break-inside: avoid; }
  .pg-qa-item[open]::details-content { height: auto; }
}

/* The tour button in the bar wears the house green (Micah, 2026-09-06). The
   deeper moss keeps cream text readable at this size; the mark's sage is the
   hover. Same rule at every width — the phone-size compact button inherits it. */
.nav-cta-row .btn-primary { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--paper); font-weight: 700; }
.nav-cta-row .btn-primary:hover { background: var(--moss-deep); border-color: var(--moss-deep); color: var(--paper); }
