/* Pinecone Homepage v2 — Bigger swing styles
   All v2-prefixed classes. Keeps existing nav/hero/banner untouched. */

:root {
  --v2-gut: clamp(20px, 4vw, 64px);
  --v2-max: 1320px;
}

/* =============================================================
   PHOTO COMPONENT — replaces the lo-fi placeholders
   ============================================================= */
.v2-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
  isolation: isolate;
  /* A hairline inner edge, like a plate mounted in a book — the frame
     reads as intentional rather than a raw crop on paper. */
  box-shadow: inset 0 0 0 1px rgba(42, 26, 22, 0.10);
}
.v2-photo-img {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* The photograph lives; the mount holds still. Deliberately slow —
   an editorial drift, never a bounce. */
.v2-program-card:hover .v2-photo-img,
.v2-gallery-tile:hover .v2-photo-img,
.ch-media:hover .v2-photo-img { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) {
  .v2-photo-img { transition: none; }
  .v2-program-card:hover .v2-photo-img,
  .v2-gallery-tile:hover .v2-photo-img,
  .ch-media:hover .v2-photo-img { transform: none; }
}

.v2-photo-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 10px; border-radius: 999px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: calc(100% - 28px);
  z-index: 2;
}
.v2-photo-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.10) 0, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.20) 0, transparent 50%);
  mix-blend-mode: overlay;
}
.v2-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  /* Keep the mounted-print hairline above the image and the grade. */
  box-shadow: inset 0 0 0 1px rgba(42, 26, 22, 0.10);
  border-radius: 3px;
  pointer-events: none;
}

.v2-floating-tag {
  position: absolute; z-index: 3;
  background: var(--paper); color: var(--ink);
  padding: 10px 14px; border-radius: 2px;
  border: 1px solid var(--ink-faint);
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 14px 40px -20px rgba(0,0,0,0.4);
}
.v2-ft-label {
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
}
.v2-ft-value {
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--ink); line-height: 1.1;
}

/* =============================================================
   SHARED V2 PRIMITIVES
   ============================================================= */
.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mustard-deep);
  margin-bottom: 18px;
}
.v2-rule {
  width: 32px; height: 1.5px;
  background: var(--mustard-deep);
  display: block;
}
/* Inside a reveal, the rule draws itself in as the section arrives. */
.reveal .v2-eyebrow .v2-rule,
.reveal .v2-eyebrow-light .v2-rule {
  width: 0;
  transition: width 640ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}
.reveal.in .v2-eyebrow .v2-rule,
.reveal.in .v2-eyebrow-light .v2-rule { width: 32px; }
@media (prefers-reduced-motion: reduce) {
  .reveal .v2-eyebrow .v2-rule, .reveal .v2-eyebrow-light .v2-rule { width: 32px; transition: none; }
}

.v2-h-display {
  font-family: var(--serif); font-weight: 400;
  /* One step below the hero (92): sections state, the hero announces.
     At 84 every section shouted as loudly as the opening and the page
     had no crescendo. Scale is now 92 / 72 / 48 / 26. */
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98; letter-spacing: -0.022em;
  margin: 0; color: var(--ink); text-wrap: balance;
}
.v2-h-display em { font-style: italic; font-weight: 500; color: var(--mustard-deep); }

.v2-h-section {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.04; letter-spacing: -0.012em;
  margin: 0; color: var(--ink); text-wrap: balance;
}
.v2-h-section em { font-style: italic; font-weight: 500; color: var(--mustard-deep); }

.v2-body { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.v2-body-lg { font-family: var(--sans); font-size: 19px; line-height: 1.55; color: var(--ink-2); }

.v2-link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: gap 240ms ease, color 240ms ease;
}
.v2-link-arrow span { transition: transform 240ms ease; }
.v2-link-arrow:hover { gap: 16px; color: var(--mustard-deep); }
.v2-link-arrow:hover span { transform: translateX(4px); }

/* =============================================================
   1. WELCOME LEDE
   ============================================================= */
.v2-welcome {
  background: var(--paper);
  padding: clamp(72px, 8vw, 132px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
  position: relative; overflow: hidden;
}
/* The thesis, drawn: light enough to read as a watercolor wash on the
   paper, present enough to balance the deliberately empty right field. */
.v2-welcome-whorl {
  position: absolute; top: 50%; right: clamp(24px, 9vw, 200px);
  transform: translateY(-50%);
  opacity: 0.34; pointer-events: none; user-select: none;
}
.v2-welcome-inner { position: relative; z-index: 1; }
/* It blooms when the SECTION arrives, not on page load — the unfurling
   is the argument, so it should happen while you're looking. */
.v2-welcome .whorl-petal { animation-play-state: paused; }
.v2-welcome.in .whorl-petal { animation-play-state: running; }
@media (max-width: 1180px) { .v2-welcome-whorl { display: none; } }
.v2-welcome-inner { max-width: var(--v2-max); margin: 0 auto; }
.v2-welcome-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 26px;
}
.v2-welcome-eyebrow .v2-rule { background: var(--ink-mute); }
.v2-welcome-kicker {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.04; letter-spacing: -0.012em;
  color: var(--ink); margin: clamp(40px, 4.5vw, 64px) 0 0;
  padding-top: clamp(26px, 3vw, 40px); border-top: 1px solid var(--ink-faint);
}
.v2-welcome-kicker em { font-style: italic; color: var(--mustard-deep); }
.v2-welcome-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.0;
  letter-spacing: -0.022em; max-width: 24ch;
  margin: 0 0 clamp(36px, 4vw, 56px); color: var(--ink); text-wrap: balance;
}
.v2-welcome-h em { font-style: italic; font-weight: 500; color: var(--mustard-deep); }
.v2-welcome-lede + .v2-welcome-lede { margin-top: 20px; }
.v2-welcome-grid {
  display: block; max-width: 62ch;
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--ink-faint);
}
.v2-welcome-lede {
  font-family: var(--sans); font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 50ch;
}
.v2-welcome-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.v2-stat b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px); line-height: 1;
  letter-spacing: -0.01em; color: var(--ink); display: block;
}
.v2-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: 6px;
}
@media (max-width: 880px) {
  .v2-welcome-grid { grid-template-columns: 1fr; }
  .v2-welcome-meta { grid-template-columns: 1fr; gap: 16px; }
}

/* =============================================================
   2. PHILOSOPHY SECTION
   ============================================================= */
.v2-philosophy {
  background: var(--paper-warm);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-philo-inner { max-width: var(--v2-max); margin: 0 auto; }
.v2-philo-head {
  text-align: center; max-width: 36rem; margin: 0 auto clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; align-items: center;
}
.v2-philo-head .v2-eyebrow { margin-bottom: 22px; }
.v2-philo-lede {
  font-family: var(--sans); font-size: 18px; line-height: 1.55;
  color: var(--ink-2); margin: 24px 0 0; max-width: 42ch;
}
.v2-philo-stage { margin: 0 auto; }

/* ===== Vector flower diagram (Pinecone Method) ===== */
.flower-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  max-width: 920px;
  margin: 0 auto;
}
.flower-stage { display: flex; flex-direction: column; align-items: center; gap: 28px; width: 100%; }
.flower-svg {
  width: 100%; height: auto;
  max-width: 760px;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(42,26,22,0.10));
  cursor: default;
}

/* Petal — animates outward lift + label fade */
.flower-petal {
  cursor: pointer;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, filter 280ms ease;
  transform-box: fill-box;
  transform-origin: center;
}
.flower-petal:hover { filter: drop-shadow(0 6px 18px rgba(42,26,22,0.18)); }
.flower-petal.petal-dim { opacity: 0.42; }
.flower-petal.petal-lifted { filter: drop-shadow(0 10px 26px rgba(42,26,22,0.25)); }
.flower-petal-label {
  opacity: 0;
  transition: opacity 320ms ease 80ms;
}
.flower-petal-label.visible { opacity: 1; }

/* Section name — gentle highlight */
.flower-section-name {
  transition: opacity 280ms ease;
}
.flower-section.dim .flower-section-name { opacity: 0.35; }

/* Center */
.flower-core { cursor: pointer; transition: transform 320ms ease; }
.flower-core:hover { transform: scale(1.025); transform-box: fill-box; transform-origin: center; }
.flower-core circle:first-of-type { transition: fill 240ms ease; }
.flower-core:hover circle:first-of-type { fill: #fff8e6; }

/* Live caption strip — slides/fades between states */
.flower-live {
  width: min(640px, 100%);
  padding: 22px 26px;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  background: rgba(255,255,255,0.35);
  text-align: center;
  animation: flower-live-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 92px;
  display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center;
}
@keyframes flower-live-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.flower-live-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-mute);
}
.flower-live-rule {
  width: 22px; height: 1.5px; background: var(--mustard-deep); display: inline-block;
}
.flower-live-dot { opacity: 0.5; padding: 0 2px; }
.flower-live-body {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.45;
  color: var(--ink-2); margin: 0; max-width: 56ch;
  text-wrap: pretty;
}

@media (max-width: 700px) {
  .flower-live { padding: 16px 18px; }
}

/* =============================================================
   3. HERITAGE
   ============================================================= */
.v2-heritage {
  background: var(--paper);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-heritage-grid {
  max-width: var(--v2-max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
.v2-heritage-photo-a { grid-column: 1; grid-row: 1 / span 2; align-self: stretch; }
.v2-heritage-photo-a .v2-photo { height: 100%; min-height: 580px; aspect-ratio: auto; }
.v2-heritage-copy {
  grid-column: 2; grid-row: 1;
  padding-top: clamp(20px, 3vw, 60px);
}
.v2-heritage-copy .v2-h-display { margin: 0 0 26px; max-width: 14ch; }
.v2-heritage-copy .v2-body-lg { max-width: 44ch; margin: 0 0 36px; }
.v2-heritage-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 24px 0; margin-bottom: 28px;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-heritage-stats b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 3vw, 44px); line-height: 1;
  color: var(--mustard-deep); display: block;
}
.v2-heritage-stats 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: 8px;
}
.v2-heritage-photo-b { grid-column: 2; grid-row: 2; }
@media (max-width: 980px) {
  .v2-heritage-grid { grid-template-columns: 1fr; }
  .v2-heritage-photo-a { grid-column: 1; grid-row: auto; }
  .v2-heritage-photo-a .v2-photo { min-height: 0; aspect-ratio: 4/5; }
  .v2-heritage-copy, .v2-heritage-photo-b { grid-column: 1; grid-row: auto; padding-top: 0; }
}

/* =============================================================
   4. CONCIERGE
   ============================================================= */
.v2-concierge {
  background: var(--paper-deep);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-concierge-inner { max-width: var(--v2-max); margin: 0 auto; }
.v2-concierge-head {
  max-width: 44rem; margin: 0 0 clamp(48px, 6vw, 88px);
}
.v2-concierge-head .v2-h-display { margin: 0 0 28px; max-width: 18ch; }
.v2-concierge-feature {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: start;
}
.v2-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 0.8fr;
  gap: 14px;
  min-height: 520px;
}
.v2-collage-a { grid-column: 1; grid-row: 1 / span 2; }
.v2-collage-a .v2-photo { height: 100%; aspect-ratio: auto; }
.v2-collage-b { grid-column: 2; grid-row: 1; }
.v2-collage-b .v2-photo { height: 100%; aspect-ratio: auto; }
.v2-collage-c { grid-column: 2; grid-row: 2; }
.v2-collage-c .v2-photo { height: 100%; aspect-ratio: auto; }
.v2-collage-num {
  position: absolute; bottom: 18px; left: 18px; z-index: 4;
  background: var(--ink); color: var(--paper);
  padding: 18px 22px; border-radius: 2px;
  display: flex; flex-direction: column; align-items: flex-start;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.45);
}
.v2-collage-num b {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 56px; line-height: 0.9; letter-spacing: -0.02em;
  color: var(--mustard);
}
.v2-collage-num span {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,234,212,0.75); margin-top: 4px;
}

/* =============================================================
   4b. CONCIERGE PROSE — replaces the old checklist
   ============================================================= */
.v2-prose {
  display: flex; flex-direction: column; gap: 22px;
  padding-top: 12px;
}
.v2-prose-lead {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25;
  color: var(--ink); margin: 0; letter-spacing: -0.008em;
  text-wrap: balance;
}
.v2-prose-lead em {
  font-style: italic; font-weight: 500; color: var(--mustard-deep);
}
.v2-prose p:not(.v2-prose-lead):not(.v2-prose-pull) {
  font-family: var(--sans); font-size: 17px; line-height: 1.7;
  color: var(--ink-2); margin: 0; max-width: 48ch;
}
.v2-prose p b {
  font-weight: 600; color: var(--ink);
}
.v2-prose-close {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 2.9vw, 40px); line-height: 1.12;
  letter-spacing: -0.014em; color: var(--ink);
  margin: clamp(30px, 3.4vw, 46px) 0 0; max-width: 20ch;
  text-wrap: balance;
}
.v2-prose-close em { font-style: italic; color: var(--mustard-deep); }
.v2-heritage-coda {
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: var(--ink-2); margin: 14px 0 0; max-width: 42ch;
}
.v2-prose-pull {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.3;
  color: var(--mustard-deep); margin: 8px 0 0;
  padding-top: 22px; border-top: 1px solid var(--ink-faint);
  letter-spacing: -0.005em;
}

/* =============================================================
   4c. CONCIERGE — old checklist styles (kept for safety) */
.v2-provided {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.v2-provided li {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  align-items: start;
}
.v2-provided li:last-of-type { border-bottom: none; }
.v2-pn {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--mustard-deep);
  padding-top: 4px;
}
.v2-provided h4 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  line-height: 1.15; margin: 0 0 6px; color: var(--ink);
  letter-spacing: -0.005em;
}
.v2-provided p {
  margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2);
  max-width: 38ch;
}
.v2-provided-foot {
  grid-template-columns: 1fr !important;
  border: none !important; padding-top: 12px !important;
}
.v2-provided-foot em {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1.2; color: var(--mustard-deep);
}
@media (max-width: 980px) {
  .v2-concierge-feature { grid-template-columns: 1fr; }
  .v2-collage { min-height: 0; }
}

/* =============================================================
   5. CALENDAR OF CARE (filmstrip)
   ============================================================= */
.v2-calendar { padding-top: clamp(40px, 5vw, 72px); border-top: 1px solid var(--ink-faint); }
.v2-calendar-head { margin-bottom: clamp(32px, 4vw, 56px); max-width: 40rem; }
.v2-calendar-head .v2-h-section { margin: 0 0 14px; }
.v2-calendar-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
}
.v2-calendar-card {
  display: flex; flex-direction: column; gap: 22px;
}
.v2-calendar-body { padding: 0 4px; }
.v2-cal-tag {
  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); margin-bottom: 12px;
  padding: 4px 10px; border: 1px solid var(--mustard-deep);
  border-radius: 999px;
}
.v2-calendar-card h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; line-height: 1.1; margin: 0 0 10px;
  color: var(--ink); letter-spacing: -0.005em;
}
.v2-calendar-card p {
  margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2);
}
@media (max-width: 880px) {
  .v2-calendar-strip { grid-template-columns: 1fr; }
}
.v2-cadence { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 40px); }
.v2-cadence-row { border-top: 1px solid var(--ink-faint); padding-top: 18px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.v2-cadence-row h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.1; margin: 2px 0 0; color: var(--ink); letter-spacing: -0.005em; }
.v2-cadence-row p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
@media (max-width: 880px) {
  .v2-cadence { grid-template-columns: 1fr; gap: 26px; }
}

/* =============================================================
   6. PROGRAMS
   ============================================================= */
.v2-programs {
  background: var(--paper);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-programs-inner { max-width: var(--v2-max); margin: 0 auto; }
.v2-programs-head { margin: 0 0 clamp(48px, 6vw, 80px); max-width: none; }
.v2-programs-head .v2-h-display { margin: 0; max-width: 16ch; }
.v2-programs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
}
.v2-program-card {
  background: var(--paper-warm);
  border: 1px solid var(--ink-faint);
  display: flex; flex-direction: column;
  transition: transform 360ms cubic-bezier(0.22,1,0.36,1), box-shadow 360ms ease;
}
.v2-program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(42,26,22,0.25);
}
.v2-program-card .v2-photo { border-radius: 0; }
.v2-program-body {
  padding: clamp(24px, 2.6vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
}
.v2-program-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--ink-faint);
}
.v2-program-ratio {
  display: inline-flex; align-items: baseline; gap: 8px;
}
.v2-program-ratio b {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  color: var(--ink); letter-spacing: -0.005em;
}
.v2-program-ratio span {
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--ink-mute);
}
.v2-program-ratio { flex: 0 0 auto; }
.v2-program-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 38px; line-height: 1; margin: 0;
  letter-spacing: -0.012em; color: var(--ink);
}
.v2-program-card h3 em { font-style: italic; color: var(--mustard-deep); font-weight: 500; }
.v2-program-age {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}
.v2-program-card p {
  margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-2);
}
.v2-program-card .v2-link-arrow { margin-top: 8px; align-self: flex-start; }
@media (max-width: 880px) {
  .v2-programs-grid { grid-template-columns: 1fr; }
}

/* ===== Mobile compositions ===== */
@media (max-width: 700px) {
  .v2-welcome, .v2-heritage, .v2-concierge, .v2-programs, .v2-tour, .v2-tuition {
    padding-top: clamp(56px, 13vw, 80px); padding-bottom: clamp(56px, 13vw, 80px);
  }
  /* Programs: full-bleed photo, copy inset */
  .v2-programs-grid { gap: 44px; }
  .v2-program-card > .v2-photo { aspect-ratio: 5/4; }
  .v2-program-card h3 { font-size: 30px; }
  /* Concierge collage: stack to a 2-up + wide */
  .v2-collage { grid-template-columns: 1fr 1fr; gap: 8px; }
  .v2-collage-a { grid-column: 1 / -1; grid-row: auto; }
  .v2-collage-a .v2-photo { aspect-ratio: 16/10; }
  .v2-collage-b, .v2-collage-c { grid-column: auto; grid-row: auto; }
  .v2-collage-b .v2-photo, .v2-collage-c .v2-photo { aspect-ratio: 1/1; height: auto; }
  .v2-collage-num { position: static; margin-top: 10px; }
  /* Ocean: taller crop so the caption has room */
  .v2-gallery-solo .v2-gt-feature .v2-photo { aspect-ratio: 4/5; }
  .v2-gt-caption { padding: 20px; }
  .v2-gt-caption h3 { font-size: 26px; }
  .v2-prose-close { font-size: 27px; max-width: 16ch; }
  .v2-tour-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .v2-btn-primary, .v2-btn-ghost { justify-content: center; min-height: 52px; }
  .v2-link-quiet { text-align: center; }
}

/* =============================================================
   7. AQUARIUM
   ============================================================= */
.v2-aquarium {
  background: var(--ink);
  padding: 0;
}
.v2-aquarium-frame { position: relative; }
.v2-aquarium-photo { border-radius: 0; }
.v2-aquarium-photo .v2-photo-img {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* The photograph lives; the mount holds still. Deliberately slow —
   an editorial drift, never a bounce. */
.v2-program-card:hover .v2-photo-img,
.v2-gallery-tile:hover .v2-photo-img,
.ch-media:hover .v2-photo-img { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) {
  .v2-photo-img { transition: none; }
  .v2-program-card:hover .v2-photo-img,
  .v2-gallery-tile:hover .v2-photo-img,
  .ch-media:hover .v2-photo-img { transform: none; }
}

.v2-photo-tag {
  background: rgba(0,0,0,0.4); border-color: rgba(245,234,212,0.3);
}
.v2-aquarium-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: clamp(40px, 6vw, 100px) var(--v2-gut);
  z-index: 3;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%);
}
.v2-aquarium-copy {
  max-width: 44rem;
}
.v2-aquarium-copy .v2-h-display { margin: 0 0 22px; }
.v2-aquarium-stats {
  display: flex; gap: clamp(24px, 4vw, 48px); margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(245,234,212,0.2);
}
.v2-aquarium-stats b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px); line-height: 1;
  color: var(--mustard); display: block;
}
.v2-aquarium-stats span {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,234,212,0.7); display: block; margin-top: 6px;
}

/* =============================================================
   8. GALLERY STRIP
   ============================================================= */
.v2-gallery {
  background: var(--paper);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-gallery-head { max-width: var(--v2-max); margin: 0 auto clamp(40px, 5vw, 64px); }
.v2-gallery-grid {
  max-width: var(--v2-max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.v2-gallery-tile { overflow: hidden; }
.v2-gallery-tile .v2-photo { height: 100%; aspect-ratio: auto; }
.v2-gt-tall  { grid-row: 1 / span 2; }
.v2-gt-wide  { grid-column: span 2; }
.v2-gt-small { /* 1x1 default */ }
.v2-gallery-solo { display: block; }
.v2-gallery-solo .v2-gt-feature { grid-column: auto; grid-row: auto; }
.v2-gt-feature { grid-column: span 2; grid-row: span 2; position: relative; }
.v2-gt-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(20px, 2.5vw, 36px); background: linear-gradient(180deg, rgba(10,24,40,0) 0%, rgba(10,24,40,0.72) 75%); }
.v2-gt-caption h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.08; margin: 0 0 8px; color: var(--paper); letter-spacing: -0.01em; }
.v2-gt-caption h3 em { font-style: italic; color: var(--mustard); }
.v2-gt-caption p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(245,234,212,0.85); max-width: 46ch; }
@media (max-width: 980px) {
  .v2-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
  }
  .v2-gt-tall { grid-row: span 2; }
  .v2-gt-wide { grid-column: span 2; grid-row: span 1; }
  .v2-gt-feature { grid-column: span 2; grid-row: span 2; }
}

/* =============================================================
   9. PROMISE
   ============================================================= */
.v2-promise {
  background: var(--ink); color: var(--paper);
  padding: clamp(96px, 11vw, 180px) var(--v2-gut);
  position: relative; overflow: hidden;
}
.v2-promise::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,154,74,0.12) 0, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(168,121,152,0.10) 0, transparent 55%);
  pointer-events: none;
}
.v2-promise-inner {
  max-width: var(--v2-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
  position: relative; z-index: 1;
}
.v2-promise-quote { position: relative; }
.v2-quote-mark {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(140px, 14vw, 220px); line-height: 0.5;
  color: var(--mustard-deep); opacity: 0.55;
  display: block; margin-bottom: -10px;
}
.v2-promise-quote blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.15;
  color: var(--paper); margin: 0; letter-spacing: -0.012em;
  text-wrap: balance;
}
.v2-promise-quote blockquote em {
  font-style: italic; font-weight: 500; color: var(--mustard);
}
.v2-promise-quote cite {
  display: block; margin-top: 28px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(245,234,212,0.6); font-style: normal;
}
.v2-promise-body {
  border-left: 1px solid rgba(245,234,212,0.2);
  padding-left: clamp(28px, 3.5vw, 56px);
}
.v2-promise-body p {
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  color: rgba(245,234,212,0.85); margin: 0 0 28px;
}
.v2-signature {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 24px; color: var(--mustard);
}
@media (max-width: 880px) {
  .v2-promise-inner { grid-template-columns: 1fr; }
  .v2-promise-body { border-left: none; border-top: 1px solid rgba(245,234,212,0.2); padding-left: 0; padding-top: 32px; }
}

/* Layout rhythm — vary section header composition */
.v2-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.v2-head-center .v2-eyebrow { justify-content: center; }
.v2-head-center .v2-h-display,
.v2-head-center .v2-body-lg,
.v2-head-center .v2-tour-lede { margin-left: auto; margin-right: auto; }
.v2-head-center .v2-tour-actions { justify-content: center; }
.v2-head-split {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: end;
}
.v2-head-split .v2-body-lg { margin: 0; }
@media (max-width: 880px) {
  .v2-head-split { grid-template-columns: 1fr; gap: 22px; align-items: start; }
}

/* Scroll-driven motion (progressive enhancement) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .v2-photo {
      animation: photoRise linear both;
      animation-timeline: view();
      animation-range: entry 8% entry 62%;
    }
    @keyframes photoRise {
      from { transform: scale(0.965) translateY(22px); opacity: 0.72; }
      to   { transform: none; opacity: 1; }
    }
    .v2-gt-feature .v2-photo {
      animation: oceanWiden linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 78%;
    }
    @keyframes oceanWiden {
      from { clip-path: inset(0 7% round 2px); opacity: 0.8; }
      to   { clip-path: inset(0 0 round 2px); opacity: 1; }
    }
  }
}

/* =============================================================
   DAY RHYTHM
   ============================================================= */
.v2-day {
  background: var(--paper-warm);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-day-inner { max-width: 60rem; margin: 0 auto; }
.v2-day-head { max-width: 40rem; margin: 0 auto clamp(48px, 5vw, 72px); }
.v2-day-head .v2-h-display { margin: 0 0 20px; }
.v2-day-list { list-style: none; margin: 0; padding: 0; }
.v2-day-row {
  display: grid; grid-template-columns: 88px 1fr; gap: clamp(20px, 3vw, 44px);
  padding: 24px 0; border-top: 1px solid var(--ink-faint);
  align-items: baseline;
}
.v2-day-row:last-child { border-bottom: 1px solid var(--ink-faint); }
.v2-day-time {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--mustard-deep); padding-top: 5px;
  font-variant-numeric: tabular-nums;
}
.v2-day-copy h3 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2.1vw, 26px);
  line-height: 1.15; margin: 0 0 7px; color: var(--ink); letter-spacing: -0.006em;
}
.v2-day-copy p {
  font-family: var(--sans); font-size: 15.5px; line-height: 1.6;
  color: var(--ink-2); margin: 0; max-width: 54ch;
}
.v2-day-close { margin-top: clamp(38px, 4vw, 56px); max-width: 24ch; }
@media (max-width: 600px) {
  .v2-day-row { grid-template-columns: 1fr; gap: 6px; }
  .v2-day-time { padding-top: 0; }
}

/* =============================================================
   TUITION — dark band, ledger-style rows
   ============================================================= */
.v2-tuition {
  background: var(--ink); color: var(--paper);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  position: relative; overflow: hidden;
}
/* The same faint warmth the Promise band carries — the dark rooms of the
   site share one atmosphere instead of one being flat. */
.v2-tuition::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(200,154,74,0.10) 0, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(168,121,152,0.08) 0, transparent 55%);
  pointer-events: none;
}
.v2-tuition-inner { position: relative; z-index: 1; }
.v2-tuition-inner { max-width: 68rem; margin: 0 auto; }
.v2-tuition-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(48px, 5vw, 72px); }
.v2-tuition-head .v2-eyebrow-light { color: var(--mustard); justify-content: center; }
.v2-tuition-head .v2-eyebrow-light .v2-rule { background: var(--mustard); }
.v2-tuition-head .v2-h-display { color: var(--paper); margin: 0 0 22px; }
.v2-tuition-head .v2-h-display em { color: var(--mustard); }
.v2-tuition-lede {
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  color: rgba(245,234,212,0.78); margin: 0;
}
.v2-tuition-rows { display: flex; flex-direction: column; }
.v2-tuition-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 26px 0 26px 12px; margin-left: -12px; border-radius: 3px;
  border-bottom: 1px solid rgba(245,234,212,0.16);
  transition: background 260ms ease;
}
.v2-tuition-row:hover { background: rgba(245, 234, 212, 0.05); }
.v2-tuition-row:hover .v2-tuition-price b { color: var(--mustard); }
.v2-tuition-row:first-child { border-top: 1px solid rgba(245,234,212,0.16); }
.v2-tuition-name h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1; margin: 0 0 8px;
  color: var(--mustard); letter-spacing: -0.008em;
}
.v2-tuition-name span {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,234,212,0.55);
}
/* Two columns shared by EVERY row, label first: a fixed label column with the
   labels flushed RIGHT so they all end on one edge, then a max-content amount
   column — the figures are tabular, so identical widths, and every amount
   starts on the same edge. The full-week row just fills two grid rows. */
.v2-tuition-price {
  display: grid; grid-template-columns: 196px max-content;
  column-gap: 16px; row-gap: 8px; align-items: baseline; flex: 0 0 auto;
}
.v2-tuition-price b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1; color: var(--paper);
  letter-spacing: -0.012em;
  font-variant-numeric: tabular-nums;
  transition: color 260ms ease;
}
.v2-tuition-price span {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,234,212,0.5);
  text-align: right; white-space: nowrap;
}
/* Full week carries two rates in ONE band — the age band sits with its own
   number so the pair can never be read across the wrong row. */
.v2-concierge-close {
  margin: clamp(52px, 6vw, 84px) auto 0; max-width: 22ch;
  text-align: center; font-size: clamp(32px, 3.6vw, 50px);
}
.v2-programs-close { margin-top: clamp(44px, 5vw, 68px); max-width: 22ch; }
.v2-tuition-close {
  color: var(--paper); margin: clamp(40px, 4.5vw, 60px) auto 0;
  max-width: 20ch; text-align: center;
}
.v2-tuition-close em { color: var(--mustard); }
.v2-tuition-note {
  font-family: var(--sans); font-size: 14.5px; line-height: 1.6;
  color: rgba(245,234,212,0.6); margin: clamp(28px, 3vw, 40px) 0 0; text-align: center;
}
/* PHONE (Micah, 2026-09-05, reading the live site on his phone): the row
   stacks here, and the price block was inheriting the desktop's fixed
   196px label column — which parked every figure in the MIDDLE of the
   screen, ending 52px short of the right edge, adrift. A ledger keeps its
   figures on the right margin. So on a phone the price block stretches the
   full row, the label column collapses to whatever is left (its text still
   flushed right, hard against its own amount), and the amount column —
   max-content, tabular figures, identical widths — ends flush on the row's
   right edge. Name and schedule stay above, on the left. */
@media (max-width: 600px) {
  .v2-tuition-row {
    flex-direction: column; align-items: flex-start; gap: 16px;
    padding-top: 24px; padding-bottom: 24px;
  }
  .v2-tuition-price {
    align-self: stretch;
    grid-template-columns: 1fr max-content;
    column-gap: 14px; row-gap: 12px;
    justify-items: end;
  }
}
.v2-link-quiet {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
  align-self: center; transition: color 200ms ease;
}
.v2-link-quiet:hover { color: var(--mustard-deep); }

/* =============================================================
   10. TOUR CTA — velvet rope
   ============================================================= */
.v2-tour {
  background: var(--paper-warm);
  padding: clamp(80px, 9vw, 140px) var(--v2-gut);
  border-bottom: 1px solid var(--ink-faint);
}
.v2-tour-inner {
  max-width: var(--v2-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.v2-tour-copy .v2-h-display { margin: 0 0 28px; }
.v2-tour-lede {
  font-family: var(--sans); font-size: 18px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 18px; max-width: 50ch;
}
.v2-tour-lede b { font-weight: 600; color: var(--ink); }
.v2-tour-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0;
}
.v2-btn-primary, .v2-btn-ghost {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 24px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 14px;
  transition: all 240ms cubic-bezier(0.22,1,0.36,1); cursor: pointer;
  border: 1.5px solid;
}
.v2-btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.v2-btn-primary:hover { background: var(--mustard-deep); border-color: var(--mustard-deep); }
.v2-btn-primary span { font-family: var(--serif); font-size: 18px; line-height: 1; transition: transform 240ms ease; }
.v2-btn-primary:hover span { transform: translateX(4px); }
.v2-btn-primary:active, .v2-btn-ghost:active { transform: translateY(1px); }
.v2-btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.v2-btn-ghost:hover { background: var(--ink); color: var(--paper); }

.v2-tour-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--ink-faint);
}
.v2-tour-meta div { display: flex; flex-direction: column; gap: 4px; }
.v2-meta-label {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.v2-tour-meta div > span:last-child {
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--ink); line-height: 1.2;
}

.v2-tour-photo { position: relative; }
.v2-velvet-rope {
  position: absolute; bottom: 24px; right: 24px; z-index: 4;
  background: var(--paper); color: var(--ink);
  padding: 22px 26px; border-radius: 2px;
  display: flex; flex-direction: column; align-items: flex-end;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.5);
  border: 1px solid var(--ink-faint);
}
.v2-vr-tag {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--mustard-deep); margin-bottom: 6px;
}
.v2-vr-num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 64px; line-height: 0.9; color: var(--ink);
  letter-spacing: -0.02em;
}
.v2-vr-sub {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 4px;
}
.v2-tour-faq { grid-column: 1 / -1; margin-top: clamp(48px, 6vw, 80px); padding-top: clamp(36px, 4vw, 56px); border-top: 1px solid rgba(245,234,212,0.16); }
.v2-tour-faq .v2-eyebrow { margin-bottom: 24px; }
.v2-tour-faq .v2-faq-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .v2-tour-inner { grid-template-columns: 1fr; }
  .v2-tour-meta { grid-template-columns: 1fr; gap: 14px; }
  .v2-tour-faq .v2-faq-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   11. FAQ STRIP
   ============================================================= */
.v2-faq {
  background: var(--paper-deep);
  padding: clamp(72px, 8vw, 120px) var(--v2-gut);
}
.v2-faq-inner { max-width: var(--v2-max); margin: 0 auto; }
.v2-faq-head { margin-bottom: clamp(36px, 4vw, 56px); max-width: 40rem; }
.v2-faq-head .v2-h-section { margin: 0; }
.v2-faq-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.v2-faq-cell {
  background: var(--paper);
  padding: clamp(24px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--ink-faint);
}
.v2-faq-num {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--mustard-deep);
}
.v2-faq-cell h5 {
  font-family: var(--serif); font-weight: 500; font-size: 19px;
  line-height: 1.2; margin: 0; color: var(--ink);
  letter-spacing: -0.005em;
}
.v2-faq-cell p {
  margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
}
@media (max-width: 980px) {
  .v2-faq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v2-faq-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   DESKTOP READING PASS (2026-08-02)
   15.5–16px prose in a 1920px window reads dainty — marketing prose
   never goes under 17px on a desktop. Applied only at >=1440 so the
   designed density holds on smaller screens.
   ============================================================= */
@media (min-width: 1440px) {
  .v2-body { font-size: 17px; }
  .v2-body-lg { font-size: 20px; }
  .v2-welcome-lede { font-size: 20px; }
  .v2-prose p:not(.v2-prose-lead):not(.v2-prose-pull) { font-size: 17.5px; line-height: 1.72; }
  .v2-program-card p { font-size: 16.5px; }
  .v2-day-copy p { font-size: 16.5px; }
  .v2-tuition-lede { font-size: 18px; }
  .v2-tuition-note { font-size: 15px; }
  .v2-tour-lede { font-size: 19px; }
  .v2-cadence-row p, .v2-calendar-card p { font-size: 16px; }
  .v2-faq-cell p { font-size: 15.5px; }
}

/* =============================================================
   ENHANCED REVEAL MOTION (override base)
   ============================================================= */
.reveal { transition: opacity 560ms cubic-bezier(0.22,1,0.36,1), transform 560ms cubic-bezier(0.22,1,0.36,1); }
.reveal.up    { transform: translateY(40px); }
.reveal.up-sm { transform: translateY(20px); }
.reveal.left  { transform: translateX(-48px); }
.reveal.right { transform: translateX(48px); }
.reveal.scale { transform: scale(0.94); }
.reveal.in { opacity: 1; transform: none; }

/* Ambient loop — a background, not a player. Fills its frame exactly as
   a Photo background does, and carries no controls by design. */
.v2-ambient {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* 2026-09-05 (Micah): the short dash before every eyebrow label goes. The
   label sits flush where the dash began; the reveal no longer animates it. */
.v2-rule { display: none !important; width: 0 !important; }
.v2-eyebrow, .v2-eyebrow-light, .v2-welcome-eyebrow, .pg-eyebrow { gap: 0; }

/* ─── Packing list card (Concierge). Same dark tile, now legible at a glance. ─── */
.v2-packlist { padding: 16px 20px 14px; min-width: 190px; }
.v2-packlist-title {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,234,212,0.55); margin-bottom: 8px;
}
.v2-packlist ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.v2-packlist li { font-family: var(--serif); font-size: 16px; line-height: 1.3; color: rgba(245,234,212,0.55); }
.v2-packlist li s { text-decoration-thickness: 1px; text-decoration-color: rgba(245,234,212,0.7); }
.v2-packlist li.v2-packlist-keep {
  color: var(--paper); font-weight: 500; font-size: 19px; margin-top: 6px;
  padding-top: 8px; border-top: 1px solid rgba(245,234,212,0.18);
}
@media (max-width: 760px) { .v2-packlist { width: 100%; box-sizing: border-box; } .v2-packlist li { font-size: 17px; } }

/* Nothing decorative may widen the page: the heritage copy block and the
   footer's oversized pressmark both poked past the right edge at ~640px. */
.v2-heritage { overflow-x: clip; }
footer.foot { overflow: hidden; }

/* Phones: the packing list spans both collage columns, hugs its own height,
   and sits right under the photos — no half-width tower, no empty gap. */
@media (max-width: 760px) {
  .v2-collage { height: auto; min-height: 0; grid-auto-rows: auto; align-items: start; }
  .v2-collage-num.v2-packlist { grid-column: 1 / -1; grid-row: auto; align-self: start; height: auto; margin-top: 8px; }
}

/* The collage's desktop rows are proportional (1fr / 0.8fr); stacked on a
   phone that proportion forces a tall empty row above the packing list.
   Rows follow their content when the collage stacks. */
@media (max-width: 980px) { .v2-collage { grid-template-rows: auto; grid-auto-rows: auto; } }

/* The reef runs edge to edge (Micah, 2026-09-06: "make the aquarium full bleed"):
   no gutters, no max-width, no radius, no padding band around it. */
.v2-gallery.v2-gallery-bleed { padding: 0; border-bottom: none; }
.v2-gallery-bleed .v2-gallery-grid { max-width: none; margin: 0; width: 100%; }
.v2-gallery-bleed .v2-gallery-tile, .v2-gallery-bleed .v2-photo, .v2-gallery-bleed .v2-photo-img, .v2-gallery-bleed .v2-ambient { border-radius: 0; }
.v2-gallery-bleed .v2-gt-caption { padding-left: var(--v2-gut); padding-right: var(--v2-gut); }

/* Phones: tuition as a receipt — name + days on the left, amount on the right,
   its small label beneath it. Half the height of the stacked version.
   (Micah, 2026-09-06: "laid out better you'll be able to shrink it up a bit".) */
@media (max-width: 760px) {
  .v2-tuition-row { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 18px 0; }
  .v2-tuition-name { flex: 1 1 auto; min-width: 0; }
  .v2-tuition-name h3 { font-size: 24px; margin-bottom: 5px; }
  .v2-tuition-name span { font-size: 9.5px; }
  .v2-tuition-price { flex: 0 0 auto; grid-template-columns: max-content; justify-items: end; column-gap: 0; row-gap: 1px; text-align: right; }
  .v2-tuition-price b { font-size: 26px; line-height: 1.05; }
  .v2-tuition-price > span { font-size: 8.5px; letter-spacing: 0.14em; white-space: nowrap; }
  .v2-tuition-price > b + span { margin-bottom: 0; }
  .v2-tuition-price > span + b { margin-top: 0; }
  /* two tiers in the full-week row: the breath goes ABOVE the second label, not between the label and its amount */
  .v2-tuition-price > span:nth-of-type(2) { margin-top: 12px; }
}
