/* ============================================================
   Haverstock Capital — marketing site
   Editorial design system. Tokens, fonts and the full palette
   live in the shared web brand pack (brand/brand-tokens.css);
   this file styles against those tokens. Order below: primitives,
   then sections in page order, then motion, then breakpoints.
   ============================================================ */

@import url("/brand/brand-tokens.css?v=20260612c");

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p, address { margin: 0; font-style: normal; }
/* Italic accents speak in the serif voice (Georgia); everything else Montserrat */
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pine);
  color: var(--on-dark);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 300;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   Scroll progress hairline
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

/* ============================================================
   Header — transparent over hero, tinted while inside the hero,
   solid white beyond it
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  color: var(--on-dark);
  transition: background-color 320ms ease, color 320ms ease, box-shadow 320ms ease;
}
.site-header.is-tinted {
  background: rgba(11, 31, 26, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
}
.site-header.is-solid {
  background: rgba(244, 239, 231, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Horizontal lockup — official mark beside the Montserrat wordmark.
   Two-tone and state-aware via --logo-mark / --logo-text. */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.logo-mark { width: 42px; height: auto; flex: none; }
.logo-mark polygon { fill: var(--logo-mark); transition: fill 280ms ease; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.13em;
  color: var(--logo-text);
  transition: color 280ms ease;
}
.logo-sub {
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.46em;
  margin-top: 4px;
  color: var(--logo-text);
  opacity: 0.82;
  transition: color 280ms ease;
}
/* State-driven lockup colours: gold mark + cream words on dark,
   pine mark + ink words when the header is solid. */
.site-header { --logo-mark: var(--gold); --logo-text: var(--on-dark); }
.site-header.is-solid { --logo-mark: var(--pine); --logo-text: var(--ink); }
.site-footer { --logo-mark: var(--gold); --logo-text: var(--on-dark); }

.desktop-nav { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.desktop-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  padding: 0.4rem 0;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--flax);
  transition: right 280ms var(--ease-out);
}
.site-header.is-solid .desktop-nav a::after { background: var(--pine); }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.portal-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}
.site-header:not(.is-solid) .portal-cta:hover { background: var(--white); color: var(--midnight); }
.site-header.is-solid .portal-cta { border-color: var(--pine); color: var(--pine); }
.site-header.is-solid .portal-cta:hover { background: var(--pine); color: var(--on-dark); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.menu-bars { display: flex; flex-direction: column; gap: 6px; width: 22px; }
.menu-bars span {
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 260ms var(--ease-out);
}
.menu-toggle[aria-expanded="true"] .menu-bars span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bars span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, var(--pine), var(--midnight));
  color: var(--on-dark);
  display: flex;
  align-items: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  transition: opacity 320ms ease;
}
.nav-overlay.is-open { opacity: 1; }
.nav-overlay[hidden] { display: none; }
.nav-overlay nav { width: 100%; max-width: 30rem; margin: 0 auto; }
.overlay-links { display: flex; flex-direction: column; }
.overlay-links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 300;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.overlay-links small {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--flax);
  font-weight: 500;
}
.overlay-meta {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--on-dark-70);
}
.overlay-portal { color: var(--flax); font-weight: 700; }
.overlay-contact { color: var(--on-dark-70); }
.overlay-contact:hover { color: var(--flax); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease-out), background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--white); color: var(--midnight); }
.btn-solid:hover { background: #ffffff; }
.btn-ghost { border: 1px solid var(--line-dark); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--flax); color: var(--flax); }
.btn-dark { background: var(--pine); color: var(--on-dark); }
.btn-dark:hover { background: var(--midnight); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(115% 85% at 80% 10%, rgba(46, 107, 95, 0.45) 0%, transparent 55%),
    radial-gradient(90% 70% at 10% 90%, rgba(27, 75, 67, 0.55) 0%, transparent 60%),
    linear-gradient(165deg, var(--green-mid) 0%, #102a24 45%, var(--midnight) 100%);
  color: var(--on-dark);
  overflow: hidden;
}

.hero-ornament { position: absolute; inset: 0; pointer-events: none; }
.contours {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  will-change: transform;
}
/* Fallback styling for the static no-JS paths; the live engine sets
   stroke + width inline per line. */
.contours path {
  fill: none;
  stroke: rgba(244, 239, 231, 0.08);
  stroke-width: 1.2;
  stroke-linecap: round;
}
.contours path:nth-child(3) { stroke: rgba(201, 165, 88, 0.15); }
.hero-peak {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: min(48vw, 640px);
  color: rgba(246, 246, 246, 0.045);
  will-change: transform;
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 7rem var(--gutter) 4rem;
}
.hero-overline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: var(--flax);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-serif {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1rem + 1.9vw, 2.2rem);
  font-weight: 400;
  color: var(--on-dark-70);
  margin-top: 1.4rem;
}
.hero-serif em { color: var(--gold-bright); }
.hero-sub {
  max-width: 34rem;
  margin-top: 1.6rem;
  color: var(--on-dark-70);
  font-weight: 300;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.6rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--on-dark-50);
}
.scroll-cue-text {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: var(--line-dark);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  left: 0; top: -50%;
  width: 100%;
  height: 50%;
  background: var(--flax);
  animation: cue-drop 2.2s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { top: -50%; }
  60%, 100% { top: 110%; }
}

/* Hero entrance (page-load, not scroll).
   fill-mode: both — the hidden "from" state only exists while the animation
   is pending, so if animations never run the content is simply visible. */
.anim-1, .anim-2, .anim-3, .anim-4, .anim-5, .anim-6 {
  animation: hero-in 1100ms var(--ease-out) both;
}
.anim-1 { animation-delay: 150ms; }
.anim-2 { animation-delay: 280ms; }
.anim-3 { animation-delay: 430ms; }
.anim-4 { animation-delay: 560ms; }
.anim-5 { animation-delay: 700ms; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
/* The scroll cue keeps its horizontal centering through the animation. */
.anim-6 {
  animation-name: hero-in-cue;
  animation-delay: 1100ms;
}
@keyframes hero-in-cue {
  from { opacity: 0; transform: translate(-50%, 26px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================================
   Sections — shared scaffolding
   ============================================================ */
.section { padding: var(--space-section) 0; position: relative; }
.section[id] { scroll-margin-top: 70px; }
.sec-light { background: var(--white); color: var(--ink); }
.sec-paper { background: var(--paper); color: var(--ink); }
.sec-dark {
  background:
    radial-gradient(100% 90% at 85% 8%, rgba(74, 117, 110, 0.32) 0%, transparent 55%),
    linear-gradient(170deg, var(--pine) 0%, var(--midnight) 100%);
  color: var(--on-dark);
}

.sec-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: clamp(2.2rem, 2rem + 2vw, 4rem);
}
.overline {
  flex: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: baseline;
  gap: 0.8rem;
}
.sec-dark .overline { color: var(--gold-bright); }
.overline-no {
  font-weight: 300;
  color: inherit;
  opacity: 0.65;
}
.rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1200ms var(--ease-out) 200ms;
}
.sec-dark .rule { background: var(--line-dark); }
.revealed .rule, .sec-head.revealed .rule { transform: scaleX(1); }

.sec-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 24ch;
  text-wrap: balance;
}
.sec-title em { color: var(--pine); font-weight: 400; }
.sec-dark .sec-title em { color: var(--gold-bright); }

/* ============================================================
   01 — What we do
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.split-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.split-title em { color: var(--pine); font-weight: 400; }
.lede {
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-70);
  font-weight: 300;
}
.note {
  margin-top: 1.3rem;
  font-size: 0.88rem;
  color: var(--ink-50);
}
.note a {
  color: var(--pine);
  font-weight: 600;
  border-bottom: 1px solid var(--sea);
  transition: border-color 200ms ease;
}
.note a:hover { border-color: var(--pine); }

/* Stat band — values share one baseline (equal-height value rows,
   bottom-aligned), so labels line up across all three columns. */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 2.5rem + 3vw, 5.5rem);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 1.9rem 1.5rem 0.4rem;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-value {
  display: flex;
  align-items: flex-end;
  min-height: clamp(2rem, 1.4rem + 2vw, 2.6rem);
  font-size: clamp(1.5rem, 1rem + 1.9vw, 2.15rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}
.stat-value small {
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: 0.25rem;
  color: var(--ink-50);
}
/* Phrase stats share the numeric size/weight so all three read as one
   family; nowrap keeps each on a single line for the shared baseline. */
.stat-value-text { white-space: nowrap; }
.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ============================================================
   02 — Approach: borderless editorial columns, ghost numerals
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  border-top: 1px solid var(--line-dark);
}
.principle {
  position: relative;
  padding: clamp(2rem, 1.6rem + 1.5vw, 3rem) clamp(1.2rem, 1.5vw, 2rem) clamp(1.8rem, 1.5rem + 1vw, 2.6rem);
  border-left: 1px solid var(--line-dark);
  transition: transform 360ms var(--ease-out);
}
.principle:first-child { border-left: 0; padding-left: 0; }
.principle:hover { transform: translateY(-6px); }
.principle::after {
  content: "";
  position: absolute;
  left: clamp(1.2rem, 1.5vw, 2rem); right: 100%;
  top: -1px;
  height: 2px;
  background: var(--flax);
  transition: right 480ms var(--ease-out);
}
.principle:first-child::after { left: 0; }
.principle:hover::after { right: clamp(1.2rem, 1.5vw, 2rem); }
.principle-no {
  display: block;
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.4rem, 1.2rem + 1vw, 2.2rem);
  color: var(--flax-dim);
}
@supports ((-webkit-text-stroke: 1px black)) {
  .principle-no {
    color: transparent;
    -webkit-text-stroke: 1.2px var(--flax-dim);
  }
}
.principle h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  min-height: 2.6em; /* two title lines, so paragraphs align across cards */
}
@media (max-width: 640px) {
  .principle h3 { min-height: 0; } /* stacked cards — no cross-alignment needed */
}
.principle p {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--on-dark-70);
}

/* ============================================================
   03 — Team
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  margin-top: clamp(2.5rem, 2rem + 2.5vw, 4rem);
}
.member {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}
.member-photo {
  width: clamp(120px, 10vw + 60px, 160px);
  height: auto;
  border-radius: 50%;
  margin-bottom: 1.3rem;
  transition: transform 360ms var(--ease-out);
}
.member:hover .member-photo { transform: scale(1.04); }
.member h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.member-role {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.member-points {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.member-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-70);
}
.member-points li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: 500;
}

/* ============================================================
   Watch — CIO presentation teaser (links into the investor portal)
   ============================================================ */
.video-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.8rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.video-feature-copy .sec-title { margin-top: 0.7rem; }
.video-feature-lede {
  margin-top: 1.3rem;
  max-width: 46ch;
  font-weight: 300;
  color: rgba(244, 239, 231, 0.82);
}
.video-feature-actions { margin-top: 1.8rem; }
.video-feature-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: rgba(244, 239, 231, 0.55);
}
/* Photo-free cinematic "poster": mirrors the investor-portal video stage it
   links to (deep pine->midnight ground, faint brand contours + peak watermark,
   gold-ring play, Sohn Monaco credit). No photograph — this is a public,
   indexed page, so a still frame could reveal the stock. It sits on the
   .sec-dark pine ground, so a deeper gradient + hairline gold edge + lifted
   shadow keep it reading as a distinct screen object, not merged into the band. */
.video-poster {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 120% at 82% -8%, rgba(201, 165, 88, 0.16) 0%, transparent 55%),
    radial-gradient(90% 100% at 12% 108%, rgba(46, 107, 95, 0.42) 0%, transparent 60%),
    linear-gradient(160deg, #17352d 0%, #0a1b16 100%);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.6);
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.video-poster:hover { transform: translateY(-4px); box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.65); }

/* Brand art layer (decorative): topographic contour lines + peak logo mark. */
.video-poster-art { position: absolute; inset: 0; pointer-events: none; }
.video-poster-contours { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-poster-contours path {
  fill: none; stroke: rgba(244, 239, 231, 0.06);
  stroke-width: 1.4; stroke-linecap: round;
}
.video-poster-contours path:nth-child(even) { stroke: rgba(201, 165, 88, 0.13); }
.video-poster-peak {
  position: absolute; right: -5%; bottom: -12%;
  width: 60%; height: auto;
  color: rgba(244, 239, 231, 0.05);
}
/* Optional photo fill: sits above the brand art, below the scrim + overlays.
   If the file is missing it removes itself (onerror) and the art shows through. */
.video-poster-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
/* Scrim keeps the kicker (top) and caption (bottom) legible over a photo, while
   leaving the centre clear for the play button. */
.video-poster::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top,
    rgba(8, 17, 13, 0.70) 0%, rgba(8, 17, 13, 0.12) 40%,
    rgba(8, 17, 13, 0) 60%, rgba(8, 17, 13, 0.38) 100%);
}

/* Gold-ring play button (matches the portal stage) */
.video-poster-play {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  width: 72px; height: 72px; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--gold);   /* gold ring sits at the edge of the white disc */
  color: var(--gold);
  transition: transform 400ms var(--ease-out), background 400ms var(--ease-out);
}
.video-poster:hover .video-poster-play { transform: translate(-50%, -50%) scale(1.08); background: var(--paper); }
.video-poster-play svg { position: relative; z-index: 1; width: 30px; height: 30px; margin-left: 4px; }

/* "Sohn Monaco" credit kicker, top-left */
.video-poster-kicker {
  position: absolute; top: 0.85rem; left: 0.95rem; z-index: 1;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  background: #fff;
  padding: 0.34rem 0.62rem; border-radius: 7px;
}
.video-poster-cap {
  position: absolute; left: 1.15rem; bottom: 1rem; z-index: 1;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244, 239, 231, 0.9);
}
@media (max-width: 720px) {
  .video-feature-grid { grid-template-columns: 1fr; }
  .video-poster { order: -1; }
}

/* ============================================================
   04 — Insights (newsletter teasers — editorial spread)
   ============================================================ */
.insights-head { margin-bottom: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); }
.posts-loading { color: var(--ink-50); font-style: italic; padding: 2rem 0; }

/* ---- Shared kicker / tag / byline ---- */
.ins-kicker {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 0.2rem;
  margin-bottom: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
}
.ins-tag {
  position: relative;
  color: var(--pine);
  font-weight: 700;
  padding-left: 1.05rem;
}
.ins-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-radius: 50%;
  background: var(--gold);
}
.ins-by { display: inline-flex; align-items: center; gap: 0.55rem; }
.ins-by-name { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.ins-avatar {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2.5px solid var(--card);
  box-shadow: 0 2px 6px rgba(21, 33, 29, 0.14);
}
.ins-avatar-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ins-avatar svg { width: 19px; height: auto; }

/* ---- Spread layout ---- */
.insights-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-areas: "lead side" "micros micros" "rail rail";
  gap: clamp(1.6rem, 1.2rem + 2vw, 3rem) clamp(2rem, 1.5rem + 2.5vw, 4rem);
  align-items: start;
  /* a fine pine rule the full width of the spread, above both columns */
  border-top: 1px solid var(--pine);
  padding-top: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem);
}

/* ---- Lead: Canary hook ---- */
.ins-lead {
  grid-area: lead;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* first side block sits directly under the full-width rule — no second line */
.ins-side .ins-block:first-child { border-top: none; padding-top: 0; }
.ins-hook {
  position: relative;
  /* Kept clearly below the section title (.sec-title) so "Notes from the desk"
     stays the dominant heading and the section doesn't read as cluttered. */
  font-size: clamp(1.25rem, 1.0rem + 0.95vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.ins-dek {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--pine);
  margin-bottom: 1.6rem;
}
.ins-lead-foot {
  margin-top: auto;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ins-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 240ms var(--ease-out), color 240ms ease;
}
.ins-cta:hover { color: var(--sea); gap: 0.75rem; }

/* ---- Side column ---- */
.ins-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.ins-block { padding-top: 1.3rem; border-top: 1px solid var(--line); }
.ins-blurb {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}
.ins-note {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-50);
}
.ins-note::before { content: "→ "; color: var(--gold); font-weight: 700; }

/* ---- Starr's Rating ---- */
.ins-starr { display: block; }
.starr-head { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.95rem; }
.starr-head .ins-kicker { margin-bottom: 0; }
.starr-main { display: grid; gap: 1rem; align-items: start; }
.starr-main--shot { grid-template-columns: 84px minmax(0, 1fr); }
.starr-shot {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background-color: var(--white);
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 16px -8px rgba(21, 33, 29, 0.4);
}
.starr-info { min-width: 0; }
.starr-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.starr-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.starr-hood { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-50); }
.starr-rating {
  margin-left: auto;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pine);
  line-height: 1;
}
.starr-out { font-size: 0.7rem; font-weight: 500; color: var(--ink-50); }
.ins-starr .ins-blurb { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: var(--ink-70); }
.ins-avatar[title] { cursor: help; }

/* ---- Micro-insights (stat + voice) ---- */
.ins-micros {
  grid-area: micros;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 1rem + 1.5vw, 2.6rem);
  margin-top: 0.4rem;
  padding: 1.6rem clamp(1.4rem, 1rem + 1.5vw, 2.4rem);
  background: rgba(27, 75, 67, 0.05);
  border-radius: var(--radius);
}
.ins-micro { display: flex; flex-direction: column; gap: 0.4rem; }
.ins-micro + .ins-micro { padding-left: clamp(1.2rem, 1rem + 1.5vw, 2.6rem); border-left: 1px solid var(--line); }
.ins-stat-num {
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.ins-q { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; line-height: 1.3; color: var(--ink); }
.ins-micro-text { font-size: 0.85rem; font-weight: 300; line-height: 1.55; color: var(--ink-70); }

/* ---- Recent-issues rail ---- */
.ins-rail {
  grid-area: rail;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
  margin-top: 0.4rem;
}
.ins-rail-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 600;
  margin-right: 0.3rem;
}
.ins-rail-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pine);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.ins-rail-chip:hover { background: var(--pine); border-color: var(--pine); color: var(--on-dark); }

@media (max-width: 820px) {
  .insights-head { grid-template-columns: 1fr; }
  .insights-spread { grid-template-columns: 1fr; grid-template-areas: "lead" "side" "micros" "rail"; }
  .ins-micros { grid-template-columns: 1fr; }
  .ins-micro + .ins-micro { padding-left: 0; padding-top: 1.2rem; border-left: 0; border-top: 1px solid var(--line); }
}

/* ============================================================
   05 — Find us
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: stretch;
}
.contact-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.contact-title em { color: var(--pine); font-weight: 400; }
.contact-card address {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-70);
}
.contact-card address strong { color: var(--ink); font-weight: 700; }
.contact-actions { margin-top: 1.8rem; }
.contact-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--ink-50);
  max-width: 26rem;
  line-height: 1.65;
}
.contact-note a {
  color: var(--pine);
  font-weight: 600;
  border-bottom: 1px solid var(--sea);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
  position: relative;
  background: radial-gradient(ellipse at center, #ececea 0%, #dededb 100%);
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.5rem;
  text-align: center;
}
.map-placeholder p {
  font-size: 0.88rem;
  color: var(--ink-50);
  max-width: 28rem;
}
.map-fallback a {
  color: var(--pine);
  font-weight: 600;
  border-bottom: 1px solid var(--sea);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: linear-gradient(175deg, var(--pine), var(--midnight));
  color: var(--on-dark-70);
  padding: clamp(2.8rem, 2.4rem + 2vw, 4.5rem) 0 2.2rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line-dark);
}
.logo-footer .logo-mark { width: 50px; }
.logo-footer .logo-name { font-size: 1.18rem; }
.logo-footer .logo-sub { font-size: 0.64rem; }
.footer-links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); flex-wrap: wrap; }
.footer-links a, .footer-contact {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-70);
  transition: color 200ms ease;
}
.footer-links a:hover, .footer-contact:hover { color: var(--flax); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
}
.footer-disclaimer {
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 46rem;
  color: var(--on-dark-50);
}
.footer-meta { font-size: 0.74rem; color: var(--on-dark-50); flex: none; }

/* ============================================================
   Contact modal
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 33, 26, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 260ms ease;
}
.modal.is-open .modal-backdrop { opacity: 1; }
.modal-panel {
  position: relative;
  width: min(580px, 100%);
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px -24px rgba(23, 33, 26, 0.5);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 280ms ease, transform 280ms var(--ease-out);
}
.modal-scroll {
  max-height: min(86vh, 760px);
  overflow-y: auto;
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-50) transparent;
}
.modal-scroll::-webkit-scrollbar { width: 8px; }
.modal-scroll::-webkit-scrollbar-thumb {
  background: var(--ink-50);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.modal.is-open .modal-panel { opacity: 1; transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink-50);
  padding: 0.3rem;
}
.modal-close:hover { color: var(--ink); }
.modal-title {
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-top: 0.5rem;
}
.modal .overline { color: var(--gold); }

.contact-options { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-options button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}
.contact-options button:hover {
  border-color: var(--pine);
  background: var(--white);
  transform: translateX(4px);
}
.contact-options strong { font-size: 0.95rem; font-weight: 700; }
.contact-options span { font-size: 0.82rem; color: var(--ink-50); line-height: 1.5; }

.modal-back {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 1.2rem;
}
.modal-back:hover { color: var(--pine); }

.outcome h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.outcome > p {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-70);
}
.outcome-cta { margin-top: 1.4rem; }
.outcome-banner {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--sea);
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: var(--ink-70);
  line-height: 1.6;
}
.form-note {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-left: 3px solid var(--pine);
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: var(--ink-70);
  line-height: 1.6;
}

.contact-form { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 0.92rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: normal;
  text-transform: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pine);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .btn { align-self: flex-start; border: 0; }
.contact-form .btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.85rem; line-height: 1.6; }
.form-status.is-error { color: #9c3a2e; }
.form-status.is-success { color: var(--pine); font-weight: 600; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 150;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(23, 33, 26, 0.35);
  padding: 1.4rem 1.6rem;
  max-width: 580px;
  margin-left: auto;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms var(--ease-out);
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner[hidden] { display: none; }
.cookie-inner { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-title { font-weight: 700; font-size: 0.92rem; }
.cookie-desc { font-size: 0.84rem; font-weight: 300; color: var(--ink-70); line-height: 1.6; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.4rem;
}
.cookie-btn {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--pine);
  transition: background-color 200ms ease, color 200ms ease;
}
.cookie-accept { background: var(--pine); color: var(--on-dark); }
.cookie-accept:hover { background: var(--midnight); }
.cookie-reject { color: var(--pine); }
.cookie-reject:hover { background: rgba(27, 75, 67, 0.08); }
.cookie-link {
  font-size: 0.76rem;
  color: var(--ink-50);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: auto;
}

/* ============================================================
   Privacy page
   ============================================================ */
.privacy-page {
  padding: calc(76px + clamp(2rem, 1.5rem + 3vw, 4rem)) 0 clamp(2.5rem, 2rem + 3vw, 5rem);
  background: var(--white);
  min-height: 60vh;
}
.privacy-article {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 1rem + 2.5vw, 3.2rem);
}
.privacy-back {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  transition: color 200ms ease;
}
.privacy-back:hover { color: var(--pine); }
.privacy-article h1 {
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.privacy-updated { font-size: 0.74rem; color: var(--ink-50); margin-top: 0.4rem; }
.privacy-article h2 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 1.9rem 0 0.55rem;
}
.privacy-article p, .privacy-article ul {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-70);
  margin-top: 0.45rem;
}
.privacy-article ul { list-style: disc; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.3rem; }
.privacy-article a {
  color: var(--pine);
  font-weight: 600;
  border-bottom: 1px solid var(--sea);
}
.privacy-article code {
  font-size: 0.85em;
  background: var(--white);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

/* ============================================================
   Scroll-reveal motion system
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 110ms);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
.no-js [data-reveal], .no-observer [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .principles { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .principle, .principle:first-child {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
    padding-right: 1.5rem;
  }
  .principle::after, .principle:first-child::after { left: 0; }
  .principle:hover::after { right: 1.5rem; }
  .team { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 860px) {
  .br-wide { display: none; }
  .split { grid-template-columns: 1fr; gap: 1.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
  .insights-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .team { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 640px) {
  .principles { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; border-top: 0; }
  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 1.4rem 0 0.3rem;
  }
  .stat-value { min-height: 0; }
  .portal-cta { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .scroll-cue { display: none; }
  .posts-carousel { grid-auto-columns: 82vw; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { inset: auto 0.7rem 0.7rem; padding: 1.1rem 1.2rem; }
  .cookie-link { margin-left: 0; }
  .logo-mark { width: 34px; }
  .logo-name { font-size: 0.92rem; }
  .logo-sub { font-size: 0.52rem; letter-spacing: 0.4em; }
}

/* ============================================================
   Reduced motion — kill all choreography
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .anim-1, .anim-2, .anim-3, .anim-4, .anim-5, .anim-6,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .rule { transform: scaleX(1) !important; }
  .contours, .hero-peak { display: none; }
}
