/* ALPS — FIND-style motion grammar on cream-luxury surface
   ============================================ */

:root {
  --cream: #F2EBDC;
  --cream-deep: #EBE3D1;
  --cream-warm: #E6DCC4;
  --cream-soft: #F7F1E2;
  --gold: #B8924C;
  --gold-soft: #C9A567;
  --gold-deep: #9A7838;
  --gold-pale: #D9BE85;
  --ink: #0E0E0E;
  --ink-warm: #1F1A12;
  --ink-soft: #2A241A;
  --muted: #6B6457;
  --muted-light: #8A8270;
  --rule: rgba(14,14,14,0.12);
  --rule-soft: rgba(14,14,14,0.06);

  --display: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-trail: cubic-bezier(0.5, 1, 0.89, 1);
  --t-fast: 240ms;
  --t-med: 400ms;
  --t-slow: 600ms;

  --pad-x: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "kern";
}

::selection { background: var(--gold); color: var(--cream); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* — Type primitives — */
.display {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-wrap: pretty;
}
.display-italic { font-style: italic; font-weight: 350; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.eyebrow .num {
  font-family: var(--mono);
  color: var(--gold-deep);
  font-weight: 600;
}

/* — Layout — */
.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container-narrow {
  width: 100%; max-width: 980px;
  margin: 0 auto; padding: 0 var(--pad-x);
}

/* — Reveal motion. In this build we ship content visible by default and rely on
   JS-driven motion (parallax, scrub, slider, cursor) for the cinematic feel.
   Entry-fade animations were removed because the iframe runtime stalls
   transitions/animations at currentTime=0. — */
.reveal { opacity: 1; }
.reveal-mask { display: block; }
.reveal-mask > span { display: inline-block; }
.clip-mask, .clip-mask-up { clip-path: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-mask > span, .clip-mask, .clip-mask-up {
    transition: none !important; transform: none !important;
    opacity: 1 !important; clip-path: none !important;
  }
  html { scroll-behavior: auto; }
}

/* — NAV (hides on scroll down, reappears on up) — */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 22px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  transition: transform 400ms var(--ease-out), background 400ms, backdrop-filter 400ms, padding 400ms, border-color 400ms;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(242,235,220,0.92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding: 14px var(--pad-x);
  border-bottom-color: var(--rule);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav-mark { display: flex; align-items: center; gap: 12px; }
.nav-mark .logo-mark {
  display: block;
  width: 40px; height: 40px;
  background-image: url('assets/brand/alps-mark-gold.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.nav-mark .word {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 22px; letter-spacing: 0.32em; font-weight: 400;
  line-height: 1;
}
.nav-links {
  display: flex; gap: 36px;
  font-size: 13px; letter-spacing: 0.04em;
}
.nav-links a {
  position: relative; padding: 4px 0;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold);
  transition: right 500ms var(--ease-out);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--ink); padding: 10px 18px; border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
@media (max-width: 800px) { .nav-links { display: none; } .nav-mark .word { font-size: 16px; } }

/* — Buttons — */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  transition: transform 400ms var(--ease-out), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer; border: 1px solid transparent; font-family: var(--body);
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-3px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 400ms var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ========================================================
   HERO — layered parallax, multi-plane, mouse-aware
   ======================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  display: grid; align-items: end;
  background: var(--cream);
}

.hero-bg-stack {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-layer {
  position: absolute;
  will-change: transform;
  transition: transform 80ms linear;
}
/* Far back — soft cream wash */
.hero-layer--wash {
  inset: -10% -5% -10% -5%;
  background:
    radial-gradient(circle at 75% 30%, rgba(184,146,76,0.10), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(184,146,76,0.06), transparent 50%),
    var(--cream);
}
/* Architectural still placeholder — far right column */
.hero-layer--arch {
  top: 8%; right: -3%; width: 44%; height: 78%;
  background: linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
  background-image:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(14,14,14,0.04) 28px 28.5px),
    linear-gradient(160deg, #E0D4B6, #D4C49C);
  border: 1px solid rgba(184,146,76,0.22);
}
.hero-layer--arch::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* faux window grid */
    linear-gradient(to right, transparent 0 20%, rgba(14,14,14,0.05) 20% 20.4%, transparent 20.4% 50%, rgba(14,14,14,0.05) 50% 50.4%, transparent 50.4% 80%, rgba(14,14,14,0.05) 80% 80.4%, transparent 80.4%),
    linear-gradient(to bottom, transparent 0 35%, rgba(14,14,14,0.05) 35% 35.4%, transparent 35.4% 70%, rgba(14,14,14,0.05) 70% 70.4%, transparent 70.4%);
}
.hero-layer--arch .ph-label {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(242,235,220,0.85);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}

/* Mid — secondary square left-bottom */
.hero-layer--detail {
  bottom: 14%; left: 6%; width: 18%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #C9B894, #B5A37C);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(14,14,14,0.05) 16px 16.5px),
    linear-gradient(160deg, #C9B894, #B5A37C);
  border: 1px solid rgba(184,146,76,0.3);
  display: none;
}
@media (min-width: 1100px) { .hero-layer--detail { display: block; } }

/* Foreground — gold dust particles via SVG */
.hero-layer--dust {
  inset: 0;
  background-image: radial-gradient(circle, rgba(184,146,76,0.5) 1px, transparent 1.5px);
  background-size: 80px 80px;
  background-position: 0 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative; z-index: 5;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero-eyebrow { margin-bottom: 32px; }
.hero h1 {
  font-size: clamp(48px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-family: var(--display);
}
.hero h1 .italic {
  font-style: italic; font-weight: 300;
  color: var(--gold-deep);
}
.hero h1 .ornament {
  display: inline-block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.4em;
  vertical-align: 0.5em;
  margin: 0 0.15em;
  font-weight: 300;
}
.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--ink-warm);
  max-width: 540px;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  text-transform: none; letter-spacing: 0;
  color: var(--ink);
  display: block; margin-top: 4px; line-height: 1;
}
.hero-meta .scroll-cue {
  font-family: var(--mono);
  font-size: 10px;
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
}
.hero-meta .scroll-cue .line {
  display: block;
  width: 1px; height: 28px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-meta .scroll-cue .line::after {
  content: ''; position: absolute;
  top: -100%; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
  animation: scrollCue 2.4s var(--ease-out) infinite;
}
@keyframes scrollCue { to { top: 100%; } }
@media (max-width: 800px) {
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
  .hero-meta .scroll-cue { justify-content: flex-start; }
}

/* ========================================================
   SECTION HANDOFF — sticky, overlapping
   ======================================================== */
.section-stack { position: relative; }

/* Credibility — sticks below nav, gets covered by next */
.credibility {
  position: relative;
  z-index: 2;
  background: var(--cream);
  padding: clamp(104px, 13vw, 168px) 0;
  border-top: 1px solid var(--rule);
}
.credibility-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 80px;
}
.credibility-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 380;
  letter-spacing: -0.01em;
  max-width: 580px;
  line-height: 1.15;
}
.credibility-head h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.credibility .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.cred-stat {
  padding: 48px 32px 32px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.cred-stat:last-child { border-right: none; padding-right: 0; }
.cred-stat:not(:first-child) { padding-left: 32px; }
.cred-stat .idx {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 24px;
}
.cred-stat .num {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1; letter-spacing: -0.025em;
  font-weight: 380;
  display: block; margin-bottom: 18px;
}
.cred-stat .num .unit { font-style: italic; color: var(--gold-deep); font-size: 0.42em; margin-left: 8px; font-weight: 300; }
.cred-stat .num .placeholder { color: var(--gold); font-style: italic; font-size: 0.65em; }
.cred-stat .label { font-size: 14px; line-height: 1.55; color: var(--ink-warm); max-width: 280px; }
.cred-stat .ph-tag {
  display: inline-block; font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(184,146,76,0.12);
  padding: 3px 7px; margin-top: 10px;
}
@media (max-width: 800px) {
  .credibility .row { grid-template-columns: 1fr; }
  .cred-stat { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 0 !important; }
  .cred-stat:last-child { border-bottom: none; }
}

/* ========================================================
   PROBLEM — sticky title with scrolling body
   ======================================================== */
.problem {
  position: relative;
  z-index: 3;
  background: var(--cream-deep);
  padding: clamp(120px, 16vw, 200px) 0;
}
.problem .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.problem-title {
  position: sticky;
  top: 130px;
}
.problem-title .eyebrow { margin-bottom: 28px; }
.problem-title h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 380;
}
.problem-title h2 em {
  font-style: italic; color: var(--gold-deep); font-weight: 300;
}
.problem-body {
  display: flex; flex-direction: column; gap: 32px;
}
.problem-body p {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  font-weight: 380;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  letter-spacing: -0.005em;
}
.problem-body p em {
  font-style: italic; color: var(--gold-deep); font-weight: 350;
}
.problem-body .last {
  font-family: var(--body);
  font-size: 17px; line-height: 1.65;
  color: var(--ink-warm);
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  margin-top: 8px;
  font-variation-settings: normal;
  font-weight: 400;
}
@media (max-width: 900px) {
  .problem .grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-title { position: static; }
}

/* ========================================================
   IMAGE MOSAIC — staggered mask reveal
   ======================================================== */
.mosaic {
  background: var(--cream);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  z-index: 4;
}
.mosaic-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 100px;
}
.mosaic-head .eyebrow { margin-bottom: 24px; }
.mosaic-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 380;
}
.mosaic-head h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.mosaic-head p {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 350;
  color: var(--ink-warm);
  max-width: 480px;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}
.mosaic-tile {
  position: relative;
  overflow: hidden;
  background: var(--cream-warm);
}
.mosaic-tile .ph {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(14,14,14,0.04) 22px 22.5px),
    linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
}
.mosaic-tile .ph-arch {
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(14,14,14,0.05) 18px 18.5px),
    linear-gradient(160deg, #D4C49C, #C2B084);
}
.mosaic-tile .ph-dark {
  background-image:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(184,146,76,0.06) 22px 22.5px),
    linear-gradient(160deg, #2A2418, #3A3120);
}
.mosaic-tile .label {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(242,235,220,0.85);
  padding: 4px 8px;
  border: 1px solid var(--rule);
}
.mosaic-tile.dark .label { color: var(--gold-soft); background: rgba(14,14,14,0.5); border-color: rgba(184,146,76,0.2); }
.mosaic-tile .tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.mosaic-tile.dark .tag { color: var(--gold-soft); }

.mosaic-tile.t1 { grid-column: 1 / span 5; grid-row: span 6; }
.mosaic-tile.t2 { grid-column: 6 / span 4; grid-row: span 4; }
.mosaic-tile.t3 { grid-column: 10 / span 3; grid-row: span 3; }
.mosaic-tile.t4 { grid-column: 6 / span 3; grid-row: 5 / span 3; }
.mosaic-tile.t5 { grid-column: 9 / span 4; grid-row: 4 / span 4; }
@media (max-width: 800px) {
  .mosaic-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 100px; }
  .mosaic-tile.t1 { grid-column: 1 / -1; grid-row: span 4; }
  .mosaic-tile.t2 { grid-column: 1 / span 1; grid-row: span 3; }
  .mosaic-tile.t3 { grid-column: 2 / span 1; grid-row: span 2; }
  .mosaic-tile.t4 { grid-column: 2 / span 1; grid-row: span 2; }
  .mosaic-tile.t5 { grid-column: 1 / -1; grid-row: span 3; }
}

/* ========================================================
   METHOD — service-card grid w/ image hovers
   ======================================================== */
.method {
  background: var(--ink-warm);
  color: var(--cream);
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  z-index: 5;
}
.method-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.method-head .eyebrow { color: rgba(242,235,220,0.5); }
.method-head .eyebrow .dot { background: var(--gold-soft); }
.method-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 380;
}
.method-head h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.method-head .index {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,235,220,0.4);
  text-align: right;
  align-self: end;
  padding-bottom: 12px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(242,235,220,0.12);
  border: 1px solid rgba(242,235,220,0.12);
}
/* .method-card legacy block removed 2026-05-14 — replaced by .method-accordion. */
@media (max-width: 800px) {
  .method-head { grid-template-columns: 1fr; gap: 24px; }
  .method-head .index { text-align: left; }
}

/* ========================================================
   PROOF — pinned-soft case studies
   ======================================================== */
.proof {
  background: var(--cream);
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  z-index: 6;
}
.proof-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: end;
}
.proof-head .eyebrow { margin-bottom: 24px; }
.proof-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 380;
}
.proof-head h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.proof-head p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-warm);
  max-width: 460px;
  font-weight: 350;
}

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 160px;
  align-items: start;
}
.case:last-child { margin-bottom: 0; }
.case-image-wrap {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
}
.case-image {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #C9B894, #B5A37C);
  background-image:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(14,14,14,0.04) 26px 26.5px),
    linear-gradient(160deg, #C9B894, #B5A37C);
  border: 1px solid rgba(184,146,76,0.25);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.case-image .ph-label {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(242,235,220,0.85);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}
.case-image .frame-tag {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.case-body { padding-top: 20px; }
.case:nth-child(even) .case-image-wrap { order: 2; }
.case-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.case-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.placeholder-tag {
  display: inline-block; font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(184,146,76,0.14);
  padding: 4px 8px; margin-bottom: 24px;
}
.case-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.case-row:last-of-type { border-bottom: 1px solid var(--rule); }
.case-row .label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); padding-top: 4px;
}
.case-row .text {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-warm);
}
.case-row .text em {
  font-family: var(--display);
  font-style: italic; font-size: 17px;
  color: var(--gold-deep); font-weight: 400;
}
.case-quote {
  margin-top: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px; line-height: 1.4;
  color: var(--ink);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-weight: 350;
}
.case-quote .attr {
  display: block;
  margin-top: 12px;
  font-family: var(--body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; gap: 32px; margin-bottom: 100px; }
  .case-image-wrap { position: static; aspect-ratio: 4/3; order: 0 !important; }
  .proof-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
}

/* ========================================================
   BIG SCRUB TYPOGRAPHY — emotional moment
   ======================================================== */
.scrub {
  background: var(--cream-deep);
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
  z-index: 7;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.scrub-track {
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 132px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 400;
  white-space: nowrap;
  will-change: transform;
  padding: 0 6vw; /* gives the scrub a gentle drift even when the line fits */
}
.scrub-track .word { display: inline-block; padding: 0 0.18em; }
.scrub-track .italic { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.scrub-track .ornament { color: var(--gold); font-style: normal; }
.scrub-context {
  display: flex; justify-content: space-between;
  margin-top: 60px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ========================================================
   PINNED VIDEO / CINEMATIC MOMENT
   ======================================================== */
.cinematic {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  z-index: 8;
  height: 220vh;
}
.cinematic-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cinematic-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, #2A2418, #0E0E0E 80%);
  background-image:
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(184,146,76,0.04) 32px 32.5px),
    radial-gradient(circle at 50% 50%, #2A2418, #0E0E0E 80%);
  will-change: transform;
}
.cinematic-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, transparent 0 40%, rgba(14,14,14,0.5) 100%),
    radial-gradient(circle at 50% 80%, rgba(184,146,76,0.08), transparent 50%);
}
.cinematic-bg .ph-label {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft);
}
.cinematic-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 var(--pad-x);
}
.cinematic .eyebrow { color: rgba(242,235,220,0.5); margin-bottom: 32px; justify-content: center; }
.cinematic .eyebrow .dot { background: var(--gold-soft); }
.cinematic h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 380;
  margin-bottom: 36px;
  text-wrap: balance;
}
.cinematic h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.cinematic .meta {
  display: inline-flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,235,220,0.5);
  margin-top: 24px;
}
.cinematic .play-mark {
  width: 90px; height: 90px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 40px;
  position: relative;
}
.cinematic .play-mark::after {
  content: '';
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--gold-soft);
  margin-left: 4px;
}
.cinematic .play-mark::before {
  content: '';
  position: absolute; inset: -6px;
  border: 1px solid rgba(201,165,103,0.3);
  border-radius: 50%;
  animation: pulseRing 3s var(--ease-out) infinite;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 0; }
}

/* ========================================================
   TESTIMONIALS slider
   ======================================================== */
.testi {
  background: var(--cream);
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.testi-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 80px; flex-wrap: wrap; gap: 24px;
}
.testi-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 380;
}
.testi-head h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.testi-controls { display: flex; gap: 12px; }
.testi-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  color: var(--ink);
}
.testi-btn:hover { background: var(--ink); color: var(--cream); }
.testi-btn svg { width: 16px; height: 16px; }
.testi-track {
  display: flex;
  gap: 32px;
  transition: transform 700ms var(--ease-out);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc((100% - 32px) / 2);
  background: var(--cream-deep);
  padding: 48px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: background 400ms var(--ease-out);
}
.testi-card:hover { background: var(--cream-warm); }
.testi-card .mark {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 56px;
  line-height: 0.5;
  margin-bottom: 32px;
  font-weight: 300;
}
.testi-card blockquote {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 380;
  font-style: italic;
  margin-bottom: auto;
  letter-spacing: -0.005em;
}
.testi-card .who {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.testi-card .name { font-weight: 500; font-size: 15px; }
.testi-card .role {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.testi-progress {
  display: flex; gap: 6px;
  margin-top: 40px;
}
.testi-progress span {
  height: 2px;
  flex: 1;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.testi-progress span.is-active::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-deep);
  transform: translateX(-100%);
  animation: progressFill 6s linear forwards;
}
@keyframes progressFill { to { transform: translateX(0); } }
@media (max-width: 800px) {
  .testi-card { flex: 0 0 100%; padding: 32px; min-height: 320px; }
  .testi-card blockquote { font-size: 18px; }
}

/* ========================================================
   TRANSITION NOTE
   ======================================================== */
.transition-note {
  background: var(--cream);
  padding: clamp(120px, 16vw, 180px) 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--rule);
}
.transition-note .grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.headshot {
  aspect-ratio: 4/5;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(184,146,76,0.1) 18px 18.5px),
    linear-gradient(160deg, var(--cream-warm), var(--cream-deep));
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.headshot .ph-label {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(242,235,220,0.85);
  padding: 5px 8px;
  border: 1px solid var(--rule);
}
.transition-note h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.transition-note h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.transition-note p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-warm);
  margin-bottom: 24px;
}
.transition-note .sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  margin-top: 24px;
  display: block;
  color: var(--ink);
}
@media (max-width: 800px) {
  .transition-note .grid { grid-template-columns: 1fr; gap: 32px; }
  .headshot { max-width: 240px; }
}

/* ========================================================
   PINNED CTA — big-typography close
   ======================================================== */
.cta-close {
  position: relative;
  z-index: 11;
  height: 200vh;
  background: var(--ink-warm);
  color: var(--cream);
}
.cta-close-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.cta-close-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,146,76,0.18), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(184,146,76,0.10), transparent 50%),
    var(--ink-warm);
  background-image:
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(184,146,76,0.04) 36px 36.5px),
    radial-gradient(circle at 80% 20%, rgba(184,146,76,0.18), transparent 50%),
    var(--ink-warm);
  will-change: transform;
}
.cta-close-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--pad-x);
  max-width: 1480px;
  margin: 0 auto;
}
.cta-close .eyebrow { color: rgba(242,235,220,0.5); margin-bottom: 40px; }
.cta-close .eyebrow .dot { background: var(--gold-soft); }
.cta-close h2 {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 380;
  margin-bottom: 60px;
  max-width: 12ch;
}
.cta-close h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.cta-close .row {
  display: flex; align-items: end;
  justify-content: space-between;
  flex-wrap: wrap; gap: 40px;
  border-top: 1px solid rgba(242,235,220,0.15);
  padding-top: 40px;
}
.cta-close .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-close .btn-primary { background: var(--cream); color: var(--ink); border: 1px solid var(--cream); }
.cta-close .btn-primary:hover { background: var(--gold-soft); color: var(--ink); border-color: var(--gold-soft); }
.cta-close .btn-secondary { color: var(--cream); border-color: var(--cream); }
.cta-close .btn-secondary:hover { background: var(--cream); color: var(--ink); }
.cta-close .reassurance {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--gold-soft);
  max-width: 380px;
  font-weight: 350;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  position: relative;
  z-index: 12;
}
.footer .top {
  border-bottom: 1px solid rgba(242,235,220,0.12);
  padding-bottom: 60px;
  margin-bottom: 32px;
}
.footer .footer-mark {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.12em;
  font-weight: 380;
  margin-bottom: 32px;
  display: block;
}
.footer .footer-mark .ornament {
  color: var(--gold);
  font-size: 0.4em;
  vertical-align: 0.6em;
  margin: 0 0.1em;
}
.footer .tag-row {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  font-weight: 350;
}
.footer .container.bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,235,220,0.45);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 15px; }
.footer li a { transition: color var(--t-fast); position: relative; }
.footer li a:hover { color: var(--gold-soft); }
.footer .reg {
  border-top: 1px solid rgba(242,235,220,0.15);
  margin-top: 60px;
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(242,235,220,0.45);
  letter-spacing: 0.04em;
}
.footer .reg .right { display: flex; gap: 28px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .footer .container.bottom { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .reg { flex-direction: column; align-items: flex-start; }
}

/* ========================================================
   CURSOR (custom dot, hover-aware)
   ======================================================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease-out), height 300ms var(--ease-out), background 300ms;
  mix-blend-mode: multiply;
}
.cursor.is-hover {
  width: 48px; height: 48px;
  background: rgba(184,146,76,0.3);
}
@media (hover: none), (max-width: 900px) {
  .cursor { display: none; }
}

/* ========================================================
   ABOUT page
   ======================================================== */
.about-page { padding-top: 120px; background: var(--cream); }

/* About-page invitation CTA — was unstyled, inheriting flush-left defaults */
.about-page .invitation {
  background: var(--cream-deep);
  padding: clamp(96px, 13vw, 160px) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--rule-soft);
}
.about-page .invitation h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 22ch;
}
.about-page .invitation h2 .accent {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 320;
}
.about-page .invitation > p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 36px;
}
.about-page .invitation .ctas {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 600px) {
  .about-page .invitation .ctas { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; max-width: 320px; margin: 0 auto; }
  .about-page .invitation .ctas .btn { justify-content: center; }
}
.about-hero { padding: 80px 0 60px; }
.about-hero .container-narrow {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px; align-items: start;
}
.about-hero h1 {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 380;
}
.about-hero h1 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.about-content { padding-bottom: 100px; }
.about-content .container-narrow { max-width: 760px; }
.about-content p {
  font-size: 19px; line-height: 1.7;
  margin-bottom: 28px;
  color: var(--ink);
}
.about-content p:first-child {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  font-weight: 380;
  font-style: italic;
  margin-bottom: 40px;
}
.about-content strong {
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.about-pullquote {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-style: italic;
  font-weight: 350;
  letter-spacing: -0.015em;
  color: var(--gold-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 60px 0;
  margin: 60px 0;
}
.about-sig {
  font-family: var(--display);
  font-style: italic; font-size: 22px;
  margin-top: 36px;
}
@media (max-width: 800px) {
  .about-hero .container-narrow { grid-template-columns: 1fr; }
  .about-hero .headshot { max-width: 240px; }
}

/* ========================================================
   TWEAKS overrides
   ======================================================== */
[data-accent="soft"] { --gold: #C9A66A; --gold-deep: #B08C44; --gold-soft: #D9BE85; }
[data-accent="bold"] { --gold: #A07A2E; --gold-deep: #856420; --gold-soft: #B8924C; }
[data-display="cormorant"] { --display: 'Cormorant Garamond', 'Times New Roman', serif; }
[data-motion="off"] .reveal,
[data-motion="off"] .reveal-mask > span,
[data-motion="off"] .clip-mask,
[data-motion="off"] .clip-mask-up {
  transition: none !important; transform: none !important;
  opacity: 1 !important; clip-path: none !important;
}
[data-motion="off"] .scrub-track { transform: none !important; }

/* ========================================================
   PHOTO INTEGRATION — Adrian-only, Melvin & flagged guest excluded
   ======================================================== */
:root {
  --photo-filter: grayscale(0.12) sepia(0.18) contrast(0.96) brightness(1.02);
  --photo-filter-hover: grayscale(0) sepia(0.06) contrast(1) brightness(1);
}

.hero-layer--detail .ph-label,
.hero-layer--arch .ph-label,
.mosaic-tile .label,
.method-card .preview .ph-label,
.case-image .ph-label,
.cinematic-bg .ph-label,
.headshot .ph-label,
.about-hero .headshot .ph-label {
  display: none !important;
}

/* —— HERO secondary parallax tile —— */
.hero-layer--detail {
  background-image:
    linear-gradient(180deg, rgba(242,235,220,0.18), rgba(242,235,220,0.55) 70%),
    url('assets/photos/adrian-walking.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  filter: var(--photo-filter);
  mix-blend-mode: multiply;
  opacity: 0.55;
}

/* —— MOSAIC —— */
.mosaic-tile .ph,
.mosaic-tile .ph-arch,
.mosaic-tile .ph-dark { display: none !important; }

.mosaic-tile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.mosaic-tile::before {
  content: "";
  position: absolute; inset: 0;
  filter: var(--photo-filter);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-image: inherit;
  transition: filter 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.mosaic-tile:hover::before { filter: var(--photo-filter-hover); transform: scale(1.03); }
.mosaic-tile > * { position: relative; z-index: 1; }
.mosaic-tile.t1 { background-image: url('assets/photos/adrian-smile.jpg'); background-position: center 18%; }
.mosaic-tile.t2 { background-image: url('assets/photos/adrian-convention.jpg'); background-position: center 25%; }
.mosaic-tile.t3 { background-image: url('assets/photos/adrian-og.jpg'); background-position: center 30%; }
.mosaic-tile.t4 { background-image: url('assets/photos/adrian-gala-family-04.webp'); background-position: center 35%; }
.mosaic-tile.t5 { background-image: url('assets/photos/adrian-gala-handshake.jpg'); background-position: center 30%; }
.mosaic-tile .tag { background: rgba(14,14,14,0.55); color: var(--cream); border-color: rgba(242,235,220,0.25); }

/* —— METHOD card hover previews —— */
.method-card .preview {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: var(--photo-filter);
}
.method-grid .method-card:nth-child(1) .preview { background-image: url('assets/photos/adrian-recruit.jpg'); background-position: center 22% !important; }
.method-grid .method-card:nth-child(2) .preview { background-image: url('assets/photos/adrian-conv-talk.jpg'); background-position: 0% 25% !important; background-size: 220% auto !important; }
.method-grid .method-card:nth-child(3) .preview { background-image: url('assets/photos/adrian-advisor.jpg'); background-position: 58% 28% !important; }
.method-grid .method-card:nth-child(4) .preview { background-image: url('assets/photos/adrian-gala-cheers.jpg'); background-position: center 30% !important; }

/* —— CASE STUDIES —— */
.case-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: var(--photo-filter);
  transition: filter 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.case:nth-of-type(1) .case-image { background-image: url('assets/photos/adrian-table.jpg'); background-position: center 25%; }
.case:nth-of-type(2) .case-image { background-image: url('assets/photos/clients/case-02-clients.jpg'); background-position: center 30%; }
.case-image:hover { filter: var(--photo-filter-hover); }

/* —— CINEMATIC: speaking-to-crowds anchor (NLC convention stage) —— */
.cinematic-bg {
  background-image:
    linear-gradient(180deg, rgba(14,14,14,0.5), rgba(14,14,14,0.75)),
    url('assets/photos/adrian-stage-large.jpg') !important;
  background-size: cover !important;
  background-position: center 35% !important;
  background-repeat: no-repeat !important;
  filter: grayscale(0.18) sepia(0.1) contrast(1.05) brightness(0.95);
}

/* —— TRANSITION NOTE headshot —— */
.transition-note .headshot {
  background-image: url('assets/photos/adrian-formal.jpg');
  background-size: cover;
  background-position: center 12%;
  background-repeat: no-repeat;
  filter: var(--photo-filter);
}

/* —— HOMEPAGE About excerpt portrait —— */
.about-excerpt-portrait {
  background-image: url('assets/photos/adrian-friendly.jpg');
  background-size: cover;
  background-position: center 12%;
  background-repeat: no-repeat;
  filter: var(--photo-filter);
}

/* —— PINNED CTA CLOSE —— */
.cta-close-bg {
  background-image:
    linear-gradient(180deg, rgba(31,26,18,0.62), rgba(31,26,18,0.86)),
    url('assets/photos/adrian-gala-cheers.jpg') !important;
  background-size: cover !important;
  background-position: center 25% !important;
  background-repeat: no-repeat !important;
}

/* —— ABOUT —— */
.about-hero .headshot {
  background-image: url('assets/photos/adrian-editorial.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: var(--photo-filter);
}

/* ========================================================
   MANIFESTO (homepage short-vision beat)
   ======================================================== */
.manifesto {
  background: var(--cream-soft);
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  z-index: 6;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.manifesto::before {
  /* Alpine cross image — biased right, gently desaturated to sit in cream palette */
  content: "";
  position: absolute; inset: 0;
  background:
    url('assets/photos/vision-bg.jpg') no-repeat 78% center / cover;
  filter: saturate(0.6) sepia(0.18) brightness(1.04) contrast(0.95);
  opacity: 0.62;
  z-index: -2;
  pointer-events: none;
}
.manifesto::after {
  /* Dual cream wash: strong on left (text legibility), feathered top/bottom */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      var(--cream-soft) 0%,
      transparent 16%,
      transparent 84%,
      var(--cream-soft) 100%),
    linear-gradient(90deg,
      rgba(247,241,226,0.96) 0%,
      rgba(247,241,226,0.86) 32%,
      rgba(247,241,226,0.42) 60%,
      rgba(247,241,226,0.30) 100%);
  z-index: -1;
  pointer-events: none;
}
.manifesto > .container-narrow { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .manifesto::before { background-position: 70% center; opacity: 0.45; }
  .manifesto::after {
    background:
      linear-gradient(180deg, var(--cream-soft) 0%, transparent 12%, transparent 88%, var(--cream-soft) 100%),
      linear-gradient(180deg, rgba(247,241,226,0.88), rgba(247,241,226,0.65) 50%, rgba(247,241,226,0.85));
  }
}
.manifesto .container-narrow {
  display: flex; flex-direction: column; align-items: center;
}
.manifesto .eyebrow { color: var(--gold-deep); justify-content: center; }
.manifesto-line {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 32px auto 0;
  max-width: 64ch;
  text-align: center;
}
.manifesto-line em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 350;
}

/* Line — circle — line ornament between manifesto and verse */
.vision-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: clamp(72px, 9vw, 120px) auto 0;
  width: 100%;
}
.vision-divider span {
  width: clamp(60px, 9vw, 120px);
  height: 1px;
  background: rgba(14,14,14,0.28);
  display: block;
}
.vision-divider i {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(14,14,14,0.32);
  background: transparent;
  display: block;
  flex-shrink: 0;
}

/* Boxed "Read the full vision" CTA */
.vision-cta {
  display: inline-flex; align-items: center;
  gap: 22px;
  margin: clamp(56px, 7vw, 96px) auto 0;
  padding: 22px 40px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: background 300ms var(--ease-out), color 300ms var(--ease-out), gap 400ms var(--ease-out);
  cursor: pointer;
}
.vision-cta svg {
  width: 18px; height: 18px;
  transition: transform 400ms var(--ease-out);
}
.vision-cta:hover { background: var(--ink); color: var(--cream); gap: 28px; }
.vision-cta:hover svg { transform: translateX(4px); }

/* ========================================================
   VISION (about page)
   ======================================================== */
.vision {
  background: var(--cream-deep);
  padding: clamp(96px, 12vw, 160px) 0 clamp(120px, 14vw, 180px);
  border-top: 1px solid rgba(14,14,14,0.08);
}
.vision .eyebrow { color: var(--gold-deep); }
.vision h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 28px 0 44px;
  color: var(--ink);
  max-width: 18ch;
}
.vision h2 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 320;
}
.vision p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 62ch;
}
.vision-verse {
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: 0;
  border-top: none;
  text-align: center;
}
.vision-verse blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 50ch;
}
.vision-verse figcaption {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.vision-verse figcaption .ref { font-weight: 500; color: var(--muted); }
.vision-verse figcaption .src {
  color: var(--muted);
  font-weight: 400;
}
.vision-verse figcaption .ref::after {
  content: "—";
  display: inline-block;
  margin-left: 12px;
  color: var(--muted);
  font-family: var(--body);
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .vision-verse figcaption { flex-direction: column; gap: 6px; }
  .vision-verse figcaption .ref::after { display: none; }
}

/* ========================================================
   ABOUT EXCERPT (homepage "From Adrian" beat)
   ======================================================== */
.about-excerpt {
  background: var(--cream);
  padding: clamp(120px, 15vw, 192px) 0;
  position: relative;
  z-index: 6;
  border-top: 1px solid var(--rule-soft);
}
.about-excerpt-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-excerpt-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(184,146,76,0.18);
  position: relative;
  overflow: hidden;
}
.about-excerpt-body { max-width: 56ch; }
.about-excerpt-body .eyebrow { color: var(--gold-deep); }
.about-excerpt-body h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  font-weight: 380;
  letter-spacing: -0.015em;
  margin: 28px 0 36px;
  color: var(--ink);
  max-width: 16ch;
}
.about-excerpt-body h2 em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-deep);
}
.about-excerpt-body p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 22px;
}
.about-excerpt-body strong { font-weight: 500; }
.about-excerpt-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,146,76,0.4);
  padding-bottom: 8px;
  transition: color 300ms var(--ease-out), border-color 300ms var(--ease-out), gap 400ms var(--ease-out);
}
.about-excerpt-link:hover { color: var(--ink); border-color: var(--ink); gap: 14px; }
.about-excerpt-link svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .about-excerpt-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-excerpt-portrait { max-width: 360px; aspect-ratio: 3 / 4; }
}

/* ========================================================
   FIND-grade motion patches
   ======================================================== */

/* Per-letter wordmark intro (data-letters) */
[data-letters] {
  display: inline-flex;
  overflow: hidden;
  line-height: 1;
}
[data-letters] .letter {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
}

/* Word-reveal mask container — clips the y:110% reveal */
[data-reveal-words] {
  overflow-y: clip;
  overflow-x: visible;
}
[data-reveal-words] .word {
  display: inline-block;
  will-change: transform, opacity;
}

/* Method grid: column-morph accordion on hover */
.method-grid.is-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transition: grid-template-columns 900ms var(--ease-premium);
}
@media (min-width: 1100px) {
  .method-grid.is-accordion {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .method-grid.is-accordion .method-card { transition: flex 900ms var(--ease-premium); }
  /* When any card is hovered, that card expands; others contract */
  .method-grid.is-accordion:has(.method-card:nth-child(1).is-active) { grid-template-columns: 1.7fr 0.9fr 0.9fr 0.9fr; }
  .method-grid.is-accordion:has(.method-card:nth-child(2).is-active) { grid-template-columns: 0.9fr 1.7fr 0.9fr 0.9fr; }
  .method-grid.is-accordion:has(.method-card:nth-child(3).is-active) { grid-template-columns: 0.9fr 0.9fr 1.7fr 0.9fr; }
  .method-grid.is-accordion:has(.method-card:nth-child(4).is-active) { grid-template-columns: 0.9fr 0.9fr 0.9fr 1.7fr; }
}

/* Method card: photo preview now visible always at low alpha, brightens on active */
.method-card .preview {
  opacity: 0.35;
  transform: translateX(0);
  transition: opacity 900ms var(--ease-premium), filter 900ms var(--ease-premium);
}
.method-card.is-active .preview,
.method-card:hover .preview {
  opacity: 1;
}

/* Cinematic — initial clip-path so GSAP scrub has somewhere to start */
.cinematic-bg {
  clip-path: inset(8% 12% 8% 12% round 14px);
}

/* Hero detail layer — origin centered for breathing scale */
.hero-layer--detail { transform-origin: center center; }

/* SWIPER testimonials — hairline scrollbar, slide width, gold accent */
.testi-swiper {
  --swiper-scrollbar-bg-color: rgba(14, 14, 14, 0.08);
  --swiper-scrollbar-drag-bg-color: var(--gold-deep);
  --swiper-scrollbar-size: 2px;
  padding-bottom: 56px;
  margin-top: 32px;
}
.testi-swiper .swiper-slide {
  width: clamp(280px, 36vw, 480px);
  height: auto;
}
.testi-swiper .swiper-scrollbar {
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  margin-top: 36px;
}
.testi-swiper .swiper-scrollbar-drag {
  background: var(--gold-deep);
}

/* Header transparent → solid (already partly there; tighten the polish) */
.nav { background: transparent; transition: transform 600ms var(--ease-premium), background 600ms var(--ease-premium), backdrop-filter 600ms, padding 600ms var(--ease-premium), border-color 600ms; }
.nav.is-scrolled {
  background: rgba(242,235,220,0.92);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-bottom-color: var(--rule);
}

/* Hover refinement on mosaic tiles — already styled via ::before; bump scale curve */
.mosaic-tile::before { transition: filter 700ms var(--ease-premium), transform 1100ms var(--ease-premium); }
.mosaic-tile:hover::before { transform: scale(1.05); }

/* Reduced motion fallback for new bits */
@media (prefers-reduced-motion: reduce) {
  [data-letters] .letter,
  [data-reveal-words] .word { opacity: 1 !important; transform: none !important; }
  .cinematic-bg { clip-path: none !important; }
  .method-grid.is-accordion { grid-template-columns: 1fr 1fr 1fr 1fr !important; }
}

/* ========================================================
   HERO (editorial split) — overrides earlier .hero rules
   ======================================================== */
.hero--split {
  min-height: 100vh;
  padding: clamp(140px, 14vw, 180px) var(--pad-x) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero--split .hero-bg-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(184,146,76,0.12), transparent 55%),
    radial-gradient(circle at 12% 86%, rgba(184,146,76,0.07), transparent 50%),
    var(--cream);
  pointer-events: none;
  z-index: 0;
}
.hero-split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 56px; }
}

/* — Text column — */
.hero-text { max-width: 56ch; }
.hero-text .hero-eyebrow { margin-bottom: 32px; color: var(--muted); }
.hero--split h1 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0 0 36px;
  text-wrap: balance;
}
.hero--split h1 em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-deep);
}
.hero--split .hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 44px;
}
.hero--split .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

/* — Credentials row — */
.hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  max-width: 56ch;
}
.hero-credentials > div { min-width: 0; }
.hero-credentials dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.hero-credentials dd {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}
@media (max-width: 600px) {
  .hero-credentials { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* — Portrait column — */
.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  align-self: center;
}
.hero-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(184,146,76,0.32);
  border-bottom: 1px solid rgba(184,146,76,0.32);
  isolation: isolate;
}
.hero-portrait-img {
  position: absolute; inset: 0;
  background:
    url('assets/photos/adrian-editorial.jpg') no-repeat center 8% / cover;
  filter: grayscale(0.08) sepia(0.14) contrast(0.97) brightness(1.03);
  transform-origin: center center;
  z-index: 0;
}
/* 4s breathing — slow scale up/down handled by GSAP for smoothness; CSS fallback below */
@media (prefers-reduced-motion: no-preference) {
  .hero-portrait-img {
    animation: heroBreathe 9s ease-in-out infinite;
  }
}
@keyframes heroBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.hero-portrait-rule {
  position: absolute;
  left: -22px; top: 8%; bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  z-index: 1;
}
.hero-portrait-tag {
  position: absolute;
  left: -22px; bottom: -36px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.5;
}
.hero-portrait-tag em {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 350;
}
@media (max-width: 900px) {
  .hero-portrait { max-width: 360px; }
  .hero-portrait-rule { left: -16px; }
  .hero-portrait-tag { left: -16px; bottom: -42px; }
}

/* — Scroll cue — */
.hero-scroll-cue {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: clamp(36px, 5vw, 60px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  justify-self: start;
}
.hero-scroll-cue .line {
  display: inline-block;
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: '';
  position: absolute; left: -30%; top: 0; width: 30%; height: 100%;
  background: var(--gold);
  animation: scrollCue 2.4s var(--ease-premium) infinite;
}

/* Hide old hero pieces if any survived in markup */
.hero-bg-stack, .hero-layer { display: none; }

/* ========================================================
   HERO v2 — BOMBASTIC EDITORIAL
   Dark right panel · oversized type · ornament glyph · marquee
   ======================================================== */
.hero--bomb {
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
}

/* Top marquee */
.hero-marquee {
  position: relative; z-index: 5;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(184,146,76,0.25);
}
.hero-marquee-track {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: heroMarquee 38s linear infinite;
  will-change: transform;
}
.hero-marquee-track .ornament { color: var(--gold); font-family: var(--display); font-size: 14px; }
.hero-marquee-track > span { padding-right: 4px; }
@keyframes heroMarquee {
  to { transform: translateX(-50%); }
}

/* BG layers */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-glyph {
  position: absolute;
  left: -2%; top: 18%;
  font-family: var(--display);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(360px, 56vw, 920px);
  line-height: 0.78;
  color: var(--gold);
  opacity: 0.06;
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
}
.hero-orn--tl, .hero-orn--br {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orn--tl { top: -40px; left: 10%; background: rgba(184,146,76,0.20); }
.hero-orn--br { bottom: 10%; right: 38%; background: rgba(184,146,76,0.12); }

/* Grid */
.hero-bomb-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 230px);
}
@media (max-width: 1000px) {
  .hero-bomb-grid { grid-template-columns: 1fr; }
}

/* LEFT TEXT */
.hero-bomb-text {
  padding: clamp(48px, 7vw, 96px) clamp(28px, 6vw, 96px) clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-bomb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 40px;
}
.hero-bomb-eyebrow .num { font-weight: 600; color: var(--gold-deep); }
.hero-bomb-eyebrow .line { width: 56px; height: 1px; background: var(--gold-deep); display: inline-block; }

.hero-bomb-h1 {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(72px, 12.5vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 56px;
  text-wrap: balance;
}
.hero-bomb-h1 .line { display: block; }
.hero-bomb-h1 .line-2 { padding-left: clamp(40px, 8vw, 140px); }
.hero-bomb-h1 .line-3 { padding-left: clamp(20px, 4vw, 70px); }
.hero-bomb-h1 em {
  font-style: italic;
  font-weight: 280;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}

.hero-bomb-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(24px, 4vw, 60px);
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  max-width: 880px;
}
.hero-bomb-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 38ch;
  margin: 0;
}
.hero-bomb-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .hero-bomb-meta { grid-template-columns: 1fr; }
}

/* RIGHT PHOTO PANEL */
.hero-bomb-photo {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  min-height: 70vh;
}
.hero-photo-stack { position: absolute; inset: 0; }
.hero-photo {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(0.18) sepia(0.16) contrast(1.04) brightness(0.92);
  will-change: transform;
}
.hero-photo--main {
  inset: 0;
  background-image: url('assets/photos/adrian-formal.jpg');
  background-position: center 12%;
}
.hero-photo--main::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.15) 0%, rgba(14,14,14,0.05) 30%, rgba(14,14,14,0.6) 100%);
  pointer-events: none;
}
.hero-photo--inset {
  width: 38%;
  aspect-ratio: 4 / 5;
  right: 8%;
  bottom: 16%;
  background-image: url('assets/photos/adrian-stage-large.jpg');
  background-position: center 30%;
  border: 1px solid rgba(242,235,220,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  z-index: 2;
}
.hero-photo-tick {
  position: absolute;
  top: 10%; left: 8%;
  width: 56px; height: 1px;
  background: var(--gold);
  z-index: 3;
}
.hero-photo-tick::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 1px; height: 56px;
  background: var(--gold);
}
.hero-photo-cap {
  position: absolute;
  left: 8%; bottom: 6%;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 3;
}
.hero-photo-cap .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero-photo-cap .hero-photo-rule {
  width: 36px; height: 1px;
  background: var(--gold-soft);
}
.hero-photo-cap em {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(242,235,220,0.7);
  font-weight: 350;
}
@media (max-width: 1000px) {
  .hero-bomb-photo { min-height: 90vh; aspect-ratio: 5 / 6; }
}

/* BOTTOM STAT STRIP */
.hero-stats {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 3vw, 42px) clamp(28px, 6vw, 96px);
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.hero-stat { display: flex; flex-direction: column; gap: 6px; }
.hero-stat-num {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-stat-num sup {
  font-family: var(--mono);
  font-size: 0.32em;
  letter-spacing: 0.18em;
  vertical-align: top;
  margin-left: 6px;
  color: var(--gold-deep);
  font-weight: 500;
  top: 0.35em;
  position: relative;
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat--cue {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-self: end;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat--cue .line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.hero-stat--cue .line::after {
  content: '';
  position: absolute; left: -30%; top: 0; width: 30%; height: 100%;
  background: var(--ink);
  animation: scrollCue 2.4s var(--ease-premium) infinite;
}
@media (max-width: 800px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat--cue { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}

/* Hide ALL prior hero variants so we don't render duplicates */
.hero-bg-stack, .hero-layer, .hero--split { display: none; }

/* ========================================================
   AWARDS / RECOGNITION
   Editorial recognition beat — NOT a logo grid.
   Ink-warm panel for feature accolades, cream for ledger.
   ======================================================== */
.awards {
  background: var(--ink-warm);
  color: var(--cream);
  padding: clamp(96px, 12vw, 160px) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.awards::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(184,146,76,0.16), transparent 55%),
    radial-gradient(circle at 6% 88%, rgba(184,146,76,0.10), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.awards .eyebrow { color: var(--gold-soft); }
.awards .eyebrow .num { color: var(--gold-soft); }
.awards-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.awards-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.awards-head h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 320;
}
.awards-intro {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(242,235,220,0.74);
  max-width: 44ch;
}
@media (max-width: 900px) {
  .awards-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* —— Feature awards row —— */
.awards-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242,235,220,0.12);
  border: 1px solid rgba(242,235,220,0.12);
  margin-bottom: clamp(64px, 8vw, 110px);
}
.award-feature {
  background: var(--ink-warm);
  padding: clamp(36px, 4vw, 56px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 600ms var(--ease-premium);
  transition-delay: var(--d, 0ms);
}
.award-feature:hover { background: rgba(184,146,76,0.06); }
.award-feature .award-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 320;
  font-size: 18px;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
}
.award-stat {
  border-top: 1px solid rgba(184,146,76,0.32);
  border-bottom: 1px solid rgba(184,146,76,0.32);
  padding: 28px 0;
}
.award-stat .qty {
  font-family: var(--display);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-soft);
}
.award-stat .qty sup {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.28em;
  letter-spacing: 0.18em;
  vertical-align: top;
  margin-left: 6px;
  color: var(--gold-soft);
  font-weight: 500;
  position: relative;
  top: 0.4em;
}
.award-feature h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
}
.award-feature p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(242,235,220,0.78);
  margin: 0;
}
.award-feature p em {
  font-style: italic;
  color: var(--gold-soft);
}
@media (max-width: 900px) {
  .awards-features { grid-template-columns: 1fr; gap: 1px; }
}

/* —— Ledger —— */
.awards-ledger {
  background: rgba(242,235,220,0.04);
  border: 1px solid rgba(242,235,220,0.12);
  padding: clamp(32px, 4vw, 56px);
}
.awards-ledger-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242,235,220,0.12);
  margin-bottom: 12px;
}
.awards-ledger-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.55);
}
.awards-list {
  list-style: none;
  margin: 0; padding: 0;
}
.awards-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.6fr) minmax(0, 1.6fr) auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(242,235,220,0.08);
  transition: background 400ms var(--ease-premium), padding 400ms var(--ease-premium);
}
.awards-list li:hover {
  background: rgba(184,146,76,0.04);
  padding-left: 12px; padding-right: 12px;
}
.awards-list li:last-child { border-bottom: none; }
.awards-list .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.awards-list .ev {
  font-family: var(--display);
  font-size: 16px;
  color: var(--cream);
  font-weight: 400;
}
.awards-list .cat {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(242,235,220,0.78);
  letter-spacing: -0.005em;
}
.awards-list .pos {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  text-align: right;
  min-width: 56px;
}
@media (max-width: 800px) {
  .awards-list li {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "yr ev pos" ". cat .";
    row-gap: 6px;
  }
  .awards-list .yr { grid-area: yr; }
  .awards-list .ev { grid-area: ev; }
  .awards-list .cat { grid-area: cat; font-size: 13px; }
  .awards-list .pos { grid-area: pos; }
}
.awards-disclaimer {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.50);
  line-height: 1.6;
}
.awards-disclaimer em {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-soft);
}

/* ========================================================
   HERO v3 — CINEMATIC FRAME-SCRUB
   Replaces .hero--bomb. Scroll-driven WebP sequence in canvas.
   Section is 250vh tall; inner pin is 100vh sticky.
   ======================================================== */
.hero--cinema {
  position: relative;
  height: 100vh;            /* natural height; GSAP pin handles scroll distance */
  background: var(--ink);
  margin: 0;
  padding: 0;
  display: block;
}
.hero-cinema-pin {
  position: relative;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--ink);
  z-index: 0;
  /* Color grade: neutralise warm tungsten cast, lift contrast slightly */
  filter: saturate(0.55) hue-rotate(-8deg) contrast(1.06) brightness(0.94);
}
/* Cinematic grade — vignette + gradient for legibility */
.hero-cinema-grade {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* cool cast to balance any residual warm tones */
    linear-gradient(180deg, rgba(28,42,58,0.16) 0%, rgba(28,42,58,0.08) 100%),
    /* top — for nav legibility */
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.05) 18%, transparent 35%),
    /* bottom — for headline + CTAs */
    linear-gradient(0deg, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.5) 18%, rgba(14,14,14,0.05) 38%, transparent 55%),
    /* corner vignettes */
    radial-gradient(ellipse at 50% 100%, transparent 30%, rgba(14,14,14,0.4) 100%);
}

/* CONTENT — overlay grid */
.hero-cinema-content {
  position: absolute; inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(96px, 8vw, 132px) clamp(28px, 6vw, 96px) clamp(40px, 5vw, 64px);
  color: var(--cream);
}

/* Top bar */
.hero-cinema-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-cinema-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.92;
}
.hero-cinema-eyebrow .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.hero-cinema-eyebrow .num { color: var(--gold-soft); font-weight: 600; }
.hero-cinema-eyebrow .line { width: 40px; height: 1px; background: rgba(242,235,220,0.4); display: inline-block; }
.hero-cinema-meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.7);
}
.hero-cinema-meta .ornament {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 700px) { .hero-cinema-meta { display: none; } }

/* Center area */
.hero-cinema-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
}
.hero-cinema-h1 {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
  text-wrap: balance;
  margin: 0;
  max-width: 18ch;
}
.hero-cinema-h1 .line { display: block; }
.hero-cinema-h1 .line:nth-child(2) { padding-left: clamp(28px, 5vw, 88px); }
.hero-cinema-h1 .line:nth-child(3) { padding-left: clamp(14px, 3vw, 48px); }
.hero-cinema-h1 em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-soft);
}

/* Scroll cue */
.hero-cinema-cue {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.6);
  margin-top: 8px;
}
.hero-cinema-cue .line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.hero-cinema-cue .line::after {
  content: '';
  position: absolute; left: -30%; top: 0; width: 30%; height: 100%;
  background: rgba(242,235,220,0.9);
  animation: scrollCue 2.4s var(--ease-premium) infinite;
}

/* Bottom — sub + CTAs */
.hero-cinema-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  border-top: 1px solid rgba(242,235,220,0.18);
  padding-top: 28px;
}
.hero-cinema-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(242,235,220,0.84);
  max-width: 38ch;
  margin: 0;
}
.hero-cinema-sub em {
  color: var(--gold-soft);
  font-style: italic;
}
.hero-cinema-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,235,220,0.45);
  font-family: var(--body);
  transition: background 300ms var(--ease-premium), border-color 300ms var(--ease-premium), transform 400ms var(--ease-premium);
}
.btn-ghost:hover { background: rgba(242,235,220,0.1); border-color: var(--cream); transform: translateY(-2px); }

@media (max-width: 800px) {
  .hero-cinema-bottom { grid-template-columns: 1fr; gap: 20px; }
}

/* Reveal-states gated by scroll progress (set as CSS vars from JS) */
.hero--cinema { --scrub: 0; }
.hero-cinema-h1,
.hero-cinema-cue,
.hero-cinema-sub,
.hero-cinema-ctas { transition: opacity 600ms var(--ease-premium), transform 800ms var(--ease-premium); will-change: opacity, transform; }
.hero-cinema-h1 { opacity: clamp(0, calc((var(--scrub) - 0.55) * 4), 1); transform: translateY(calc((1 - clamp(0, calc((var(--scrub) - 0.55) * 4), 1)) * 24px)); }
.hero-cinema-cue { opacity: clamp(0, calc(1 - var(--scrub) * 4), 1); }
.hero-cinema-sub,
.hero-cinema-ctas { opacity: clamp(0, calc((var(--scrub) - 0.7) * 5), 1); transform: translateY(calc((1 - clamp(0, calc((var(--scrub) - 0.7) * 5), 1)) * 18px)); }

/* Hide retired hero variants */
.hero-bg-stack, .hero-layer, .hero--split, .hero--bomb { display: none !important; }

/* ========================================================
   HERO CINEMA — handoff fixes
   ======================================================== */

/* GSAP-injected pin-spacer for the cinematic hero — paint it ink
   so any micro-frame between pin-release and credibility-paint
   stays in the dark register, no cream flash. */
.pin-spacer:has(.hero--cinema) {
  background: var(--ink) !important;
}

/* While the user is over the dark cinematic hero (or its spacer),
   override .is-scrolled cream pill — keep nav glass-dark. */
.nav.is-over-dark.is-scrolled,
.nav.is-over-dark {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}
.nav.is-over-dark .nav-mark .word,
.nav.is-over-dark .nav-links a,
.nav.is-over-dark .nav-cta {
  color: var(--cream);
}
.nav.is-over-dark .nav-mark .logo-mark {
  background-image: url('assets/brand/alps-mark-light.svg');
}
.nav.is-over-dark .nav-cta { border-color: rgba(242, 235, 220, 0.45); }
.nav.is-over-dark .nav-cta:hover { background: var(--cream); color: var(--ink); }
.nav.is-over-dark .nav-links a::after { background: var(--gold-soft); }

/* Smooth handoff: cinematic hero fades into a thin gold rule before
   credibility section starts — gives a deliberate beat instead of a snap. */
.hero--cinema::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 3;
  pointer-events: none;
}

/* ========================================================
   HERO CINEMA — LIGHT VARIANT
   Black text on alpine sky · "fade into clouds" headline mask
   Replaces the dark cinematic content+grade
   ======================================================== */

/* Override the dark grade — minimal grade so the bright sky reads true.
   Just a subtle bottom shade to ensure scroll-cue legibility. */
.hero-cinema-grade--light {
  background:
    /* very subtle top fade so nav doesn't disappear into white sky */
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 8%),
    /* almost-nothing bottom bloom for scroll-cue */
    linear-gradient(0deg, rgba(255,255,255,0.22) 0%, transparent 18%);
}

/* Light content variant */
.hero-cinema-content--light {
  color: var(--ink);
  padding-top: clamp(110px, 9vw, 150px);
}

/* Tucked corner eyebrow (replaces the centered top bar) */
.hero-cinema-corner {
  position: absolute;
  top: clamp(110px, 9vw, 150px);
  left: clamp(28px, 6vw, 96px);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.78;
  z-index: 3;
}
.hero-cinema-corner .dot { width: 5px; height: 5px; background: var(--ink); border-radius: 50%; }
.hero-cinema-corner .num { color: var(--gold-deep); font-weight: 600; }
@media (max-width: 800px) { .hero-cinema-corner { left: 20px; font-size: 10px; gap: 8px; } }

/* Centre stage area — pulled toward top-third like FIND */
.hero-cinema-stage {
  position: absolute;
  top: clamp(160px, 18vh, 220px);
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding: 0 clamp(20px, 5vw, 80px);
  z-index: 3;
  text-align: center;
}

/* Big black serif headline with cloud-fade bottom mask */
.hero-cinema-h1--cloud {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
  max-width: 18ch;
  /* The "fading into the clouds" effect — solid up top, soft fade at the very bottom of glyphs */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 86%, rgba(0,0,0,0.55) 95%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 86%, rgba(0,0,0,0.55) 95%, transparent 100%);
  /* Layered shadow for separation against bright sky */
  text-shadow: 0 2px 32px rgba(255,255,255,0.55);
}
.hero-cinema-h1--cloud .line { display: block; }
.hero-cinema-h1--cloud .line:nth-child(2) { padding-left: clamp(20px, 4vw, 80px); }
.hero-cinema-h1--cloud em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-deep);
}

/* Light sub */
.hero-cinema-sub-light {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 56ch;
  margin: 0;
  text-shadow: 0 2px 22px rgba(255,255,255,0.6);
}
.hero-cinema-sub-light em {
  font-style: italic;
  color: var(--muted);
  font-weight: 350;
}

/* CTAs in light variant — ink primary, quiet secondary */
.hero-cinema-stage .hero-cinema-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.btn-ink {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  font-family: var(--body);
  transition: transform 400ms var(--ease-premium), background 300ms var(--ease-premium);
}
.btn-ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.btn-ink .arrow { width: 14px; height: 14px; transition: transform 400ms var(--ease-premium); }
.btn-ink:hover .arrow { transform: translateX(4px); }

.btn-quiet {
  display: inline-flex; align-items: center;
  padding: 18px 24px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(14,14,14,0.45);
  font-family: var(--body);
  transition: background 300ms var(--ease-premium), border-color 300ms var(--ease-premium), transform 400ms var(--ease-premium);
}
.btn-quiet:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* Scroll-for-more cue at bottom — black, with cloud fade */
.hero-cinema-cue-light {
  position: absolute;
  bottom: clamp(36px, 5vw, 60px);
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
  z-index: 3;
  /* Cue itself fades top→bottom slightly so it dissolves into the scene */
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, #000 50%, rgba(0,0,0,0.6) 100%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, #000 50%, rgba(0,0,0,0.6) 100%);
}
.hero-cinema-cue-light .line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-cinema-cue-light .line::after {
  content: '';
  position: absolute; left: -30%; top: 0; width: 30%; height: 100%;
  background: var(--gold-deep);
  animation: scrollCue 2.4s var(--ease-premium) infinite;
}

/* Scroll-progress reveals — keep but tuned for new copy timing */
.hero--cinema { --scrub: 0; }
.hero-cinema-stage,
.hero-cinema-cue-light { transition: opacity 600ms var(--ease-premium), transform 800ms var(--ease-premium); will-change: opacity, transform; }
/* Headline+sub+CTAs visible from the start (instead of waiting for scrub end) */
.hero-cinema-stage { opacity: clamp(0, calc(1 - var(--scrub) * 1.2), 1); transform: translateY(calc(var(--scrub) * -32px)); }
.hero-cinema-cue-light { opacity: clamp(0, calc(1 - var(--scrub) * 4), 1); }

/* Nav over light hero — keep transparent, ensure ink text */
.nav.is-over-light { background: transparent !important; backdrop-filter: none !important; border-bottom-color: transparent !important; }
.nav.is-over-light .nav-mark .word,
.nav.is-over-light .nav-links a,
.nav.is-over-light .nav-cta { color: var(--ink); }
.nav.is-over-light .nav-cta { border-color: rgba(14,14,14,0.6); }
.nav.is-over-light .nav-cta:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 800px) {
  .hero-cinema-stage { top: clamp(140px, 22vh, 200px); gap: 20px; }
  .hero-cinema-h1--cloud { font-size: clamp(44px, 11vw, 80px); }
  .hero-cinema-sub-light { font-size: 15px; }
  .hero-cinema-corner span:last-child { display: none; }
}

/* Override earlier dark variant rules so the light variant wins */
.hero--cinema .hero-cinema-content--light { background: transparent; }

/* ========================================================
   HERO CINEMA — TWO-SCENE CROSS-FADE
   Scene 1: "Some chase the view. Some live in it."  (scrub 0 → 0.5)
   Scene 2: "Your property journey, for life."        (scrub 0.5 → 1)
   ======================================================== */

/* Centre the stage vertically, take full width */
.hero-cinema-stage {
  position: absolute !important;
  top: 50% !important;
  left: 0; right: 0;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 32px);
  padding: 0 clamp(20px, 5vw, 80px);
  text-align: center;
}

/* Stack both headlines in the same grid cell so they cross-fade */
.hero-cinema-scenes {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  justify-items: center;
}
.hero-cinema-scenes > .is-scene { grid-area: stack; }

.hero-cinema-subs {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  justify-items: center;
}
.hero-cinema-subs > .is-scene { grid-area: stack; }

/* Loud, bold serif treatment */
.hero-cinema-h1--cloud {
  font-family: var(--display);
  font-weight: 500;                              /* heavier than 380 — louder */
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(64px, 11.5vw, 200px);          /* bigger */
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
  max-width: 18ch;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, rgba(0,0,0,0.5) 96%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 88%, rgba(0,0,0,0.5) 96%, transparent 100%);
  text-shadow: 0 2px 40px rgba(255,255,255,0.5);
  transition: opacity 600ms var(--ease-premium), transform 800ms var(--ease-premium);
  will-change: opacity, transform;
}
.hero-cinema-h1--cloud .line { display: block; }
.hero-cinema-h1--cloud .line:nth-child(2) { padding-left: clamp(20px, 4vw, 90px); }
.hero-cinema-h1--cloud .line:nth-child(3) { padding-left: clamp(10px, 2vw, 48px); }
.hero-cinema-h1--cloud em {
  font-style: italic;
  font-weight: 380;
  color: var(--gold-deep);
}

/* —— Scene gating — driven by --scrub on .hero--cinema —— */
/* Scene 1: visible 0 → 0.60 (compass + waterscape), fades out 0.60 → 0.72 */
.hero-cinema-h1--cloud[data-scene="1"],
.hero-cinema-sub-light[data-scene="1"] {
  opacity: clamp(0, calc((0.72 - var(--scrub)) * 8), 1);
  transform: translateY(calc(var(--scrub) * -16px));
}
/* Scene 2: hidden until 0.72 (bungalow emerges), fades in 0.72 → 0.86, full thereafter */
.hero-cinema-h1--cloud[data-scene="2"],
.hero-cinema-sub-light[data-scene="2"],
.hero-cinema-ctas.is-scene[data-scene="2"] {
  opacity: clamp(0, calc((var(--scrub) - 0.72) * 7), 1);
  transform: translateY(calc((1 - clamp(0, calc((var(--scrub) - 0.72) * 7), 1)) * 22px));
}

/* The whole stage stays visible — no parent fade. Override earlier rule. */
.hero-cinema-stage { opacity: 1 !important; transform: translateY(-50%) !important; }

/* Subs sit closer to the headlines */
.hero-cinema-sub-light {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 56ch;
  margin: 0;
  text-shadow: 0 2px 22px rgba(255,255,255,0.55);
  transition: opacity 600ms var(--ease-premium), transform 800ms var(--ease-premium);
}
.hero-cinema-sub-light em {
  font-style: italic;
  color: var(--muted);
  font-weight: 350;
}

/* ========================================================
   READABILITY PASS — fixes for AA contrast + glyph integrity
   Loaded last so it overrides earlier rules.
   ======================================================== */

/* 1+2. Hero h1: bolder weight; cloud-mask shifted so descenders survive */
.hero-cinema-h1--cloud {
  font-weight: 580;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 94%, rgba(0,0,0,0.7) 98%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 94%, rgba(0,0,0,0.7) 98%, transparent 100%);
  /* Add a tiny extra padding-bottom so the descender area is part of the masked region but not the glyph reach */
  padding-bottom: 0.06em;
}
.hero-cinema-h1--cloud em { font-weight: 460; }

/* 3. Hero sub italic — drop muted, use ink for AA */
.hero-cinema-sub-light em {
  color: var(--ink);
  opacity: 0.78;       /* still differentiated, but readable */
}
.hero-cinema-sub-light {
  font-weight: 450;    /* slightly heavier for bright-sky legibility */
  text-shadow: 0 2px 24px rgba(255,255,255,0.7);
}

/* 4. Hero corner eyebrow — fuller opacity + tiny halo */
.hero-cinema-corner {
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,255,255,0.5);
}

/* 5. Hero scroll cue — full opacity, gentler mask that doesn't clip mid-glyph */
.hero-cinema-cue-light {
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,255,255,0.5);
  -webkit-mask-image: none;
          mask-image: none;
}

/* 6. Method-card body text — bump alpha to clear AA */
.method-card p {
  color: rgba(242,235,220,0.92);
}

/* 7. Awards-list category text */
.awards-list .cat {
  color: rgba(242,235,220,0.88);
}

/* 8. Vision-verse caption (ESV src) — promote from --muted to ink-with-alpha for cream */
.vision-verse figcaption .src { color: rgba(14, 14, 14, 0.62); }

/* 9. Awards disclaimer — bump alpha for AA + very slight size lift on the body bit */
.awards-disclaimer {
  color: rgba(242,235,220,0.72);
  font-size: 11px;
}

/* 10. Manifesto-line italics — boost contrast over the mountain-image area */
.manifesto-line em { font-weight: 400; }
.manifesto-line, .manifesto h2 { text-shadow: 0 1px 14px rgba(247,241,226,0.7); }

/* ========================================================
   READABILITY PASS 2 — gold-on-sky contrast, micro-text
   ======================================================== */

/* 11. Headline italic em — gold-deep was too light against bright sky.
       Use a deeper tone and add a white halo to lift it. */
.hero-cinema-h1--cloud em {
  color: #6E5421;                    /* gold-deep darkened ~25% — passes AA on cyan-blue sky */
  text-shadow: 0 2px 32px rgba(255,255,255,0.55), 0 0 1px rgba(255,255,255,0.3);
}

/* 14. Hero corner eyebrow .num — same fix */
.hero-cinema-corner .num {
  color: #6E5421;
}

/* 12. Vision-divider — punch up the dot border so it reads on bg image */
.vision-divider span { background: rgba(14,14,14,0.42); }
.vision-divider i { border-color: rgba(14,14,14,0.5); }

/* 13. Award-num figure markers — keep italic but slightly heavier + brighter */
.award-feature .award-num {
  color: var(--gold-pale);            /* lighter gold reads better against ink-warm */
  font-weight: 380;
}

/* 15. Verse blockquote — promote out of --muted into ink-with-alpha */
.vision-verse blockquote { color: rgba(14,14,14,0.78); }
.vision-verse figcaption,
.vision-verse figcaption .ref { color: rgba(14,14,14,0.74); }
.vision-verse figcaption .ref::after { background: rgba(14,14,14,0.42); color: rgba(14,14,14,0.62); }

/* Bonus fix surfaced during pass 2: the manifesto-link & vision-cta need slightly stronger borders/text */
.manifesto-link,
.about-excerpt-link {
  color: var(--ink);
  border-bottom-color: rgba(14,14,14,0.55);
}
.manifesto-link:hover,
.about-excerpt-link:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

/* Awards section eyebrow num — make sure it pops on dark BG */
.awards .eyebrow .num { color: var(--gold-pale); }

/* Footer regulatory line — was rgba(0.5), bump for AA */
.footer .reg { color: rgba(242,235,220,0.78); }

/* ========================================================
   HERO CINEMA — VISIBILITY OVERHAUL
   Cream text + cinematic centre-band darkening + ink-halo
   Loaded last so it overrides earlier hero-cinema rules.
   ======================================================== */

/* Replace the airy light grade with a stronger cinematic grade
   that darkens the centre band where text sits, and the bottom
   where the scroll cue lives. Top stays clean for the bright sky. */
.hero-cinema-grade--light {
  background:
    /* top — minimal vignette, just enough for nav legibility */
    linear-gradient(180deg, rgba(14,14,14,0.30) 0%, transparent 14%),
    /* centre band — soft darken so cream text reads on bright sky */
    linear-gradient(180deg,
      transparent 18%,
      rgba(14,14,14,0.32) 36%,
      rgba(14,14,14,0.42) 50%,
      rgba(14,14,14,0.32) 64%,
      transparent 86%),
    /* bottom — scroll cue + CTA legibility on dark home frames */
    linear-gradient(0deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.18) 24%, transparent 42%);
}

/* All hero text → cream with ink halo (always readable on any frame) */
.hero-cinema-content--light { color: var(--cream); }

.hero-cinema-h1--cloud {
  color: var(--cream);
  text-shadow:
    0 2px 24px rgba(14,14,14,0.55),
    0 0 1px rgba(14,14,14,0.4);
  -webkit-mask-image: linear-gradient(180deg, var(--cream) 0%, var(--cream) 94%, rgba(245,235,220,0.6) 98%, transparent 100%);
          mask-image: linear-gradient(180deg, var(--cream) 0%, var(--cream) 94%, rgba(245,235,220,0.6) 98%, transparent 100%);
}
.hero-cinema-h1--cloud em {
  color: var(--gold-soft);
  text-shadow:
    0 2px 24px rgba(14,14,14,0.7),
    0 0 1px rgba(14,14,14,0.5);
}

.hero-cinema-sub-light {
  color: rgba(242,235,220,0.96);
  text-shadow: 0 2px 18px rgba(14,14,14,0.55);
  font-weight: 450;
}
.hero-cinema-sub-light em {
  color: var(--gold-soft);
  opacity: 1;
}

/* CTAs — cream/ink primary, ghost secondary. Both readable on dark or bright frames. */
.hero-cinema-stage .btn-ink {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero-cinema-stage .btn-ink:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}
.hero-cinema-stage .btn-quiet {
  background: rgba(14,14,14,0.18);
  color: var(--cream);
  border-color: rgba(242,235,220,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-cinema-stage .btn-quiet:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Scroll cue — always visible (no fade-out gating), cream */
.hero-cinema-cue-light {
  color: var(--cream) !important;
  opacity: 1 !important;
  text-shadow: 0 2px 14px rgba(14,14,14,0.55);
  -webkit-mask-image: none !important;
          mask-image: none !important;
}
.hero-cinema-cue-light .line { background: rgba(242,235,220,0.6); }
.hero-cinema-cue-light .line::after { background: var(--gold-soft); }

/* Override the scrub-driven fade-out on the cue — keep visible throughout */
.hero--cinema { --scrub: 0; }
.hero-cinema-cue-light {
  /* hard-override the earlier opacity rule */
  opacity: 1 !important;
}

/* Scene gating retained, but stage parent no longer fades out */
.hero-cinema-stage { opacity: 1 !important; transform: translateY(-50%) !important; }

/* Hide the corner eyebrow (markup removed but defensive in case it returns) */
.hero-cinema-corner { display: none !important; }

/* ========================================================
   AWARDS — EDITORIAL CITATIONS (replaces feature-cards + ledger)
   ======================================================== */

/* Override earlier .awards-head + .awards-features + .awards-ledger to nothing */
.awards--editorial .awards-features,
.awards--editorial .awards-ledger { display: none !important; }

.awards--editorial { padding: clamp(120px, 14vw, 180px) 0; }

.awards--editorial .container-narrow {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.awards--editorial .eyebrow { color: var(--gold-soft); justify-content: center; }
.awards--editorial .eyebrow .dot { background: var(--gold-soft); }

.awards--editorial h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(56px, 7vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 24px 0 0;
}
.awards--editorial h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 320;
}

.awards-lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(242,235,220,0.78);
  margin: 36px auto 0;
  max-width: 44ch;
}

/* —— The editorial citations row —— */
.awards-citations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  margin: clamp(80px, 9vw, 120px) auto 0;
  border-top: 1px solid rgba(184,146,76,0.32);
  border-bottom: 1px solid rgba(184,146,76,0.32);
}
.awards-citation {
  margin: 0;
  padding: clamp(48px, 5vw, 72px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.awards-citation + .awards-citation::before {
  content: "";
  position: absolute;
  top: 14%; bottom: 14%; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,146,76,0.42) 25%, rgba(184,146,76,0.42) 75%, transparent);
}
.awards-citation .qty {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: inline-block;
}
.awards-citation .qty em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-soft);
  font-size: 0.5em;
  vertical-align: super;
  margin: 0 0.04em;
  letter-spacing: 0;
}
.awards-citation figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
}
.awards-citation .title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.005em;
  color: var(--cream);
}
.awards-citation .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
}
.awards-citation .years {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: rgba(242,235,220,0.66);
  margin-top: 4px;
  letter-spacing: -0.005em;
}

@media (max-width: 800px) {
  .awards-citations { grid-template-columns: 1fr; }
  .awards-citation + .awards-citation { border-top: 1px solid rgba(184,146,76,0.2); }
  .awards-citation + .awards-citation::before { display: none; }
}

/* —— Footer line —— */
.awards-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: clamp(56px, 6vw, 80px) auto 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.62);
  max-width: 720px;
  text-align: center;
}
.awards-foot-rule {
  flex-shrink: 0;
  width: 24px; height: 1px;
  background: rgba(184,146,76,0.55);
}
.awards-foot-text { line-height: 1.6; }
@media (max-width: 600px) {
  .awards-foot { flex-direction: column; gap: 12px; }
  .awards-foot-rule { width: 60px; }
}

/* ========================================================
   AWARDS — STRIP (client-framed, compact horizontal)
   ======================================================== */

/* hide previous variants */
.awards--strip .awards-features,
.awards--strip .awards-ledger,
.awards--strip .awards-citations,
.awards--strip .awards-foot,
.awards--strip .awards-head { display: none !important; }
.awards--strip { padding: clamp(80px, 9vw, 120px) 0; }

.awards-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  border-top: 1px solid rgba(184,146,76,0.32);
  border-bottom: 1px solid rgba(184,146,76,0.32);
  padding: clamp(56px, 7vw, 96px) 0;
}

/* head */
.awards-strip-head { display: flex; flex-direction: column; gap: 20px; max-width: 880px; }
.awards-strip-head .eyebrow { color: var(--gold-soft); }
.awards-strip-head .eyebrow .dot { background: var(--gold-soft); }
.awards-strip-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  max-width: 18ch;
}
.awards-strip-head h2 em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-soft);
}
.awards-strip-head p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(242,235,220,0.78);
  margin: 0;
  max-width: 56ch;
}

/* stat row — full-width 4-up row, large numerals */
.awards-strip-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid rgba(184,146,76,0.22);
  border-bottom: 1px solid rgba(184,146,76,0.22);
}
.awards-strip-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.6vw, 36px);
  position: relative;
}
.awards-strip-stats li + li::before {
  content: "";
  position: absolute;
  top: 18%; bottom: 18%; left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,146,76,0.34) 25%, rgba(184,146,76,0.34) 75%, transparent);
}
.awards-strip-stats .qty {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(64px, 7.6vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.awards-strip-stats .qty em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-soft);
  font-size: 0.5em;
  margin: 0 0.04em;
  letter-spacing: 0;
  vertical-align: super;
}
.awards-strip-stats .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.78);
  line-height: 1.55;
  font-weight: 500;
}
@media (max-width: 900px) {
  .awards-strip-stats { grid-template-columns: 1fr 1fr; }
  .awards-strip-stats li:nth-child(2)::before { display: block; }
  .awards-strip-stats li:nth-child(3)::before { display: none; }
}
@media (max-width: 540px) {
  .awards-strip-stats { grid-template-columns: 1fr; }
  .awards-strip-stats li::before { display: none !important; }
  .awards-strip-stats li + li { border-top: 1px solid rgba(184,146,76,0.18); }
}

/* CTA button at section base — full row below */
.awards-strip-cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: clamp(40px, 5vw, 72px);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 360ms var(--ease-premium), color 360ms var(--ease-premium), gap 400ms var(--ease-premium);
}
.awards-strip-cta:hover { background: var(--gold-soft); color: var(--ink-warm); gap: 18px; }
.awards-strip-cta svg { width: 16px; height: 16px; }

@media (max-width: 1000px) {
  .awards-strip { grid-template-columns: 1fr; }
  .awards-strip-stats { border-left: none; border-top: 1px solid rgba(184,146,76,0.32); padding-left: 0; padding-top: clamp(32px, 4vw, 56px); }
  .awards-strip-cta { justify-self: center; }
}
@media (max-width: 600px) {
  .awards-strip-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ========================================================
   MODAL (re-usable; first instance: awards-modal)
   ======================================================== */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms var(--ease-premium);
}
.modal[hidden] { display: none; }
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(14,14,14,0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 84vh;
  background: var(--ink-warm);
  color: var(--cream);
  border: 1px solid rgba(184,146,76,0.32);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateY(30px);
  transition: transform 460ms var(--ease-premium);
  isolation: isolate;
  overflow: hidden;
}
.modal.is-open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242,235,220,0.3);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 300ms var(--ease-premium), color 300ms var(--ease-premium), border-color 300ms var(--ease-premium);
}
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { background: var(--cream); color: var(--ink-warm); border-color: var(--cream); }

.modal-head {
  padding: clamp(40px, 5vw, 64px) clamp(36px, 5vw, 64px) clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid rgba(184,146,76,0.22);
}
.modal-head .eyebrow { color: var(--gold-soft); margin-bottom: 16px; }
.modal-head .eyebrow .dot { background: var(--gold-soft); }
.modal-head h3 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin: 0 0 16px;
}
.modal-head p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242,235,220,0.78);
  margin: 0;
  max-width: 60ch;
}

.modal-scroll {
  overflow-y: auto;
  padding: clamp(28px, 3vw, 40px) clamp(36px, 5vw, 64px);
}
.modal-scroll::-webkit-scrollbar { width: 6px; }
.modal-scroll::-webkit-scrollbar-thumb { background: rgba(184,146,76,0.4); border-radius: 4px; }
.modal-scroll::-webkit-scrollbar-track { background: transparent; }

.modal-section {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin: clamp(28px, 3vw, 40px) 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,146,76,0.28);
}
.modal-section:first-child { margin-top: 0; }

.modal-table {
  width: 100%;
  border-collapse: collapse;
}
.modal-table tr { transition: background 300ms var(--ease-premium); }
.modal-table tr:hover { background: rgba(184,146,76,0.06); }
.modal-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(242,235,220,0.07);
  vertical-align: baseline;
}
.modal-table td.yr {
  width: 60px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold-soft);
}
.modal-table td.ev {
  font-family: var(--display);
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
}
.modal-table td.cat {
  font-size: 13.5px;
  color: rgba(242,235,220,0.82);
}
.modal-table td.pos {
  width: 100px;
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
@media (max-width: 700px) {
  .modal-table td { padding: 10px 8px; }
  .modal-table td.yr { width: 44px; font-size: 16px; }
  .modal-table td.ev { font-size: 13px; }
  .modal-table td.cat { font-size: 12px; }
  .modal-table td.pos { width: 64px; font-size: 9px; }
}

.modal-foot {
  padding: 18px clamp(36px, 5vw, 64px);
  border-top: 1px solid rgba(184,146,76,0.22);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.6);
  line-height: 1.6;
  background: rgba(0,0,0,0.18);
}

/* Lock body scroll while modal open */
body.is-modal-open { overflow: hidden; }

/* ========================================================
   AWARDS STATS — STAGE VIDEO BACKGROUND
   Positioned behind the 4-up stats panel only (not the head/CTA)
   ======================================================== */
.awards-strip-stats-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(184,146,76,0.32);
  border-bottom: 1px solid rgba(184,146,76,0.32);
  background: #050505;
}
.awards-strip-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* warm grade so stage lighting harmonises with cream/gold palette */
  filter: saturate(0.85) contrast(1.05) brightness(0.85) sepia(0.08);
}
/* Multi-layer grade so the stats are always readable on top */
.awards-strip-grade {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* warm tint */
    linear-gradient(180deg, rgba(31,26,18,0.68) 0%, rgba(14,14,14,0.78) 100%),
    /* centre vignette around numerals */
    radial-gradient(ellipse at center, transparent 30%, rgba(14,14,14,0.4) 100%);
}

/* Reset the previous border treatment now that wrap holds the borders */
.awards-strip-stats {
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  z-index: 2;
}
.awards-strip-stats li + li::before {
  /* slightly brighter rules over the dim video */
  background: linear-gradient(to bottom, transparent, rgba(242,235,220,0.28) 25%, rgba(242,235,220,0.28) 75%, transparent) !important;
}

/* Pause the video during reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .awards-strip-video { display: none; }
  .awards-strip-stats-wrap { background: var(--ink-warm); }
}

/* Mobile: keep the poster (cheaper than autoplaying video) on small screens */
@media (max-width: 600px) {
  .awards-strip-video { display: none; }
  .awards-strip-stats-wrap {
    background:
      linear-gradient(180deg, rgba(31,26,18,0.85), rgba(14,14,14,0.92)),
      url('assets/awards-bg/awards-stage.webp') no-repeat center / cover;
  }
}

/* ========================================================
   AWARDS — STAGE VIDEO AS FULL-SECTION BACKGROUND
   Overrides earlier .awards-strip-stats-wrap rules
   ======================================================== */

/* Section becomes the positioning context */
.awards--strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a0a0a;
}

/* Stage video — full-bleed behind the entire section */
.awards-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.82) contrast(1.05) brightness(0.78) sepia(0.08);
}

/* Multi-layer overlay — keeps head/stats/CTA legible across the full section */
.awards-bg-grade {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* warm tint with edge darkening */
    linear-gradient(180deg, rgba(31,26,18,0.74) 0%, rgba(14,14,14,0.82) 100%),
    /* corner vignette */
    radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(14,14,14,0.42) 100%);
}

/* Keep all section content above the video layer */
.awards--strip .container { position: relative; z-index: 2; }

/* Reset the wrap-only rules from the previous attempt — they no longer apply */
.awards-strip-stats-wrap,
.awards-strip-video,
.awards-strip-grade { all: unset; display: none !important; }

/* Stats panel: thin gold rules top + bottom (over the video grade) */
.awards-strip-stats {
  border-top: 1px solid rgba(184,146,76,0.34) !important;
  border-bottom: 1px solid rgba(184,146,76,0.34) !important;
  background: transparent;
}
.awards-strip-stats li + li::before {
  background: linear-gradient(to bottom, transparent, rgba(242,235,220,0.22) 25%, rgba(242,235,220,0.22) 75%, transparent) !important;
}

/* Reduced motion: hide video, fall back to ink-warm bg */
@media (prefers-reduced-motion: reduce) {
  .awards-bg-video { display: none; }
  .awards--strip { background: var(--ink-warm); }
}

/* Mobile: replace video with poster only */
@media (max-width: 600px) {
  .awards-bg-video { display: none; }
  .awards--strip {
    background:
      linear-gradient(180deg, rgba(31,26,18,0.86), rgba(14,14,14,0.92)),
      url('assets/awards-bg/awards-stage.webp') no-repeat center / cover;
  }
  .awards-bg-grade { display: none; }
}

/* ========================================================
   TESTIMONIALS — 1-UP FADE CAROUSEL (professional)
   Hard overrides for the legacy .testi-card flex rule.
   ======================================================== */
.testi-swiper--solo {
  margin-top: clamp(28px, 4vw, 48px);
  padding-bottom: 96px;
  position: relative;
}
/* Let Swiper-fade control slide positioning. Just reset legacy rules. */
.testi-swiper--solo .swiper-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Card layout — pull-quote panel */
.testi-swiper--solo .testi-card {
  /* Reset the legacy flex / min-height rules */
  flex: none !important;
  min-height: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  /* New treatment */
  background: var(--cream-soft) !important;
  border: 1px solid rgba(184,146,76,0.22) !important;
  padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px) clamp(36px, 4vw, 56px) !important;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(24px, 3vw, 36px);
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
}

/* Decorative quote mark */
.testi-swiper--solo .testi-card .mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.62;
  display: block;
  letter-spacing: -0.04em;
}

/* Quote body */
.testi-swiper--solo .testi-card blockquote {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.testi-swiper--solo .testi-card blockquote em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

/* Meta row — name + source badge */
.testi-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(14,14,14,0.12);
}
.testi-swiper--solo .who {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-swiper--solo .who .name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.testi-swiper--solo .who .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.testi-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(14,14,14,0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  transition: background 300ms var(--ease-premium), border-color 300ms var(--ease-premium);
}
.testi-source svg { width: 16px; height: 16px; flex: none; display: block; }
.testi-source[data-source="google"] svg { color: #4285F4; fill: #4285F4; }
.testi-source[data-source="facebook"] svg { color: #1877F2; fill: #1877F2; }
.testi-source[data-source="google"] svg path,
.testi-source[data-source="facebook"] svg path { fill: currentColor; }
.testi-source:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.testi-source:hover svg { color: var(--gold-soft); }

/* Pagination dots */
.testi-swiper--solo .swiper-pagination {
  position: absolute !important;
  bottom: 32px !important;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testi-swiper--solo .swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  border-radius: 0;
  background: rgba(14,14,14,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 360ms var(--ease-premium), width 360ms var(--ease-premium);
  opacity: 1;
}
.testi-swiper--solo .swiper-pagination-bullet:hover { background: rgba(14,14,14,0.4); }
.testi-swiper--solo .swiper-pagination-bullet-active {
  background: var(--gold-deep);
  width: 56px;
}

/* Hide the old scrollbar styling for solo mode */
.testi-swiper--solo .swiper-scrollbar { display: none; }

/* Responsive */
@media (max-width: 700px) {
  .testi-swiper--solo .testi-card {
    padding: clamp(32px, 6vw, 48px) clamp(24px, 5vw, 36px) clamp(28px, 5vw, 40px);
  }
  .testi-swiper--solo .testi-card blockquote { font-size: 16px; line-height: 1.6; }
  .testi-meta { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ========================================================
   TESTIMONIALS — final constraints + fade-effect safety
   ======================================================== */

/* Cap card width and centre it within each slide (slide is full container width) */
.testi-swiper--solo .swiper-slide .testi-card {
  max-width: 1080px !important;
  margin: 0 auto !important;
}

/* Defensive: ensure Swiper-fade renders correctly even if site CSS pollutes .swiper-slide */
.testi-swiper--solo.swiper-fade .swiper-slide,
.testi-swiper--solo .swiper-fade .swiper-slide {
  pointer-events: none;
}
.testi-swiper--solo.swiper-fade .swiper-slide-active,
.testi-swiper--solo .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

/* Source-badge SVG colour fallback for any browser that ignores currentColor on path */
.testi-source[data-source="google"] { --src: #4285F4; }
.testi-source[data-source="facebook"] { --src: #1877F2; }
.testi-source svg { color: var(--src); }
.testi-source svg * { fill: var(--src); }
.testi-source:hover svg,
.testi-source:hover svg * { fill: var(--gold-soft); color: var(--gold-soft); }

/* The legacy .testi-progress (from the old slider) — hide if any reference remains */
.testi-progress { display: none !important; }

/* ========================================================
   TESTIMONIALS — CARDS CAROUSEL · v3
   Compact cards · big platform badge inside · side arrows · read-more
   ======================================================== */

/* Hide all earlier solo-variant rules */
.testi-swiper--solo { display: none !important; }
.testi-controls { display: none !important; }   /* old top-right buttons gone */

.testi {
  background: var(--cream);
  padding: clamp(96px, 11vw, 160px) 0;
}
.testi .testi-head { margin-bottom: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

/* Rail wrapper holds carousel + side arrows */
.testi-rail {
  position: relative;
  padding: 0 clamp(56px, 7vw, 96px); /* room for the side arrows */
}

/* Side arrows */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid rgba(14,14,14,0.18);
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 360ms var(--ease-premium), border-color 360ms var(--ease-premium), transform 400ms var(--ease-premium);
  box-shadow: 0 8px 24px rgba(14,14,14,0.06);
}
.testi-arrow:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-50%) scale(1.06); }
.testi-arrow svg { width: 22px; height: 22px; }
.testi-arrow--prev { left: 0; }
.testi-arrow--next { right: 0; }
@media (max-width: 700px) {
  .testi-rail { padding: 0; }
  .testi-arrow { top: auto; bottom: 16px; transform: none; width: 44px; height: 44px; }
  .testi-arrow:hover { transform: scale(1.06); }
  .testi-arrow--prev { left: 16px; }
  .testi-arrow--next { right: 16px; }
}

/* Swiper container reset */
.testi-swiper--cards {
  padding-bottom: 80px; /* room for pagination */
  overflow: hidden;
}

/* Slide reset (override legacy + solo rules) */
.testi-swiper--cards .swiper-slide {
  /* Swiper computes width inline — DO NOT set flex/width here. Only neutralise
     legacy decoration rules. */
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

/* The CARD — fills its slide exactly (no horizontal overflow) */
.testi-swiper--cards .testi-card {
  flex: 1 1 100% !important;
  flex-basis: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  background: var(--cream-soft) !important;
  border: 1px solid rgba(14,14,14,0.10) !important;
  border-radius: 8px !important;
  padding: 32px 32px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  box-sizing: border-box !important;
  box-shadow: 0 12px 36px rgba(14,14,14,0.06);
  transition: box-shadow 400ms var(--ease-premium), transform 400ms var(--ease-premium);
}
.testi-swiper--cards .swiper-slide { min-width: 0 !important; }
.testi-swiper--cards .testi-card:hover {
  box-shadow: 0 18px 50px rgba(14,14,14,0.10);
  transform: translateY(-2px);
}

/* Card head — big platform mark + meta */
.testi-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(14,14,14,0.08);
}
.testi-source-mark {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(14,14,14,0.10);
  display: grid; place-items: center;
}
.testi-source-mark svg { width: 24px; height: 24px; display: block; }
.testi-source-mark[data-source="facebook"] {
  background: #fff;
}
.testi-source-mark[data-source="facebook"] svg path { fill: #1877F2; }

.testi-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.testi-platform {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.testi-stars {
  font-size: 13px;
  color: #F4B100;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* Quote — line-clamped by default, expanded with .is-expanded */
.testi-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.testi-card.is-expanded .testi-quote {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
  overflow: visible;
}
.testi-quote em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

/* Read more button */
.testi-readmore {
  align-self: flex-start;
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  cursor: pointer;
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  transition: color 300ms var(--ease-premium), border-color 300ms var(--ease-premium);
}
.testi-readmore:hover { color: var(--ink); border-color: var(--ink); }

/* Card foot — name + role */
.testi-card-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(14,14,14,0.08);
}
.who-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.who-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Pagination dots */
.testi-swiper--cards .swiper-pagination {
  position: absolute !important;
  bottom: 24px !important;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testi-swiper--cards .swiper-pagination-bullet {
  width: 24px; height: 2px;
  background: rgba(14,14,14,0.2);
  border-radius: 0;
  border: none; padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: background 360ms var(--ease-premium), width 360ms var(--ease-premium);
}
.testi-swiper--cards .swiper-pagination-bullet:hover { background: rgba(14,14,14,0.4); }
.testi-swiper--cards .swiper-pagination-bullet-active {
  background: var(--gold-deep);
  width: 48px;
}

/* Center the Recognition head + CTA */
.awards-strip-head {
  align-self: center;
  align-items: center !important;
  text-align: center !important;
  max-width: 880px;
  margin: 0 auto;
}
.awards-strip-head h2 { max-width: 18ch; }
.awards-strip-head .eyebrow { justify-content: center; }
.awards-strip-cta { justify-self: center !important; }

/* ========================================================
   TESTIMONIALS — equal-height cards, no transition shift
   ======================================================== */

/* Stretch wrapper so all slides share max(h) — no autoHeight needed */
.testi-swiper--cards .swiper-wrapper {
  align-items: stretch;
}
.testi-swiper--cards .swiper-slide { height: auto !important; }
.testi-swiper--cards .testi-card { height: 100% !important; }

/* Reserve a comfortable minimum height so unexpanded cards don't feel cramped
   while still keeping the carousel compact. */
.testi-swiper--cards .testi-card {
  min-height: 360px !important;
}

/* When a card is expanded (Read more clicked), let it grow but not push the
   row height arbitrarily — Swiper observes and recalculates */
.testi-swiper--cards .testi-card.is-expanded {
  min-height: auto !important;
}

/* ========================================================
   TESTIMONIALS — fixed card widths (slidesPerView: 'auto')
   2.5 cards visible at large screens, 1 at mobile
   ======================================================== */

/* INTEGER widths only — sub-pixel/fractional widths break Swiper's loop math. */
.testi-swiper--cards .swiper-slide {
  width: 320px !important;
  flex-shrink: 0 !important;
}
@media (min-width: 720px)  { .testi-swiper--cards .swiper-slide { width: 360px !important; } }
@media (min-width: 1024px) { .testi-swiper--cards .swiper-slide { width: 400px !important; } }
@media (min-width: 1280px) { .testi-swiper--cards .swiper-slide { width: 440px !important; } }
@media (min-width: 1600px) { .testi-swiper--cards .swiper-slide { width: 480px !important; } }

/* Card fills its slide */
.testi-swiper--cards .testi-card {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 480px) {
  .testi-swiper--cards .swiper-slide { width: 280px !important; }
}

/* ========================================================
   TESTIMONIAL FIXES — readable body + snap polish
   ======================================================== */

/* Kill the legacy italic on the blockquote — review body should be upright */
.testi-swiper--cards .testi-card blockquote,
.testi-swiper--cards .testi-quote {
  font-style: normal !important;
  font-family: var(--body) !important;          /* Inter Tight reads better than Fraunces for review body */
  font-weight: 400 !important;
  font-size: 15.5px !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
}
/* Keep emphasis (em) italic + gold so the punchy phrases still pop */
.testi-swiper--cards .testi-quote em,
.testi-swiper--cards .testi-card blockquote em {
  font-style: italic !important;
  font-family: var(--display) !important;        /* italic Fraunces for the highlight phrases */
  color: var(--gold-deep) !important;
  font-weight: 500 !important;
}

/* ========================================================
   TESTIMONIALS — FINAL CONSOLIDATION
   Loaded last; strips all prior overrides, leaves Swiper a clean lane.
   ======================================================== */

/* Slides: only set what's needed — width + flex-shrink. Let Swiper own everything else. */
.testi-swiper--cards .swiper-slide,
.testi-swiper--cards .swiper-slide.swiper-slide-duplicate {
  /* reset everything I forced earlier */
  display: block !important;
  align-items: initial !important;
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-sizing: border-box !important;

  /* integer widths, no fractions */
  width: 320px !important;
}
@media (min-width: 720px)  { .testi-swiper--cards .swiper-slide { width: 360px !important; } }
@media (min-width: 1024px) { .testi-swiper--cards .swiper-slide { width: 400px !important; } }
@media (min-width: 1280px) { .testi-swiper--cards .swiper-slide { width: 440px !important; } }
@media (min-width: 1600px) { .testi-swiper--cards .swiper-slide { width: 480px !important; } }
@media (max-width: 480px)  { .testi-swiper--cards .swiper-slide { width: 280px !important; } }

/* The card fills the slide; height is allowed to grow naturally */
.testi-swiper--cards .swiper-slide .testi-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: auto !important;
  min-height: 360px !important;
  flex: none !important;
}

/* ========================================================
   TESTIMONIALS — TRULY FINAL OVERRIDE (highest-specificity)
   Slide width INCLUDES padding-right (= visual gap).
   Card sits inside slide's content box.
   ======================================================== */

/* Use section.testi prefix for max specificity vs all prior rules */
section.testi .swiper.testi-swiper--cards .swiper-slide,
section.testi .swiper.testi-swiper--cards .swiper-slide.swiper-slide-duplicate {
  display: block !important;
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  min-width: 0 !important;
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;

  /* Slide width = card width + buffer (padding-right) */
  width: 360px !important;
  padding: 0 32px 0 0 !important;
}
@media (min-width: 720px)  { section.testi .swiper.testi-swiper--cards .swiper-slide { width: 400px !important; padding-right: 40px !important; } }
@media (min-width: 1024px) { section.testi .swiper.testi-swiper--cards .swiper-slide { width: 440px !important; padding-right: 40px !important; } }
@media (min-width: 1280px) { section.testi .swiper.testi-swiper--cards .swiper-slide { width: 480px !important; padding-right: 48px !important; } }
@media (min-width: 1600px) { section.testi .swiper.testi-swiper--cards .swiper-slide { width: 520px !important; padding-right: 48px !important; } }
@media (max-width: 480px)  { section.testi .swiper.testi-swiper--cards .swiper-slide { width: 300px !important; padding-right: 24px !important; } }

/* Card sits in slide's content box — slide's padding-right becomes the visual gap */
section.testi .swiper.testi-swiper--cards .swiper-slide .testi-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: auto !important;
  min-height: 360px !important;
  flex: none !important;
  margin: 0 !important;
}

/* Remove pagination dashes from testimonial carousel */
section.testi .swiper.testi-swiper--cards .swiper-pagination,
.testi-swiper--cards .swiper-pagination,
.testi-pagination { display: none !important; }
.testi-swiper--cards { padding-bottom: 24px !important; }   /* reclaim the reserved space */

/* Catch-all: hide any Swiper scrollbar / pagination / UI artefact under the cards */
section.testi .swiper-scrollbar,
section.testi .swiper-pagination,
.testi-swiper--cards .swiper-scrollbar,
.testi-swiper--cards .swiper-pagination { display: none !important; }
section.testi .testi-swiper--cards { padding-bottom: 0 !important; }

/* ========================================================
   HERO QUOTE PREVIEW (under hero, before credibility)
   Single editorial pull-quote — short, elegant
   ======================================================== */
.hero-quote {
  background: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.hero-quote-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.hero-quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(96px, 11vw, 160px);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.62;
  display: block;
  letter-spacing: -0.05em;
  align-self: start;
  margin-top: 8px;
}
.hero-quote-body {
  margin: 0;
  grid-column: 2;
}
.hero-quote-body p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.hero-quote-body em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.hero-quote-foot {
  grid-column: 2;
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 36px);
}
.hero-quote-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.hero-quote-source svg {
  width: 16px; height: 16px;
}
.hero-quote-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  text-align: right;
}
.hero-quote-name strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.hero-quote-name em {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
}
.hero-quote-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,146,76,0.4);
  padding-bottom: 6px;
  transition: color 300ms var(--ease-premium), border-color 300ms var(--ease-premium), gap 400ms var(--ease-premium);
}
.hero-quote-link svg { width: 14px; height: 14px; }
.hero-quote-link:hover { color: var(--ink); border-color: var(--ink); gap: 12px; }

@media (max-width: 720px) {
  .hero-quote-row { grid-template-columns: 1fr; }
  .hero-quote-mark { grid-column: 1; line-height: 0.4; }
  .hero-quote-body, .hero-quote-foot { grid-column: 1; }
  .hero-quote-foot { flex-direction: column; align-items: flex-start; }
  .hero-quote-name { margin-left: 0; text-align: left; }
}

/* ========================================================
   HERO QUOTE — thin row override (replaces earlier heavy version)
   ======================================================== */
.hero-quote {
  background: var(--cream);
  padding: clamp(28px, 3vw, 44px) 0 !important;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.hero-quote-row,
.hero-quote-mark,
.hero-quote-foot,
.hero-quote-source,
.hero-quote-name,
.hero-quote-link { display: none !important; }   /* hide v1 markup if any survives */

.hero-quote-strip {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

/* Rating column */
.hero-quote-rating {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
}
.hero-quote-rating-num {
  grid-row: 1 / span 2;
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(40px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-quote-rating-stars {
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero-quote-rating-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Vertical divider */
.hero-quote-rule {
  width: 1px;
  height: 56px;
  background: var(--rule);
  align-self: center;
}

/* Quote body — italic Fraunces, single + attribution */
.hero-quote-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.hero-quote-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  /* truncate to 2 lines on smaller, full on larger */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-quote-attr {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  letter-spacing: -0.005em;
}

/* CTA link */
.hero-quote-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  color: var(--gold-deep);
  text-decoration: none;
  white-space: nowrap;
  transition: color 300ms var(--ease-premium), gap 360ms var(--ease-premium);
}
.hero-quote-cta svg { width: 14px; height: 14px; transition: transform 360ms var(--ease-premium); }
.hero-quote-cta:hover { color: var(--ink); gap: 12px; }
.hero-quote-cta:hover svg { transform: translateX(2px); }

@media (max-width: 900px) {
  .hero-quote-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-quote-rule { display: none; }
  .hero-quote-rating { justify-self: start; grid-template-rows: auto; grid-template-columns: auto auto auto; align-items: center; }
  .hero-quote-rating-num { grid-row: 1; font-size: 28px; }
  .hero-quote-text { -webkit-line-clamp: 3; line-clamp: 3; }
}

/* ========================================================
   HERO QUOTE — TRULY FINAL (max specificity, kills all v1 leakage)
   ======================================================== */

/* Section wrapper */
section.hero-quote {
  background: var(--cream) !important;
  padding: clamp(24px, 3vw, 40px) 0 !important;
  border-top: 1px solid var(--rule-soft) !important;
  border-bottom: 1px solid var(--rule-soft) !important;
}

/* HARD reset on any v1 grandchildren that share a class name with v2 */
section.hero-quote .hero-quote-row,
section.hero-quote .hero-quote-mark,
section.hero-quote .hero-quote-foot,
section.hero-quote .hero-quote-source,
section.hero-quote .hero-quote-name,
section.hero-quote .hero-quote-link {
  display: none !important;
}
/* Reset the legacy body/grid-column rules that were leaking into v2 */
section.hero-quote .hero-quote-body {
  grid-column: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  min-width: 0 !important;
}
section.hero-quote .hero-quote-body p {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
  margin: 0 !important;
}

/* The strip — absolute layout owner */
section.hero-quote .hero-quote-strip {
  display: grid !important;
  grid-template-columns: auto 1px 1fr auto !important;
  align-items: center !important;
  gap: clamp(20px, 3vw, 48px) !important;
}

/* Rating column */
section.hero-quote .hero-quote-rating {
  display: grid !important;
  grid-template-columns: auto auto !important;
  grid-template-rows: auto auto !important;
  column-gap: 14px !important;
  row-gap: 4px !important;
  align-items: center !important;
}
section.hero-quote .hero-quote-rating-num {
  grid-row: 1 / span 2 !important;
  font-family: var(--display) !important;
  font-weight: 380 !important;
  font-size: clamp(40px, 3.6vw, 56px) !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  color: var(--ink) !important;
}
section.hero-quote .hero-quote-rating-stars {
  font-size: 14px !important;
  color: var(--gold-deep) !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}
section.hero-quote .hero-quote-rating-label {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
}

/* Vertical rule */
section.hero-quote .hero-quote-rule {
  width: 1px !important;
  height: 56px !important;
  background: var(--rule) !important;
  align-self: center !important;
}

/* Body — italic quote + attr */
section.hero-quote .hero-quote-text {
  font-family: var(--display) !important;
  font-style: italic !important;
  font-weight: 380 !important;
  font-size: clamp(15px, 1.4vw, 19px) !important;
  line-height: 1.5 !important;
  letter-spacing: -0.005em !important;
  color: var(--ink) !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
section.hero-quote .hero-quote-attr {
  font-family: var(--body) !important;
  font-style: normal !important;
  font-size: 12.5px !important;
  color: var(--muted) !important;
  margin: 0 !important;
  letter-spacing: -0.005em !important;
}

/* CTA */
section.hero-quote .hero-quote-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--display) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  color: var(--gold-deep) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  transition: color 300ms var(--ease-premium), gap 360ms var(--ease-premium) !important;
}
section.hero-quote .hero-quote-cta svg {
  width: 14px !important;
  height: 14px !important;
}
section.hero-quote .hero-quote-cta:hover {
  color: var(--ink) !important;
  gap: 12px !important;
}

@media (max-width: 900px) {
  section.hero-quote .hero-quote-strip { grid-template-columns: 1fr !important; gap: 16px !important; }
  section.hero-quote .hero-quote-rule { display: none !important; }
  section.hero-quote .hero-quote-rating { justify-self: start !important; grid-template-rows: auto !important; grid-template-columns: auto auto auto !important; }
  section.hero-quote .hero-quote-rating-num { grid-row: 1 !important; font-size: 28px !important; }
  section.hero-quote .hero-quote-text { -webkit-line-clamp: 3 !important; line-clamp: 3 !important; }
}

/* Tweak: hero-quote attribution — mono small caps, smaller */
section.hero-quote .hero-quote-attr {
  font-family: var(--mono) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

/* Tweak: attribution back to humanist sans, mixed case, light muted (matches reference) */
section.hero-quote .hero-quote-attr {
  font-family: var(--body) !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
}

/* Tweak: attribution in gold, lighter weight */
section.hero-quote .hero-quote-attr {
  color: var(--gold-pale) !important;
  font-weight: 350 !important;
}

/* ========================================================
   MODAL PINNACLE PHOTOS — three figures at top of awards modal
   ======================================================== */
.modal-pinnacle-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(184,146,76,0.22);
}
.modal-pinnacle-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-pinnacle-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(184,146,76,0.22);
  filter: grayscale(0.12) sepia(0.18) contrast(0.96) brightness(1.02);
}
.modal-pinnacle-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.modal-pinnacle-figure .qty {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.modal-pinnacle-figure .qty em {
  font-style: italic;
  font-size: 0.55em;
  color: var(--gold-soft);
  font-weight: 320;
  margin-left: 4px;
  vertical-align: super;
}
.modal-pinnacle-figure .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.78);
}
@media (max-width: 600px) {
  .modal-pinnacle-photos { grid-template-columns: 1fr; gap: 24px; }
}

/* ========================================================
   CLIENT STRIP — homepage §05·25 "Some of the people we've walked with"
   ======================================================== */
.client-strip {
  background: var(--cream);
  padding: clamp(104px, 12vw, 160px) 0;
  border-top: 1px solid var(--rule);
}
.client-strip-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.client-strip-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px auto 20px;
  max-width: 18ch;
}
.client-strip-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 320;
}
.client-strip-lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto;
}
.client-strip-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.client-card {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(14,14,14,0.10);
  background: var(--cream-deep);
  transition: transform 600ms var(--ease-premium), box-shadow 600ms var(--ease-premium);
}
.client-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(14,14,14,0.10);
}
.client-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.12) sepia(0.18) contrast(0.96) brightness(1.02);
  transition: filter 600ms var(--ease-premium);
}
.client-card:hover img {
  filter: grayscale(0) sepia(0.06) contrast(1) brightness(1);
}
@media (max-width: 900px) { .client-strip-rail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .client-strip-rail { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ========================================================
   RECOGNITION SUB-PAGE — §A Hero through §E Footer
   ======================================================== */

/* Whole page */
.recognition-page {
  background: var(--ink-warm);
  color: var(--cream);
  padding-top: 0;
}

/* §A Hero — full-bleed signature photo */
.rec-hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 0 0 clamp(56px, 6vw, 96px);
}
.rec-hero-img {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  /* Editorial grade: cinematic warmth, masks source softness */
  filter: saturate(0.7) contrast(1.06) brightness(0.84) sepia(0.10);
}
.rec-hero-grade {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    /* heavy bottom for headline legibility */
    linear-gradient(0deg, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.6) 22%, rgba(14,14,14,0.1) 50%, transparent 70%),
    /* top fade for nav */
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, transparent 24%),
    /* corner vignette */
    radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(14,14,14,0.55) 100%),
    /* subtle warm fill */
    linear-gradient(180deg, rgba(31,26,18,0.18), rgba(14,14,14,0.0));
  pointer-events: none;
}
/* Film-grain overlay — masks any residual pixelation, premium tone */
.rec-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
.rec-hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(24px, 6vw, 96px);
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}
.rec-hero-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-weight: 600;
}
.rec-hero-title {
  font-family: var(--display);
  font-weight: 420;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(64px, 10vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 28px;
  text-wrap: balance;
}
.rec-hero-title em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-soft);
}
.rec-hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(242,235,220,0.84);
  margin: 0;
  max-width: 56ch;
}

/* §B Pinnacle accolades */
.rec-pinnacle {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--ink-warm);
  border-bottom: 1px solid rgba(184,146,76,0.22);
}
.rec-pinnacle-head { text-align: center; margin-bottom: clamp(64px, 8vw, 96px); }
.rec-pinnacle-head .eyebrow { color: var(--gold-soft); justify-content: center; }
.rec-pinnacle-head .eyebrow .dot { background: var(--gold-soft); }
.rec-pinnacle-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 24px auto 0;
  max-width: 22ch;
}
.rec-pinnacle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(72px, 9vw, 120px);
}
.rec-pinnacle-row--reverse { direction: rtl; }
.rec-pinnacle-row--reverse > * { direction: ltr; }
.rec-pinnacle-row:last-child { margin-bottom: 0; }
.rec-pinnacle-img { margin: 0; }
.rec-pinnacle-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(184,146,76,0.32);
  filter: grayscale(0.12) sepia(0.18) contrast(0.96) brightness(1.02);
}
.rec-pinnacle-body { display: flex; flex-direction: column; gap: 16px; }
.rec-pinnacle-body .qty {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.rec-pinnacle-body .qty em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-soft);
  font-size: 0.5em;
  margin: 0 0.04em;
  vertical-align: super;
}
.rec-pinnacle-body h3 {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0;
}
.rec-pinnacle-body .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin: 0;
}
.rec-pinnacle-body p:not(.meta) {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(242,235,220,0.84);
  max-width: 44ch;
  margin: 0;
}
@media (max-width: 900px) {
  .rec-pinnacle-row, .rec-pinnacle-row--reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* §C Ceremony archive — asymmetric 12-column grid */
.rec-ceremonies {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--ink-warm);
  border-bottom: 1px solid rgba(184,146,76,0.22);
}
.rec-ceremonies-head { text-align: center; margin-bottom: clamp(56px, 7vw, 96px); }
.rec-ceremonies-head .eyebrow { color: var(--gold-soft); justify-content: center; }
.rec-ceremonies-head .eyebrow .dot { background: var(--gold-soft); }
.rec-ceremonies-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 20px auto 16px;
  max-width: 22ch;
}
.rec-ceremonies-head p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(242,235,220,0.78);
  margin: 0 auto;
  max-width: 44ch;
}
.rec-ceremonies-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.rec-cer { margin: 0; position: relative; }
.rec-cer img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(184,146,76,0.18);
  filter: grayscale(0.12) sepia(0.18) contrast(0.96) brightness(1.02);
  transition: filter 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rec-cer:hover img { filter: grayscale(0) sepia(0.08) contrast(1) brightness(1); }
.rec-cer figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.72);
  line-height: 1.5;
}
.rec-cer--w12 { grid-column: span 12; }
.rec-cer--w8 { grid-column: span 8; }
.rec-cer--w7 { grid-column: span 7; }
.rec-cer--w5 { grid-column: span 5; }
.rec-cer--w4 { grid-column: span 4; }
.rec-cer--w12 img { aspect-ratio: 21 / 9; }
.rec-cer--w8 img { aspect-ratio: 4 / 3; }
.rec-cer--w7 img { aspect-ratio: 4 / 3; }
.rec-cer--w5 img { aspect-ratio: 4 / 5; }
.rec-cer--w4 img { aspect-ratio: 4 / 5; }
.rec-ceremonies-note {
  margin-top: clamp(40px, 5vw, 64px);
  font-family: var(--display);
  font-style: italic; font-weight: 360;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(242,235,220,0.65);
  max-width: 56ch;
  text-align: center;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) {
  .rec-ceremonies-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 14px; }
  .rec-cer--w12, .rec-cer--w8, .rec-cer--w7, .rec-cer--w5, .rec-cer--w4 { grid-column: span 1; }
  .rec-cer img { aspect-ratio: 4 / 5 !important; }
  .rec-cer--w12, .rec-cer--w8 { grid-column: span 2; }
  .rec-cer--w12 img { aspect-ratio: 16 / 9 !important; }
  .rec-cer--w8 img { aspect-ratio: 16 / 10 !important; }
}
@media (max-width: 540px) {
  .rec-ceremonies-grid { grid-template-columns: 1fr; }
}

/* §D Inline ledger */
.rec-ledger {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--ink-warm);
}
.rec-ledger-head { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }
.rec-ledger-head .eyebrow { color: var(--gold-soft); justify-content: center; }
.rec-ledger-head .eyebrow .dot { background: var(--gold-soft); }
.rec-ledger-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin: 20px auto 12px;
  max-width: 24ch;
}
.rec-ledger-head p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242,235,220,0.74);
  max-width: 56ch;
  margin: 0 auto;
}
.rec-section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin: clamp(32px, 4vw, 56px) 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,146,76,0.28);
}
.rec-section-label:first-of-type { margin-top: 0; }
.rec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.rec-table tr { transition: background 300ms cubic-bezier(0.16, 1, 0.3, 1); }
.rec-table tr:hover { background: rgba(184,146,76,0.06); }
.rec-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(242,235,220,0.07);
  vertical-align: baseline;
}
.rec-table td.yr {
  width: 60px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold-soft);
}
.rec-table td.ev {
  font-family: var(--display);
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
}
.rec-table td.cat {
  font-size: 13.5px;
  color: rgba(242,235,220,0.82);
}
.rec-table td.pos {
  width: 100px;
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
@media (max-width: 700px) {
  .rec-table td { padding: 10px 8px; }
  .rec-table td.yr { width: 44px; font-size: 16px; }
  .rec-table td.ev { font-size: 13px; }
  .rec-table td.cat { font-size: 12px; }
  .rec-table td.pos { width: 64px; font-size: 9px; }
}

/* §E Footer */
.rec-foot {
  padding: clamp(64px, 8vw, 120px) 0 clamp(56px, 6vw, 80px);
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(184,146,76,0.22);
}
.rec-foot-attribution {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.62);
  line-height: 1.7;
  margin: 0 auto clamp(36px, 4vw, 56px);
  max-width: 64ch;
}
.rec-foot-ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.rec-foot .btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,235,220,0.4);
}
.rec-foot .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Recognition strip — dual CTA */
.awards-strip-ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-self: center;
  margin-top: clamp(40px, 5vw, 72px);
}
.awards-strip-cta--link {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,235,220,0.35);
  text-decoration: none;
}
.awards-strip-cta--link:hover {
  background: var(--cream);
  color: var(--ink-warm);
  border-color: var(--cream);
}

/* Modal foot — new sub-page link */
.modal-foot { flex-direction: column; gap: 16px; align-items: flex-start !important; }
.modal-foot-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,165,103,0.4);
  padding-bottom: 6px;
  transition: color 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), gap 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-foot-cta:hover { color: var(--cream); border-color: var(--cream); gap: 14px; }
.modal-foot-cta svg { width: 14px; height: 14px; }
.modal-foot-attribution {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.6);
  line-height: 1.6;
}

/* Recognition strip dual-CTA — mobile fix (<540px both pills full-width, no gap collapse) */
@media (max-width: 540px) {
  .awards-strip-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 320px;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 12px !important;
  }
  .awards-strip-ctas .awards-strip-cta {
    justify-content: center;
    text-align: center;
  }
}

/* ============ TRUSTED BENCH ============ */
.bench{ background: var(--cream); color: var(--ink); padding: clamp(104px, 13vw, 168px) 0; border-top: 1px solid var(--rule); }
.bench-head{ max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.bench-head h2{ font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.01em; margin: 14px 0 18px; }
.bench-head h2 em{ font-style: italic; color: var(--gold); }
.bench-lede{ font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; color: rgba(14,14,14,0.72); max-width: 600px; margin: 0 auto; }
.bench-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(14,14,14,0.14); }
.bench-card{ padding: 32px 24px 36px; border-right: 1px solid rgba(14,14,14,0.10); display: flex; flex-direction: column; gap: 10px; }
.bench-card:last-child{ border-right: none; }
.bench-num{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.bench-cat{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(14,14,14,0.55); }
.bench-name{ font-family: var(--display); font-weight: 400; font-size: 22px; line-height: 1.2; margin: 4px 0 6px; letter-spacing: -0.005em; }
.bench-card p{ font-size: 14.5px; line-height: 1.55; color: rgba(14,14,14,0.72); margin: 0; }
.bench-foot{ text-align: center; margin: clamp(36px, 5vw, 56px) auto 0; font-size: 14px; color: rgba(14,14,14,0.6); max-width: 640px; }
.bench-foot em{ font-family: var(--display); font-style: italic; font-size: 15.5px; color: rgba(14,14,14,0.78); }
@media (max-width: 900px){
  .bench-grid{ grid-template-columns: repeat(2, 1fr); }
  .bench-card:nth-child(2){ border-right: none; }
  .bench-card:nth-child(1), .bench-card:nth-child(2){ border-bottom: 1px solid rgba(14,14,14,0.10); }
}
@media (max-width: 560px){
  .bench-grid{ grid-template-columns: 1fr; }
  .bench-card{ border-right: none; border-bottom: 1px solid rgba(14,14,14,0.10); }
  .bench-card:last-child{ border-bottom: none; }
}

/* ============ RECOGNITION REFINEMENTS v2 ============ */

/* a11y */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Hero: italic sub + thin rule + scroll cue */
.recognition-page .rec-hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(242,235,220,0.86);
  max-width: 38ch;
  margin: 0;
}
.rec-hero-rule {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(28px, 3.4vw, 40px);
  max-width: 360px;
}
.rec-hero-rule > span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,179,108,0.55), transparent);
}
.rec-hero-rule > i {
  width: 7px; height: 7px; transform: rotate(45deg);
  background: var(--gold-soft);
  opacity: 0.85;
}
.rec-hero-scroll {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: clamp(24px, 4vw, 40px);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(242,235,220,0.7);
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
}
.rec-hero-scroll svg { width: 10px; height: 22px; opacity: 0.7; animation: rec-scroll-bob 2.4s cubic-bezier(0.16,1,0.3,1) infinite; }
@keyframes rec-scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 0.95; }
}
@media (max-width: 720px) { .rec-hero-scroll { display: none; } }

/* Ceremony caption stack: editorial 3-line block */
.rec-cer figcaption {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1.35;
}
.rec-cer .cer-y {
  font-family: var(--display); font-style: italic;
  font-weight: 420; font-size: 16px; letter-spacing: -0.005em;
  color: var(--gold-soft); text-transform: none;
}
.rec-cer .cer-e { color: rgba(242,235,220,0.6); font-weight: 500; }
.rec-cer .cer-p { color: var(--cream); font-weight: 600; letter-spacing: 0.16em; }

/* Ledger: paler tone for theme contrast with pinnacle + ceremonies */
.rec-ledger {
  background: linear-gradient(180deg, var(--ink-warm) 0%, #181410 100%);
}

/* Section labels: roman numeral + name + count */
.rec-section-label {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  margin: clamp(40px, 5vw, 64px) 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,146,76,0.28);
}
.rec-section-label:first-of-type { margin-top: 0; }
.rec-section-num {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--cream); text-transform: none;
  min-width: 32px;
}
.rec-section-name { flex: 1; color: rgba(242,235,220,0.9); }
.rec-section-count {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--gold-soft); letter-spacing: 0.22em;
}

/* Table position dash dot */
.rec-table .pos-dash {
  display: inline-block; width: 18px; text-align: center;
  color: rgba(216,179,108,0.45); font-family: var(--mono); font-weight: 400;
}

/* Pinnacle header: drop redundant h2, lift eyebrow */
.recognition-page .rec-pinnacle-head { margin-bottom: clamp(56px, 7vw, 88px); }
.recognition-page .rec-pinnacle-head .eyebrow {
  font-size: 11.5px; letter-spacing: 0.32em;
}

/* Pinnacle: subtle hairline between rows */
.rec-pinnacle-row + .rec-pinnacle-row {
  padding-top: clamp(56px, 7vw, 96px);
  margin-top: clamp(0px, 0vw, 0px);
  border-top: 1px solid rgba(184,146,76,0.12);
}

/* Pinnacle h3 italic accent */
.rec-pinnacle-body h3 {
  font-style: italic; font-weight: 380;
}

/* Footer: editorial mark + line */
.rec-foot { padding-top: clamp(80px, 10vw, 140px); }
.rec-foot-mark {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.rec-foot-mark > span {
  width: 56px; height: 1px;
  background: rgba(216,179,108,0.4);
}
.rec-foot-mark > i {
  font-family: var(--mono); font-style: normal;
  font-size: 11px; letter-spacing: 0.5em; font-weight: 600;
  color: var(--gold-soft);
  padding-left: 0.5em;
}
.rec-foot-line {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--cream);
  margin: 0 auto clamp(28px, 3vw, 40px);
  max-width: 24ch;
  letter-spacing: -0.005em;
}
.rec-foot-attribution {
  display: flex; flex-direction: column; gap: 6px;
}
.rec-foot-attribution span { display: block; }

/* Scroll-for-more cue — fix trailing letter-spacing drift before the line */
.hero-cinema-cue-light { letter-spacing: 0; gap: 12px; }
.hero-cinema-cue-light > span:first-child {
  letter-spacing: 0.26em;
  margin-right: -0.26em; /* cancel trailing space after last letter */
  display: inline-block;
}

/* ============ RECOGNITION REFINEMENTS v3 — ledger year-grouping ============ */
.rec-table tr.yr-repeat .yr span { opacity: 0.22; }
.rec-table tr.yr-repeat .yr {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.rec-table tr.yr-repeat td {
  border-top: 1px solid rgba(242,235,220,0.04);
  border-bottom-color: rgba(242,235,220,0.04);
}
/* Stronger emphasis on year first-occurrence */
.rec-table tr:not(.yr-repeat) .yr {
  font-weight: 500;
}

/* Footer Pages — current page chip */
.footer .reg a[aria-current="page"],
.footer a[aria-current="page"] {
  color: var(--gold-soft);
  position: relative;
}
.footer a[aria-current="page"]::before {
  content: '·';
  margin-right: 6px;
  color: var(--gold);
}

/* ============ PRICING PAGE ============ */

.pricing-page { background: var(--cream); color: var(--ink); }

/* §A Hero */
.pr-hero {
  padding: clamp(160px, 18vw, 240px) 0 clamp(96px, 12vw, 160px);
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.pr-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.pr-hero-eyebrow .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.pr-hero-title {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 auto clamp(20px, 2vw, 28px);
  max-width: 18ch;
  text-wrap: balance;
}
.pr-hero-title em { font-style: italic; font-weight: 340; color: var(--gold-deep); }
.pr-hero-sub {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(14,14,14,0.66);
  max-width: 48ch;
  margin: 0 auto clamp(36px, 4vw, 56px);
}
.pr-hero-rule {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  max-width: 360px; margin: 0 auto;
}
.pr-hero-rule > span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,76,0.5), transparent);
}
.pr-hero-rule > i {
  width: 7px; height: 7px; transform: rotate(45deg);
  background: var(--gold); opacity: 0.9;
}

/* §B Tier overview cards */
.pr-tiers {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream);
}
.pr-tiers .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pr-tier {
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.pr-tier:last-child { border-right: none; }
.pr-tier--prestige { background: linear-gradient(180deg, rgba(216,179,108,0.06), transparent 80%); }
.pr-tier-num {
  font-family: var(--display); font-style: italic;
  font-size: 24px; color: var(--gold); font-weight: 400;
}
.pr-tier-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(14,14,14,0.55); font-weight: 600;
}
.pr-tier-name {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(36px, 4.6vw, 56px); line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 4px 0 12px;
}
.pr-tier-rate {
  display: flex; align-items: baseline; gap: 14px;
  margin: 4px 0 20px;
  border-top: 1px solid rgba(14,14,14,0.1);
  border-bottom: 1px solid rgba(14,14,14,0.1);
  padding: 18px 0;
}
.pr-tier-rate .rate {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(48px, 6vw, 72px); line-height: 1; letter-spacing: -0.04em;
  color: var(--ink);
}
.pr-tier-rate .rate em {
  font-style: normal; font-weight: 320;
  font-size: 0.5em; color: var(--gold-deep); margin-left: 0.05em;
  vertical-align: super;
}
.pr-tier-rate .rate-of {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(14,14,14,0.5); font-weight: 600;
}
.pr-tier-summary {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  color: rgba(14,14,14,0.72);
  margin: 0;
  max-width: 38ch;
}

/* §C Comparison table */
.pr-table-section {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream-soft, #ECE3CF);
  border-top: 1px solid var(--rule);
}
.pr-table-head {
  text-align: center;
  max-width: 640px; margin: 0 auto clamp(48px, 6vw, 72px);
}
.pr-table-head .eyebrow {
  color: var(--gold-deep); justify-content: center;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; font-weight: 600;
}
.pr-table-head .eyebrow .dot { width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.pr-table-head h2 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
}
.pr-table-head p {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  color: rgba(14,14,14,0.66);
  margin: 0;
}
.pr-table-wrap {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.pr-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--display);
}
.pr-table thead th {
  padding: 24px 20px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  vertical-align: bottom;
}
.pr-th-feature {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(14,14,14,0.55); font-weight: 600;
  width: 44%;
}
.pr-th-tier {
  width: 28%;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(14,14,14,0.7); font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.pr-th-tier--prestige { background: rgba(216,179,108,0.08); color: var(--gold-deep); }
.pr-th-rate {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink); text-transform: none;
}
.pr-th-tier--prestige .pr-th-rate { color: var(--gold-deep); }
.pr-table tbody td, .pr-table tbody th {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(14,14,14,0.06);
  vertical-align: top;
}
.pr-group th {
  padding: 28px 20px 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  text-align: left;
  border-bottom: 1px solid rgba(184,146,76,0.28);
}
.pr-feat {
  font-family: var(--display); font-weight: 400;
  font-size: 15px; line-height: 1.45;
  color: var(--ink);
}
.pr-cell {
  text-align: center;
  font-family: var(--display); font-weight: 400;
}
.pr-cell--prestige { background: rgba(216,179,108,0.04); }
.pr-check {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--gold-deep); font-size: 18px; font-weight: 500;
}
.pr-check small {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(14,14,14,0.6);
  font-weight: 500;
}
.pr-dash {
  color: rgba(14,14,14,0.22); font-size: 22px; font-weight: 400;
  display: inline-block; line-height: 1;
}
.pr-table tbody tr:hover td { background: rgba(184,146,76,0.04); }
.pr-table tbody tr:hover td.pr-cell--prestige { background: rgba(216,179,108,0.10); }

/* §D Rationale */
.pr-rationale {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.pr-rationale .eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.pr-rationale .eyebrow .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.pr-rationale h2 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 16px 0 24px;
  max-width: 22ch;
}
.pr-rationale p {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
  color: rgba(14,14,14,0.78);
  max-width: 60ch;
  margin: 0 0 16px;
}
.pr-rationale p strong {
  font-weight: 500; color: var(--ink);
}

/* §E Terms */
.pr-terms {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-soft, #ECE3CF);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pr-terms .eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.pr-terms .eyebrow .dot { width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.pr-terms-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.pr-terms-list li {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.55;
  color: rgba(14,14,14,0.78);
  padding-left: 18px;
  border-left: 1px solid rgba(184,146,76,0.4);
}
.pr-terms-list li strong {
  font-weight: 500; color: var(--ink);
}

/* §F CTA */
.pr-cta {
  padding: clamp(120px, 14vw, 180px) 0;
  background: var(--ink-warm);
  color: var(--cream);
  text-align: center;
}
.pr-cta .display {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto clamp(20px, 2vw, 28px);
  max-width: 22ch; color: var(--cream);
}
.pr-cta .accent { font-style: italic; color: var(--gold-soft); font-weight: 340; }
.pr-cta p {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(15px, 1.5vw, 19px); line-height: 1.55;
  color: rgba(242,235,220,0.7);
  max-width: 52ch; margin: 0 auto clamp(40px, 5vw, 56px);
}
.pr-cta .ctas {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* Mobile */
@media (max-width: 760px) {
  .pr-tiers .container { grid-template-columns: 1fr; }
  .pr-tier { border-right: none; border-bottom: 1px solid var(--rule); }
  .pr-tier:last-child { border-bottom: none; }
  .pr-table thead { display: none; }
  .pr-table tbody tr { display: grid; grid-template-columns: 1fr; padding: 12px 0; }
  .pr-table .pr-feat { padding: 12px 16px 6px; font-size: 14.5px; font-weight: 500; border-bottom: none; }
  .pr-table .pr-cell { display: flex; justify-content: space-between; align-items: center; padding: 6px 16px; font-size: 14px; border-bottom: none; }
  .pr-table .pr-cell::before { content: 'Prestige 2.0%'; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(14,14,14,0.5); }
  .pr-table .pr-cell.pr-cell--prestige::before { content: 'Luxury 2.25%'; color: var(--gold-deep); }
  .pr-group th { padding: 22px 16px 8px; }
}

/* ============ PRICING v2 — first-time-buyer rewrite ============ */

/* §B Tier dollar examples */
.pr-tier-example {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(14,14,14,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.pr-tier-example .ex-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(14,14,14,0.45);
  font-weight: 600; margin-bottom: 6px;
}
.pr-tier-example .ex-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--display);
}
.pr-tier-example .ex-prop {
  font-size: 15px; color: rgba(14,14,14,0.68);
}
.pr-tier-example .ex-fee {
  font-style: italic; font-weight: 420;
  font-size: 18px; color: var(--gold-deep);
  letter-spacing: -0.01em;
}
.pr-tier--prestige .pr-tier-example .ex-fee { color: var(--gold-deep); font-weight: 460; }

/* §C "In both options" */
.pr-common {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.pr-common .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.pr-common .eyebrow .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.pr-common h2 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  max-width: 22ch;
}
.pr-common-lede {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55;
  color: rgba(14,14,14,0.66);
  max-width: 56ch;
  margin: 0 0 clamp(36px, 4vw, 52px);
}
.pr-common-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
  border-top: 1px solid var(--rule);
}
.pr-common-list li {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55;
  color: rgba(14,14,14,0.78);
  padding: 18px 0 0;
  border-bottom: 1px solid rgba(14,14,14,0.08);
  padding-bottom: 18px;
}
.pr-common-list li:last-child { border-bottom: none; }
.pr-common-list li strong {
  display: block; margin-bottom: 4px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(16px, 1.55vw, 19px);
  color: var(--ink);
}

/* §D Prestige extras grid */
.pr-prestige {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream-soft, #ECE3CF);
  border-top: 1px solid var(--rule);
}
.pr-prestige .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
}
.pr-prestige .eyebrow .dot { width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.pr-prestige h2 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  max-width: 22ch;
}
.pr-prestige-lede {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55;
  color: rgba(14,14,14,0.7);
  max-width: 60ch;
  margin: 0 0 clamp(48px, 6vw, 64px);
}
.pr-prestige-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184,146,76,0.3);
  border-left: 1px solid rgba(184,146,76,0.3);
}
.pr-extra {
  padding: clamp(28px, 3.4vw, 40px);
  border-right: 1px solid rgba(184,146,76,0.3);
  border-bottom: 1px solid rgba(184,146,76,0.3);
  background: var(--cream);
  display: flex; flex-direction: column; gap: 10px;
}
.pr-extra-num {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
}
.pr-extra h3 {
  font-family: var(--display); font-weight: 420;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 4px 0 6px;
  color: var(--ink);
}
.pr-extra p {
  font-family: var(--display); font-weight: 400;
  font-size: 15px; line-height: 1.55;
  color: rgba(14,14,14,0.7);
  margin: 0;
}
@media (max-width: 760px) {
  .pr-prestige-grid { grid-template-columns: 1fr; }
}

/* §E FAQ */
.pr-faq {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.pr-faq .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.pr-faq .eyebrow .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.pr-faq h2 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 clamp(36px, 4vw, 52px);
  max-width: 22ch;
}
.pr-faq-list {
  border-top: 1px solid var(--rule);
}
.pr-faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.pr-faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0;
  font-family: var(--display); font-weight: 440;
  font-size: clamp(17px, 1.6vw, 21px); line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  transition: color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pr-faq-item summary::-webkit-details-marker { display: none; }
.pr-faq-item summary::after {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%),
                    linear-gradient(0deg, var(--gold) 0%, var(--gold) 100%);
  background-size: 100% 1px, 1px 100%;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pr-faq-item[open] summary::after {
  transform: rotate(45deg);
  background-image: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-deep) 100%);
  background-size: 100% 1px;
}
.pr-faq-item summary:hover { color: var(--gold-deep); }
.pr-faq-item p {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6;
  color: rgba(14,14,14,0.72);
  padding: 0 0 24px;
  margin: 0;
  max-width: 64ch;
}

/* ============ PRICING v3 — value-driven rewrite ============ */

/* Tier card pitch line */
.pr-tier-pitch {
  font-family: var(--display); font-style: italic; font-weight: 380;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.3;
  color: var(--gold-deep);
  margin: 4px 0 8px;
  letter-spacing: -0.005em;
}
.pr-tier--prestige .pr-tier-pitch { color: var(--gold-deep); }

/* §B.5 At-a-glance comparison */
.pr-compare {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--cream-soft, #ECE3CF);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pr-compare .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
}
.pr-compare .eyebrow .dot { width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.pr-compare h2 {
  font-family: var(--display); font-weight: 380;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 16px 0 clamp(32px, 4vw, 48px);
  max-width: 22ch;
}
.pr-compare-wrap {
  background: var(--cream);
  border: 1px solid var(--rule);
}
.pr-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--display);
}
.pr-compare-table thead th {
  padding: 18px 20px 16px;
  text-align: left;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(14,14,14,0.6);
  border-bottom: 1px solid var(--rule);
  background: rgba(184,146,76,0.06);
}
.pr-compare-table th.ct-pre { color: var(--gold-deep); background: rgba(216,179,108,0.12); }
.pr-compare-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(14,14,14,0.06);
  vertical-align: top;
  font-size: 15px;
  line-height: 1.45;
}
.pr-compare-table tbody tr:last-child td { border-bottom: none; }
.pr-compare-table .ct-feat {
  font-weight: 500; color: var(--ink);
  width: 36%;
}
.pr-compare-table .ct-std { color: rgba(14,14,14,0.66); width: 30%; }
.pr-compare-table .ct-pre {
  color: var(--ink); font-weight: 460; width: 34%;
  background: rgba(216,179,108,0.05);
}
.pr-compare-table .ct-dash {
  color: rgba(14,14,14,0.22);
  font-size: 20px;
  display: inline-block; line-height: 1;
}
.pr-compare-note {
  margin: clamp(28px, 3vw, 40px) 0 0;
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(14.5px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(14,14,14,0.6);
  max-width: 62ch;
}

/* Prestige foot line */
.pr-prestige-foot {
  margin: clamp(40px, 5vw, 64px) 0 0;
  font-family: var(--display); font-weight: 380;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(14,14,14,0.65);
  max-width: 62ch;
  text-align: center;
  margin-left: auto; margin-right: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(184,146,76,0.28);
}
.pr-prestige-foot em { font-style: italic; color: var(--ink); font-weight: 400; }

/* Mobile comparison table */
@media (max-width: 640px) {
  .pr-compare-table thead { display: none; }
  .pr-compare-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 0 4px;
    border-bottom: 1px solid rgba(14,14,14,0.08);
  }
  .pr-compare-table tbody tr:last-child { border-bottom: none; }
  .pr-compare-table tbody td {
    border-bottom: none;
    padding: 6px 16px;
    font-size: 13.5px;
  }
  .pr-compare-table .ct-feat {
    grid-column: 1 / -1;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold-deep);
    padding-bottom: 6px;
  }
  .pr-compare-table .ct-std::before { content: 'Prestige · 2.0%'; display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(14,14,14,0.5); margin-bottom: 4px; }
  .pr-compare-table .ct-pre::before { content: 'Luxury · 2.50%'; display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
}

/* ============ PRICING v4 — DESIGN PASS (impeccable) ============ */

/* Reveal system — pricing page */
.pricing-page .reveal { opacity: 0; transform: translateY(20px); transition: opacity 900ms cubic-bezier(0.16,1,0.3,1), transform 900ms cubic-bezier(0.16,1,0.3,1); will-change: opacity, transform; }
.pricing-page .reveal.is-in { opacity: 1; transform: translateY(0); }
.pricing-page .reveal[data-reveal-words] { transition-delay: 80ms; }

/* §A Hero — architectural emblem + stamp */
.pr-hero { position: relative; overflow: hidden; }
.pr-hero-content { position: relative; z-index: 2; }
.pr-hero-emblem {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
.pr-hero-emblem svg {
  width: clamp(420px, 60vw, 720px);
  height: clamp(420px, 60vw, 720px);
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 0.6;
  fill: none;
  opacity: 0.55;
}
.pr-hero-emblem .pr-em-ring,
.pr-hero-emblem .pr-em-box,
.pr-hero-emblem .pr-em-roof,
.pr-hero-emblem .pr-em-axis,
.pr-hero-emblem .pr-em-ticks line {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: pr-em-draw 2800ms cubic-bezier(0.16,1,0.3,1) forwards;
}
.pr-hero-emblem .pr-em-box { animation-delay: 220ms; }
.pr-hero-emblem .pr-em-roof { animation-delay: 380ms; }
.pr-hero-emblem .pr-em-axis { animation-delay: 540ms; opacity: 0.5; }
.pr-hero-emblem .pr-em-ticks line { animation-delay: 700ms; }
.pr-hero-emblem .pr-em-diamond {
  fill: var(--gold);
  stroke: var(--gold);
  opacity: 0;
  animation: pr-em-fade 800ms cubic-bezier(0.16,1,0.3,1) 1800ms forwards;
}
@keyframes pr-em-draw { to { stroke-dashoffset: 0; } }
@keyframes pr-em-fade { to { opacity: 0.85; } }

/* Slow ambient rotation on the whole emblem after draw */
.pr-hero-emblem {
  animation: pr-em-rotate 120s linear infinite;
}
@keyframes pr-em-rotate { to { transform: rotate(360deg); } }

.pr-hero-stamp {
  margin-top: clamp(28px, 3vw, 40px);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(14,14,14,0.45);
  font-weight: 600;
}
.pr-hero-stamp .stamp-num { color: var(--gold); }
.pr-hero-stamp .stamp-mid { color: var(--gold); opacity: 0.6; }

/* §B Tier cards — corner accents, badge, hover */
.pr-tier {
  position: relative;
  transition: background 600ms cubic-bezier(0.16,1,0.3,1);
}
.pr-tier-corner {
  position: absolute;
  width: 16px; height: 16px;
  pointer-events: none;
}
.pr-tier-corner--tl {
  top: clamp(14px, 1.5vw, 22px); left: clamp(14px, 1.5vw, 22px);
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.pr-tier-corner--br {
  bottom: clamp(14px, 1.5vw, 22px); right: clamp(14px, 1.5vw, 22px);
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.pr-tier--prestige .pr-tier-corner--tl,
.pr-tier--prestige .pr-tier-corner--br {
  border-color: var(--gold-deep);
  width: 22px; height: 22px;
}
.pr-tier-badge {
  position: absolute;
  top: clamp(20px, 2vw, 28px); right: clamp(20px, 2vw, 28px);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(216,179,108,0.08);
}
.pr-tier-orn {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 0 10px;
  max-width: 200px;
}
.pr-tier-orn > span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,76,0.45), transparent);
}
.pr-tier-orn > i {
  font-style: normal;
  font-size: 8px; color: var(--gold);
  opacity: 0.7;
}

/* Hover lift */
.pr-tier:hover { background: rgba(184,146,76,0.04); }
.pr-tier--prestige:hover { background: linear-gradient(180deg, rgba(216,179,108,0.10), rgba(216,179,108,0.02) 80%); }

/* §C Common list — large ordinals + hairlines */
.pr-common-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--rule);
}
.pr-common-list li {
  display: grid;
  grid-template-columns: clamp(48px, 6vw, 80px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.pr-cl-num {
  font-family: var(--display); font-style: italic; font-weight: 380;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.pr-cl-body {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55;
  color: rgba(14,14,14,0.78);
}
.pr-cl-body strong {
  display: block; margin-bottom: 6px;
  font-family: var(--display); font-weight: 460;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.25; letter-spacing: -0.008em;
  color: var(--ink);
}

/* §D Prestige extras — SVG icons + hover */
.pr-extra { position: relative; transition: background 500ms cubic-bezier(0.16,1,0.3,1); }
.pr-extra-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  color: var(--gold-deep);
  margin: 4px 0 14px;
  border: 1px solid rgba(184,146,76,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: transform 500ms cubic-bezier(0.16,1,0.3,1), border-color 500ms cubic-bezier(0.16,1,0.3,1), background 500ms cubic-bezier(0.16,1,0.3,1);
}
.pr-extra-icon svg { width: 22px; height: 22px; }
.pr-extra:hover {
  background: linear-gradient(180deg, rgba(216,179,108,0.10), rgba(216,179,108,0.02) 90%);
}
.pr-extra:hover .pr-extra-icon {
  transform: rotate(-8deg) scale(1.08);
  border-color: var(--gold-deep);
  background: rgba(216,179,108,0.15);
}

/* §F CTA orb */
.pr-cta { position: relative; overflow: hidden; }
.pr-cta-orb {
  position: absolute;
  width: clamp(500px, 70vw, 900px);
  height: clamp(500px, 70vw, 900px);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,179,108,0.18) 0%, rgba(216,179,108,0.06) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  animation: pr-orb-pulse 8s cubic-bezier(0.4,0,0.6,1) infinite;
}
.pr-cta .container-narrow { position: relative; z-index: 1; }
@keyframes pr-orb-pulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

/* Compare table row hover */
.pr-compare-table tbody tr { transition: background 400ms cubic-bezier(0.16,1,0.3,1); }
.pr-compare-table tbody tr:hover { background: rgba(216,179,108,0.06); }
.pr-compare-table tbody tr:hover .ct-pre { background: rgba(216,179,108,0.12); }

/* Gold accent line on Prestige column */
.pr-compare-table thead th.ct-pre,
.pr-compare-table tbody td.ct-pre {
  border-left: 2px solid var(--gold);
}

/* Reduced motion override */
@media (prefers-reduced-motion: reduce) {
  .pricing-page .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pr-hero-emblem { animation: none !important; }
  .pr-hero-emblem .pr-em-ring,
  .pr-hero-emblem .pr-em-box,
  .pr-hero-emblem .pr-em-roof,
  .pr-hero-emblem .pr-em-axis,
  .pr-hero-emblem .pr-em-ticks line { animation: none !important; stroke-dashoffset: 0 !important; }
  .pr-hero-emblem .pr-em-diamond { animation: none !important; opacity: 0.85 !important; }
  .pr-cta-orb { animation: none !important; }
}

/* ============ PRICING v5 — CTA with Adrian portrait ============ */
.pr-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.pr-cta-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  justify-self: end;
  width: 100%;
  border: 1px solid rgba(216,179,108,0.32);
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55), 0 1px 0 rgba(216,179,108,0.18) inset;
}
.pr-cta-portrait::before,
.pr-cta-portrait::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold-soft);
  z-index: 3;
  pointer-events: none;
}
.pr-cta-portrait::before {
  top: 14px; left: 14px;
  border-top: 1px solid; border-left: 1px solid;
}
.pr-cta-portrait::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid; border-right: 1px solid;
}
.pr-cta-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.78) contrast(1.04) brightness(0.96) sepia(0.06);
  transition: filter 800ms cubic-bezier(0.16,1,0.3,1), transform 1200ms cubic-bezier(0.16,1,0.3,1);
}
.pr-cta-portrait:hover img {
  filter: saturate(0.95) contrast(1.04) brightness(1) sepia(0);
  transform: scale(1.02);
}
.pr-cta-portrait figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  background: linear-gradient(0deg, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.6) 40%, transparent 100%);
  color: var(--cream);
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.pr-cta-sig {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  color: var(--cream);
}
.pr-cta-reg {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 500;
}

/* Right column */
.pr-cta-grid .pr-cta-body {
  text-align: left;
}
.pr-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 600;
  margin-bottom: clamp(18px, 2vw, 24px);
}
.pr-cta-eyebrow .dot { width: 5px; height: 5px; background: var(--gold-soft); border-radius: 50%; }
.pr-cta-grid .display { text-align: left; margin-left: 0; max-width: none; }
.pr-cta-grid p { text-align: left; margin-left: 0; max-width: 48ch; }
.pr-cta-grid .ctas { justify-content: flex-start; }

/* Disable the centred container-narrow default for this section */
.pr-cta.pr-cta { text-align: left; }
.pr-cta .pr-cta-grid > .pr-cta-body > .display,
.pr-cta .pr-cta-grid > .pr-cta-body > p { text-align: left; }

/* Mobile */
@media (max-width: 860px) {
  .pr-cta-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pr-cta-portrait { max-width: 340px; justify-self: center; }
  .pr-cta-grid .display { text-align: center; margin: 0 auto; max-width: 22ch; }
  .pr-cta-grid p { text-align: center; margin: 0 auto; }
  .pr-cta-grid .ctas { justify-content: center; }
  .pr-cta-eyebrow { justify-self: center; margin-left: auto; margin-right: auto; }
}

/* ============ PRICING v6 — Higgsfield imagery ============ */

/* Hero atmospheric photo behind emblem */
.pr-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.pr-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  display: block;
  /* Lift it gently into the cream palette and tone down detail */
  filter: saturate(0.55) brightness(1.08) contrast(0.92) blur(0.4px);
  opacity: 0.42;
  /* Mask the bottom and edges so it fades into cream */
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 30%, transparent 78%),
    linear-gradient(0deg, transparent 0%, rgba(0,0,0,1) 30%);
  mask-image:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 30%, transparent 78%),
    linear-gradient(0deg, transparent 0%, rgba(0,0,0,1) 30%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
/* Ensure emblem (z=1) sits between photo (z=0) and content (z=2) */
.pr-hero-emblem { z-index: 1; }

/* §C 2-col with image aside */
.pr-common-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.pr-common-aside {
  position: sticky;
  top: clamp(96px, 12vh, 140px);
}
.pr-common-figure {
  margin: 0;
  position: relative;
  border: 1px solid rgba(184,146,76,0.32);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.4);
}
.pr-common-figure::before,
.pr-common-figure::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold-soft);
  z-index: 2;
  pointer-events: none;
}
.pr-common-figure::before {
  top: 14px; left: 14px;
  border-top: 1px solid; border-left: 1px solid;
}
.pr-common-figure::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid; border-right: 1px solid;
}
.pr-common-figure img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
  filter: saturate(0.78) brightness(0.96) contrast(1.04) sepia(0.06);
  transition: filter 800ms cubic-bezier(0.16,1,0.3,1), transform 1200ms cubic-bezier(0.16,1,0.3,1);
}
.pr-common-figure:hover img {
  filter: saturate(0.95) brightness(1) contrast(1.04) sepia(0);
  transform: scale(1.015);
}
.pr-common-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.4vw, 28px) clamp(18px, 2vw, 24px);
  background: linear-gradient(0deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.55) 40%, transparent 100%);
  color: var(--cream);
  display: flex; flex-direction: column; gap: 4px;
}
.pr-common-figure figcaption > span:first-child {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gold-soft); letter-spacing: -0.005em;
}
.pr-common-figure figcaption i {
  font-style: normal; color: rgba(216,179,108,0.5); font-size: 10px;
}
.pr-common-figure figcaption > span:last-child {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(242,235,220,0.78); font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .pr-common-grid { grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); }
  .pr-common-aside { position: static; max-width: 480px; margin: 0 auto; }
  .pr-common-figure img { aspect-ratio: 4/5; }
}

/* §D Prestige atmospheric background */
.pr-prestige {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pr-prestige-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pr-prestige-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  display: block;
  /* Treat heavily so it reads as ambient, not foreground */
  filter: saturate(0.4) contrast(1.05) brightness(0.96);
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 70%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 70%, transparent 100%);
}
/* Warm cream overlay to keep palette unified */
.pr-prestige::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(236,227,207,0.72) 0%, rgba(236,227,207,0.88) 50%, rgba(236,227,207,0.96) 100%);
}
.pr-prestige > .container-narrow { position: relative; z-index: 2; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pr-common-figure img { transition: none !important; }
  .pr-common-figure:hover img { transform: none !important; }
}

/* Pricing CTA: secondary button readable on ink-warm */
.pr-cta .btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,235,220,0.45);
}
.pr-cta .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Nav — current page indicator */
.nav-links a[aria-current="page"] {
  color: var(--gold);
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
/* Mobile: nav links wrap or scroll */
@media (max-width: 820px) {
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links a { white-space: nowrap; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* Pinnacle 03 uses a cropped panoramic image — override 4:5 default */
.rec-pinnacle-row:nth-of-type(3) .rec-pinnacle-img img,
.rec-pinnacle-row:last-child .rec-pinnacle-img img {
  aspect-ratio: 16 / 9;
  object-position: center 35%;
}

/* Bench card watermark — placeholder for real logos (swap when vendor sign-off lands) */
.bench-card { position: relative; overflow: hidden; }
.bench-mark {
  position: absolute;
  top: clamp(14px, 1.5vw, 22px); right: clamp(18px, 2vw, 28px);
  font-family: var(--display);
  font-weight: 380; font-style: italic;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.85; letter-spacing: -0.04em;
  color: rgba(184,146,76,0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bench-mark--banks {
  font-family: var(--mono); font-style: normal;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-align: right;
  color: rgba(184,146,76,0.18);
  top: clamp(20px, 2.4vw, 32px);
}
.bench-mark--banks > span { display: block; }
.bench-card > .bench-num,
.bench-card > .bench-cat,
.bench-card > .bench-name,
.bench-card > p { position: relative; z-index: 1; }

/* ============ BENCH SECTION — warmth + welcoming ambience (2026-05-14) ============ */
.bench{ position: relative; overflow: hidden; isolation: isolate; }
.bench::before{
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/photos/bench-backdrop.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) contrast(0.92) brightness(1.05);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.bench::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 22%, rgba(196,160,90,0.10), transparent 70%),
    radial-gradient(ellipse 55% 45% at 82% 78%, rgba(196,160,90,0.08), transparent 70%),
    linear-gradient(180deg, rgba(245,239,228,0.55) 0%, rgba(245,239,228,0) 22%, rgba(245,239,228,0) 78%, rgba(245,239,228,0.65) 100%);
  z-index: 0;
  pointer-events: none;
}
.bench > .container{ position: relative; z-index: 1; }
.bench-grid{
  background: rgba(253, 250, 244, 0.55);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(196,160,90,0.18);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 48px -28px rgba(70,50,20,0.18);
}
.bench-card{ transition: background-color 320ms ease, transform 320ms ease; }
.bench-card:hover{ background-color: rgba(196,160,90,0.05); }
.bench-card:hover .bench-name{ color: var(--gold); transition: color 240ms ease; }
@media (max-width: 720px){
  .bench::before{ opacity: 0.06; }
}

/* ============ PRICING — categorised feature matrix (2026-05-14) ============ */
.pr-compare-intro{
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  color: rgba(14,14,14,0.62);
  max-width: 56ch;
  margin: -8px 0 clamp(28px, 3vw, 40px);
}

/* Matrix-flavour tweaks (in addition to .pr-compare-table) */
.pr-compare-table--matrix tbody td{ vertical-align: middle; padding: 18px 22px; }
.pr-compare-table--matrix .ct-feat{ width: 44%; }
.pr-compare-table--matrix .ct-std,
.pr-compare-table--matrix .ct-pre{ width: 28%; text-align: center; }
.pr-compare-table--matrix .ct-feat strong{
  display: block;
  font-family: var(--display); font-weight: 460;
  font-size: clamp(15px, 1.35vw, 17.5px);
  color: var(--ink);
  letter-spacing: -0.003em;
  line-height: 1.25;
}
.pr-compare-table--matrix .ct-feat-sub{
  display: block;
  margin-top: 3px;
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: 13.5px; line-height: 1.4;
  color: rgba(14,14,14,0.52);
}

/* Category band rows */
.pr-compare-table--matrix tr.ct-cat td{
  background: linear-gradient(180deg, rgba(184,146,76,0.10), rgba(184,146,76,0.04));
  border-top: 1px solid rgba(184,146,76,0.22);
  border-bottom: 1px solid rgba(184,146,76,0.22);
  padding: 16px 22px;
}
.pr-compare-table--matrix tr.ct-cat .ct-cat-mark{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--gold-deep); font-weight: 600; margin-right: 12px;
}
.pr-compare-table--matrix tr.ct-cat .ct-cat-name{
  font-family: var(--display); font-weight: 500;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-right: 14px;
}
.pr-compare-table--matrix tr.ct-cat .ct-cat-sub{
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: 14px;
  color: rgba(14,14,14,0.55);
}

/* Value chips, dots, and "not included" mark */
.pr-compare-table--matrix .ct-val{
  display: inline-block;
  font-family: var(--display); font-weight: 440;
  font-size: 15px;
  color: var(--ink);
}
.pr-compare-table--matrix .ct-val--scope{ color: var(--gold-deep); font-weight: 500; }
.pr-compare-table--matrix .ct-pre-note{
  display: block;
  margin-top: 3px;
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: 12.5px;
  color: rgba(14,14,14,0.5);
}
.pr-compare-table--matrix .ct-dot{
  display: inline-block;
  width: auto; height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gold);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 520;
  line-height: 1;
}
.pr-compare-table--matrix .ct-dot::before{
  content: '\2713'; /* tick mark ✓ */
}
.pr-compare-table--matrix .ct-pre .ct-dot{
  color: var(--gold-deep);
}
.pr-compare-table--matrix .ct-x{
  display: inline-block;
  font-family: var(--display);
  font-size: 22px; line-height: 1;
  color: rgba(14,14,14,0.18);
}

/* ========================================================
   PRICING TESTIMONIAL — pinned proof at the rate decision
   ======================================================== */
.pr-testimonial{
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, rgba(184,146,76,0.04), transparent);
}
.pr-testimonial .eyebrow{ margin-bottom: 28px; }
.pr-testimonial-card{
  position: relative;
  margin: 0;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 60px) clamp(36px, 4vw, 52px);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(184,146,76,0.22);
  border-left: 2px solid var(--gold);
}
.pr-testimonial-mark{
  position: absolute;
  top: 8px;
  left: clamp(16px, 2vw, 28px);
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.32;
  user-select: none;
  pointer-events: none;
}
.pr-testimonial-quote{
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.pr-testimonial-quote em{
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 460;
}
.pr-testimonial-attr{
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(14,14,14,0.12);
  display: flex; flex-direction: column; gap: 6px;
}
.pr-testimonial-name{
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.pr-testimonial-role{
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 700px){
  .pr-testimonial-card{ padding: 32px 24px 28px; }
  .pr-testimonial-quote{ font-size: 18px; }
}

/* Luxury-difference callout */
.pr-diff{
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(28px, 3.5vw, 42px) clamp(28px, 3.5vw, 44px);
  background: linear-gradient(180deg, rgba(184,146,76,0.07), rgba(184,146,76,0.02));
  border: 1px solid rgba(184,146,76,0.28);
  position: relative;
}
.pr-diff::before{
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  display: none; /* skill ban — keep off, but kept for future toggling */
}
.pr-diff-head{ margin-bottom: clamp(22px, 2.4vw, 30px); }
.pr-diff-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
}
.pr-diff-eyebrow .dot{ width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.pr-diff-title{
  margin: 12px 0 0;
  font-family: var(--display); font-weight: 380;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 32ch;
}
.pr-diff-list{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.2vw, 28px) clamp(28px, 3vw, 44px);
}
.pr-diff-list li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.pr-diff-num{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold-deep); font-weight: 600;
  padding-top: 4px;
}
.pr-diff-list li div{
  font-family: var(--display); font-size: 15.5px; line-height: 1.5;
  color: rgba(14,14,14,0.78);
}
.pr-diff-list li strong{
  display: block;
  font-weight: 500; color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.003em;
}

/* Mobile — keep the matrix as a real 3-column table: offering | Prestige | Luxury */
@media (max-width: 720px){
  .pr-compare-table--matrix{ display: table; width: 100%; table-layout: fixed; }
  .pr-compare-table--matrix thead{ display: table-header-group; }
  .pr-compare-table--matrix thead th{ font-size: 10px; padding: 9px 6px; line-height: 1.25; }
  .pr-compare-table--matrix thead th.ct-feat{ text-align: left; }
  .pr-compare-table--matrix tbody tr{ display: table-row; }
  .pr-compare-table--matrix tbody td{
    display: table-cell; vertical-align: middle;
    padding: 11px 7px; font-size: 12px;
    border-bottom: 1px solid rgba(14,14,14,0.08);
  }
  .pr-compare-table--matrix .ct-feat{
    width: 50%; grid-column: auto;
    font-family: inherit; font-size: 12px; letter-spacing: -0.003em;
    text-transform: none; color: var(--ink); padding: 11px 7px;
  }
  .pr-compare-table--matrix .ct-feat strong{ font-size: 12.5px; }
  .pr-compare-table--matrix .ct-feat-sub{ display: none; }
  .pr-compare-table--matrix .ct-std,
  .pr-compare-table--matrix .ct-pre{ width: 25%; text-align: center; }
  .pr-compare-table--matrix .ct-std::before,
  .pr-compare-table--matrix .ct-pre::before{ content: none; }
  .pr-compare-table--matrix .ct-pre-note{ display: none; }
  .pr-compare-table--matrix tr.ct-cat td{ display: table-cell; padding: 13px 7px; }
  .pr-compare-table--matrix tr.ct-cat .ct-cat-name{ display: inline; margin-left: 4px; }
  .pr-compare-table--matrix tr.ct-cat .ct-cat-sub{ display: none; }
  .pr-diff-list{ grid-template-columns: 1fr; }
}

/* ============ MOBILE NAV — hamburger drawer (2026-05-14) ============ */
.nav-burger{
  display: none;
  position: relative; z-index: 95;
  width: 38px; height: 38px;
  border: 1px solid rgba(14,14,14,0.18);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 240ms ease, background 240ms ease;
}
.nav-burger span{
  display: block;
  width: 16px; height: 1px;
  background: var(--ink);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1), opacity 240ms;
}
.nav.is-over-dark .nav-burger{ border-color: rgba(242,235,220,0.32); }
.nav.is-over-dark .nav-burger span{ background: var(--cream); }
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 800px){
  .nav-burger{ display: inline-flex; }
  .nav-links{
    display: flex !important;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-family: var(--display);
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 380;
    letter-spacing: -0.005em;
    transform: translateY(-101%);
    transition: transform 520ms cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 92;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  .nav-links.is-open{ transform: translateY(0); }
  .nav-links a{
    color: var(--ink);
    padding: 4px 8px;
    position: relative;
  }
  /* Drawer links must stay ink-coloured even when the nav is in
     over-dark/over-light state (whose .nav.is-over-* .nav-links a rules
     would otherwise win on specificity and bleach the text to cream). */
  .nav .nav-links.is-open a,
  .nav.is-over-dark .nav-links.is-open a,
  .nav.is-over-light .nav-links.is-open a{ color: var(--ink); }
  .nav .nav-links.is-open a[aria-current="page"],
  .nav.is-over-dark .nav-links.is-open a[aria-current="page"],
  .nav.is-over-light .nav-links.is-open a[aria-current="page"]{ color: var(--gold-deep); }
  .nav-links a[aria-current="page"]{ color: var(--gold-deep); }
  .nav-links a[aria-current="page"]::before{
    content: "";
    position: absolute; left: -22px; top: 50%;
    width: 12px; height: 1px;
    background: var(--gold-deep);
    transform: translateY(-50%);
  }
  body.nav-locked{ overflow: hidden; }
  /* When the drawer is open, force .nav to have no transform.
     Otherwise .nav.is-hidden (or a transition mid-flight) gives .nav a
     non-none transform, which makes it the containing block for the
     fixed-position drawer — clipping the drawer to the nav's small
     horizontal box and producing the "tiny strip" empty-drawer bug
     when the user opens the burger after scrolling to an anchor. */
  body.nav-locked .nav,
  body.nav-locked .nav.is-hidden{
    transform: none !important;
    transition: none !important;
  }
}

/* Pricing matrix mobile — suppress per-cell labels on category-header rows */
.pr-compare-table tbody tr.ct-cat td::before{ content: none !important; }

/* ============ ABOUT PAGE — structural lift (2026-05-14) ============ */

/* Hero — emblem, grid, photo, stamp */
.about-page .about-hero{
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 140px) 0 clamp(72px, 9vw, 110px);
  border-bottom: 1px solid var(--rule);
}
.about-page .about-hero-emblem{
  position: absolute;
  top: 50%; right: -80px;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.about-page .about-hero-emblem svg{ width: 100%; height: 100%; }
.about-page .ah-em-ring{ fill: none; stroke: var(--gold); stroke-width: 0.5; }
.about-page .ah-em-box{ fill: none; stroke: var(--gold); stroke-width: 0.5; }
.about-page .ah-em-axis{ stroke: var(--gold-deep); stroke-width: 0.4; }
.about-page .ah-em-diamond{ fill: var(--gold); }
.about-page .about-hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.about-page .about-hero-copy .eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
}
.about-page .about-hero-copy .eyebrow .dot{ width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.about-page .about-hero-copy .eyebrow .num{ color: var(--gold); }
.about-page .about-hero h1{
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  font-weight: 380;
  margin: 20px 0 24px;
  max-width: 14ch;
}
.about-page .about-hero h1 em{
  font-style: italic; color: var(--gold-deep); font-weight: 360;
}
.about-page .about-hero-sub{
  font-family: var(--display); font-weight: 380;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(14,14,14,0.72);
  max-width: 50ch;
  margin: 0 0 32px;
}
.about-page .about-hero-rule{
  display: flex; align-items: center; gap: 14px;
  margin: 8px 0 22px;
  max-width: 280px;
}
.about-page .about-hero-rule span{
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,76,0.45), transparent);
}
.about-page .about-hero-rule i{
  font-style: normal;
  color: var(--gold);
  font-size: 10px;
}
.about-page .about-hero-rule i::before{ content: "◆"; }
.about-page .about-hero-stamp{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(14,14,14,0.55);
}
.about-page .about-hero-stamp .stamp-num{ color: var(--gold-deep); font-weight: 600; }
.about-page .about-hero-stamp .stamp-mid{ color: rgba(184,146,76,0.5); }

.about-page .about-hero-photo{
  margin: 0;
  position: relative;
}
.about-page .about-hero-photo img{
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: var(--photo-filter);
  border: 1px solid rgba(184,146,76,0.18);
}
.about-page .about-hero-photo figcaption{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-page .about-hero-photo .ahp-name{
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 17px;
  color: var(--ink);
}
.about-page .about-hero-photo .ahp-role{
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(14,14,14,0.55);
}

/* From Adrian — body */
.about-page .about-content{ padding: clamp(80px, 10vw, 120px) 0; background: var(--cream-soft, #F7F1E2); }
.about-page .about-content .eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  margin-bottom: 28px;
}
.about-page .about-content .eyebrow .dot{ width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.about-page .about-content .eyebrow .num{ color: var(--gold); }

/* By the numbers strip */
.about-page .about-numbers{ padding: clamp(80px, 10vw, 120px) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.about-page .about-numbers .eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.about-page .about-numbers .eyebrow .dot{ width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }
.about-page .about-numbers .eyebrow .num{ color: var(--gold); }
.about-page .about-numbers-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.about-page .an-stat{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,146,76,0.3);
}
.about-page .an-stat .an-num{
  font-family: var(--display); font-weight: 380;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.about-page .an-stat .an-unit{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  margin-top: -6px;
}
.about-page .an-stat .an-label{
  font-family: var(--display); font-weight: 380;
  font-size: 15.5px; line-height: 1.5;
  color: rgba(14,14,14,0.7);
  max-width: 32ch;
  margin: 8px 0 0;
}

/* Vision — softened */
.about-page .vision{ padding: clamp(80px, 10vw, 120px) 0; }
.about-page .vision .eyebrow .num{ color: var(--gold); }
.about-page .vision-verse{
  margin-top: clamp(28px, 3vw, 40px);
  text-align: center;
}
.about-page .vision-verse blockquote{
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 auto;
  max-width: 36ch;
}
.about-page .vision-verse figcaption{
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(14,14,14,0.5);
}
.about-page .vision-verse .ref{ color: var(--gold-deep); font-weight: 600; }
.about-page .vision-verse .src{ font-style: italic; text-transform: none; letter-spacing: 0.04em; }

/* Footer subheading inline-style cleanup utility class */
.footer-meta-sub{
  color: rgba(242,235,220,0.5);
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-studio-blurb{
  font-size: 15px;
  color: rgba(242,235,220,0.85);
  line-height: 1.5;
}

/* About — mobile */
@media (max-width: 800px){
  .about-page .about-hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-page .about-hero-photo{ max-width: 280px; }
  .about-page .about-hero-emblem{ right: -180px; opacity: 0.10; }
  .about-page .about-numbers-grid{ grid-template-columns: 1fr; gap: 32px; }
  .about-page .an-stat{ padding-top: 18px; }
}

/* ============ ABOUT — visual rhythm enhancement (2026-05-14) ============ */

/* §02 From Adrian — faint alpine atmosphere */
.about-page .about-content{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-page .about-content::before{
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/hero-frames-old-mountain/frame-001.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) contrast(0.94) brightness(1.06);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.about-page .about-content::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--cream-soft, #F7F1E2) 0%, rgba(247,241,226,0.0) 18%, rgba(247,241,226,0.0) 82%, var(--cream-soft, #F7F1E2) 100%);
  z-index: 0;
  pointer-events: none;
}
.about-page .about-content > .container-narrow{ position: relative; z-index: 1; }

/* §04 Vision — dramatic mountain hero with cross + verse */
.about-page .vision{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(120px, 16vw, 200px) 0;
}
.about-page .vision::before{
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/photos/vision-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(0.18) contrast(0.95) saturate(0.92);
  z-index: 0;
  pointer-events: none;
}
.about-page .vision::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,8,0.42) 0%, rgba(20,16,8,0.30) 35%, rgba(20,16,8,0.58) 100%),
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(20,16,8,0.0), rgba(20,16,8,0.45) 80%);
  z-index: 0;
  pointer-events: none;
}
.about-page .vision > .container-narrow{ position: relative; z-index: 1; }

.about-page .vision .eyebrow{
  color: var(--gold-soft);
}
.about-page .vision .eyebrow .dot{ background: var(--gold-soft); }
.about-page .vision .eyebrow .num{ color: var(--gold-pale); }

.about-page .vision h2{
  color: var(--cream);
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 20px 0 32px;
  max-width: 22ch;
  text-shadow: 0 1px 24px rgba(0,0,0,0.35);
}
.about-page .vision h2 em{
  color: var(--gold-soft);
  font-style: italic;
}
.about-page .vision p{
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: rgba(242,235,220,0.88);
  max-width: 56ch;
  margin: 0 0 22px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.35);
}
.about-page .vision .vision-divider{
  margin: clamp(36px, 4vw, 56px) 0 clamp(32px, 4vw, 48px);
  display: flex; align-items: center; gap: 16px;
  max-width: 380px;
}
.about-page .vision .vision-divider span{
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,179,108,0.55), transparent);
}
.about-page .vision .vision-divider i{
  font-style: normal;
  color: var(--gold-soft);
  font-size: 10px;
}
.about-page .vision .vision-divider i::before{ content: "◆"; }

.about-page .vision-verse{
  margin: 0;
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 3.5vw, 44px);
  background: rgba(20, 16, 8, 0.42);
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  border: 1px solid rgba(216,179,108,0.22);
  border-radius: 2px;
  max-width: 640px;
  text-align: center;
}
.about-page .vision-verse blockquote{
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.32;
  margin: 0;
  max-width: 36ch;
  text-shadow: 0 1px 22px rgba(0,0,0,0.42);
}
.about-page .vision-verse figcaption{
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,235,220,0.62);
}
.about-page .vision-verse .ref{ color: var(--gold-soft); font-weight: 600; }
.about-page .vision-verse .src{
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(242,235,220,0.5);
}

/* §05 Invitation — slight cream-deep band to differentiate from §04 mountain */
.about-page .invitation{
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep, #EBE3D1) 100%);
  position: relative;
}

/* Vision mobile — give the backdrop room to breathe */
@media (max-width: 720px){
  .about-page .vision{ padding: clamp(80px, 14vw, 120px) 0; }
  .about-page .vision::before{ background-position: center 20%; }
  .about-page .vision-verse{ padding: 24px 22px; }
  .about-page .vision-verse blockquote{ font-size: clamp(19px, 5vw, 24px); }
}

/* ============ PRICING — visual rhythm enhancement (2026-05-14) ============ */

/* §C "What's in both" — subtle alpine atmosphere */
.pr-common{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pr-common::before{
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/hero-frames-old-mountain/frame-001.webp');
  background-size: cover;
  background-position: center 60%;
  filter: grayscale(0.4) contrast(0.92) brightness(1.05);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.pr-common::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(242,235,220,0.0) 14%, rgba(242,235,220,0.0) 86%, var(--cream) 100%);
  z-index: 0;
  pointer-events: none;
}
.pr-common > .container,
.pr-common > .pr-common-grid{ position: relative; z-index: 1; }

/* §E FAQ — soft warmth + a thin gold divider rule */
.pr-faq{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pr-faq::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(196,160,90,0.10), transparent 70%),
    radial-gradient(ellipse 60% 50% at 88% 82%, rgba(196,160,90,0.08), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.pr-faq > .container,
.pr-faq > .container-narrow{ position: relative; z-index: 1; }


/* ============ METHOD CARDS — bounded height, slight expand on hover (2026-05-14) ============ */
.method-card{
  height: 340px;
  max-height: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: height 520ms cubic-bezier(0.16, 1, 0.3, 1),
              max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
              background 500ms var(--ease-out);
}
.method-card:hover{
  height: 500px;
  max-height: 500px;
  background: var(--ink-soft);
}
.method-card p{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 0;
  position: relative;
}
.method-card:hover p{
  opacity: 1;
  transform: translateY(0);
}
/* Soft fade at bottom in case text overflows the bounded card */
.method-card::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28px;
  background: linear-gradient(180deg, rgba(31,26,18,0) 0%, var(--ink-warm) 92%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease, background 320ms ease;
  z-index: 1;
}
.method-card:hover::after{
  opacity: 1;
  background: linear-gradient(180deg, rgba(42,36,26,0) 0%, var(--ink-soft) 92%);
}

/* Touch — show all content with no bounded height */
@media (hover: none){
  .method-card{ height: auto; max-height: none; overflow: visible; }
  .method-card p{ opacity: 1; transform: none; }
  .method-card::after{ display: none; }
}
@media (max-width: 800px){
  .method-card{ height: auto; max-height: none; overflow: visible; padding: 40px 28px; }
  .method-card p{ opacity: 1; transform: none; }
  .method-card::after{ display: none; }
}

/* ============ METHOD ACCORDION — editorial luxury, v2 (2026-05-14) ============ */
/* Override the old 2x2 grid + method-card system */
.method-grid{ display: none !important; }

/* Invert Method section to cream — break dark hero → dark method → dark testimonials */
.method.section-stack{ background: var(--cream); color: var(--ink-warm); }
.method .eyebrow{ color: var(--gold-deep); }
.method .eyebrow .dot{ background: var(--gold-deep); }
.method .eyebrow .num{ color: var(--gold); }
.method h2{ color: var(--ink-warm); }
.method h2 em{ color: var(--gold-deep); font-style: italic; }
.method .index{ color: rgba(31,26,18,0.55); }

.method-accordion{
  border-top: 1px solid rgba(216,179,108,0.32);
  border-bottom: 1px solid rgba(216,179,108,0.32);
  background: transparent;
}

.method-row{
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(216,179,108,0.14);
  transition: background 600ms cubic-bezier(0.22, 1, 0.36, 1),
              border-top-color 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.method-row:first-child{ border-top: none; }
.method-row.is-open{
  background: linear-gradient(180deg, rgba(184,146,76,0.05) 0%, rgba(184,146,76,0.0) 70%);
  border-top-color: rgba(216,179,108,0.45);
}
.method-row.is-open + .method-row{ border-top-color: rgba(216,179,108,0.45); }

.method-row-trigger{
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: clamp(88px, 8vw, 120px) 1fr 28px;
  gap: clamp(28px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(30px, 3.8vw, 48px) clamp(28px, 4vw, 56px);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.method-row-trigger:focus-visible{
  outline: 1px solid var(--gold-deep);
  outline-offset: -1px;
}

/* Numeral as the editorial anchor — larger than the title */
.method-row-num{
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
  transition: color 480ms ease;
}
.method-row.is-open .method-row-num{ color: var(--gold-deep); }

.method-row-title{
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink-warm);
  margin: 0;
  text-wrap: balance;
  transition: color 320ms ease;
  align-self: center;
}
.method-row-title em{
  font-style: italic;
  font-weight: 320;
  color: var(--gold-deep);
}
.method-row-trigger:hover .method-row-title{ color: var(--ink); }

/* Hairline plus → minus glyph, no ring */
.method-row-icon{
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold-deep);
  transition: color 320ms ease;
  flex: 0 0 28px;
  align-self: center;
}
.method-row-icon svg{ width: 16px; height: 16px; display: block; }
.method-row-icon .vbar{
  transform-origin: 12px 12px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.method-row.is-open .method-row-icon .vbar{ transform: scaleY(0); }
.method-row-trigger:hover .method-row-icon{ color: var(--gold); }

/* Smooth height accordion using grid trick */
.method-row-body{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
.method-row.is-open .method-row-body{ grid-template-rows: 1fr; }
/* Row becomes the canvas. When open, the figure bleeds in from the right. */
.method-row{ overflow: hidden; }

.method-row-body-inner{
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0 clamp(28px, 4vw, 56px) clamp(36px, 4.4vw, 56px) calc(clamp(88px, 8vw, 120px) + clamp(28px, 4vw, 56px) + clamp(28px, 4vw, 56px));
}
.method-row-body-inner p{
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.7;
  color: rgba(31,26,18,0.92);
  max-width: 50ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 540ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
              transform 540ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}
.method-row.is-open .method-row-body-inner p{
  opacity: 1;
  transform: translateY(0);
}
.method-row-body-inner p em{
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 420;
}

/* Adrian portrait — fades into the row, bleeds from the right, masks into cream.
   Filter is scoped (not the global --photo-filter) so it stays duotone-cream
   only for the method accordion; case studies and mosaic keep their warmer
   treatment. */
.method-row-figure{
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(0.55) sepia(0.32) contrast(0.94) brightness(1.06);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scale(1.015);
  /* Horizontal fade — image visible at right, dissolves into cream toward left */
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.62) 32%, rgba(0,0,0,0.22) 66%, rgba(0,0,0,0) 96%);
          mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.62) 32%, rgba(0,0,0,0.22) 66%, rgba(0,0,0,0) 96%);
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
              transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}
.method-row.is-open .method-row-figure{
  opacity: 0.28;
  transform: scale(1);
}
/* Cream wash + soft vignette so the paragraph never competes with the photo */
.method-row-figure::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(242,235,220,0.55) 18%, rgba(242,235,220,0) 42%),
    linear-gradient(180deg, rgba(242,235,220,0.18) 0%, rgba(242,235,220,0) 30%, rgba(242,235,220,0) 70%, rgba(242,235,220,0.25) 100%);
  pointer-events: none;
}

.method-row:nth-child(1) .method-row-figure{ background-image: url('assets/photos/adrian-recruit.jpg'); background-position: 60% 22%; }
.method-row:nth-child(2) .method-row-figure{ background-image: url('assets/photos/adrian-conv-talk.jpg'); background-position: 50% 30%; }
.method-row:nth-child(3) .method-row-figure{ background-image: url('assets/photos/adrian-advisor.jpg'); background-position: 55% 35%; }
.method-row:nth-child(4) .method-row-figure{ background-image: url('assets/photos/adrian-editorial.jpg'); background-position: 60% 28%; }

/* Mobile — tighter layout, photo bleeds more aggressively to keep text legible */
@media (max-width: 720px){
  .method-row-trigger{
    grid-template-columns: 56px 1fr 24px;
    gap: 16px;
    padding: 24px 22px;
  }
  .method-row-num{ font-size: 32px; }
  .method-row-title{ font-size: clamp(18px, 4.6vw, 22px); line-height: 1.22; }
  .method-row-icon{ width: 24px; height: 24px; flex: 0 0 24px; }
  .method-row-icon svg{ width: 14px; height: 14px; }
  .method-row-body-inner{
    padding: 0 22px 28px calc(56px + 16px + 22px);
  }
  .method-row-body-inner p{
    font-size: 15.5px;
    line-height: 1.65;
    max-width: none;
  }
  .method-row-figure{
    width: 78%;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.36) 50%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to left, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.36) 50%, rgba(0,0,0,0) 100%);
  }
  .method-row.is-open .method-row-figure{ opacity: 0.22; }
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce){
  .method-row,
  .method-row::before,
  .method-row-body,
  .method-row-body-inner p,
  .method-row-num,
  .method-row-icon,
  .method-row-icon .vbar{
    transition: none !important;
  }
}

/* ================== STICKY WHATSAPP — luxury pill (2026-05-15) ================== */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  background: var(--ink-warm);
  color: var(--cream);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 103, 0.32);
  box-shadow:
    0 22px 48px -22px rgba(31, 26, 18, 0.55),
    0 2px 8px -3px rgba(31, 26, 18, 0.28),
    inset 0 0 0 1px rgba(247, 241, 226, 0.04);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 480ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}
.wa-float.is-ready { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float.is-tucked { opacity: 0; transform: translateY(14px); pointer-events: none; }
.wa-float:hover {
  background: #15110A;
  border-color: rgba(201, 165, 103, 0.6);
  box-shadow:
    0 30px 60px -22px rgba(31, 26, 18, 0.65),
    0 4px 12px -4px rgba(31, 26, 18, 0.35),
    inset 0 0 0 1px rgba(247, 241, 226, 0.05);
  transform: translateY(-2px);
}
.wa-float:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}
.wa-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 165, 103, 0.14);
  color: var(--gold-soft);
  flex-shrink: 0;
}
.wa-float-icon svg { width: 14px; height: 14px; }
.wa-float-label { white-space: nowrap; }
.wa-float-label .wa-dim { color: rgba(247, 241, 226, 0.58); margin-left: 2px; font-weight: 400; }

@media (max-width: 640px) {
  .wa-float {
    padding: 12px;
    right: 14px;
    bottom: 14px;
    gap: 0;
  }
  .wa-float-icon { width: 24px; height: 24px; }
  .wa-float-label { display: none; }
  .wa-float[aria-label] { /* keep accessible name */ }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float {
    transition: opacity 240ms linear;
    transform: none;
  }
  .wa-float.is-ready, .wa-float.is-tucked { transform: none; }
  .wa-float:hover { transform: none; }
}
