@view-transition { navigation: auto; }

/* ============================================================
   Bear Park — site v2
   Structural system matched to the provided reference screenshots:
   mono diamond labels, block buttons with ↳, floating pill nav,
   statement sections, scattered collage, dark band, table list,
   client stories, outlined CTA, watermark footer.
   ============================================================ */

:root {
  --v2-cream: #f2eee3;
  --v2-dark: #20271f;            /* near-black green — section bg + buttons */
  --v2-ink: #232a23;             /* headline ink on cream */
  --v2-line: rgba(35, 42, 35, .18);
  --v2-line-soft: rgba(35, 42, 35, .12);
  --v2-label-fallback: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --v2-sans: "Neue Haas Grotesk Display Pro", "Helvetica Neue", sans-serif;
  --bp-paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23000'%3E%3Cellipse cx='50' cy='69' rx='27' ry='20'/%3E%3Cellipse cx='20' cy='45' rx='8.5' ry='11.5' transform='rotate(-20 20 45)'/%3E%3Cellipse cx='39' cy='31' rx='9' ry='13' transform='rotate(-7 39 31)'/%3E%3Cellipse cx='61' cy='31' rx='9' ry='13' transform='rotate(7 61 31)'/%3E%3Cellipse cx='80' cy='45' rx='8.5' ry='11.5' transform='rotate(20 80 45)'/%3E%3C/svg%3E");
}

html { scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--v2-cream);
  color: var(--v2-ink);
  font-family: var(--v2-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--bp-dusty-olive); color: var(--v2-dark); }

/* ---------- Primitives ---------- */
.eyebrow {
  font-family: var(--v2-label-fallback);
  font-size:var(--t-label);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  white-space: nowrap;
}
.eyebrow::before { content: none; }
.eyebrow.no-diamond::before { display: none; }

.btn-block {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--v2-label-fallback); font-size:var(--t-label); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--v2-dark); color: var(--v2-cream);
  padding: 13px 22px; border: 1px solid var(--v2-dark);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease-standard), color .25s var(--ease-standard);
}
.btn-block::before {
  content: ""; flex: none;
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: var(--bp-paw) center / contain no-repeat;
  mask: var(--bp-paw) center / contain no-repeat;
}
.btn-block:hover { background: var(--bp-green); border-color: var(--bp-green); color: var(--v2-cream); }
.btn-block.is-light { background: var(--v2-cream); border-color: var(--v2-cream); color: var(--v2-dark); }
.btn-block.is-light:hover { background: #fff; border-color: #fff; }

/* .link-line + .topbar CTA live in site/nav.css (shared site chrome) */

.headline {
  font-family: var(--v2-sans);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

.hairline-top { border-top: 1px solid var(--v2-line-soft); }

/* line-reveal masks */
.mask-line { display: block; overflow: visible clip; width: fit-content; }
.mask-line > span { display: block; will-change: transform; white-space: nowrap; }
.hero2 .h .mask-line, .statement .headline .mask-line, .statement-mini .headline .mask-line { margin-inline: auto; }

/* Top bar, pill nav and menu sheet live in site/nav.css (shared site chrome) */

/* ---------- Hero (one shared image across both stages) ---------- */
.hero-wrap {
  position: relative; overflow: clip;
  background: var(--v2-dark);
}
.hero-wrap .media { position: absolute; inset: 0; z-index: 0; }
.hero-wrap .media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; background: #313a30; }
.hero-wrap .media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #313a30; }
.hero-wrap .media .hero-video {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  opacity: 0; transition: opacity .8s ease; pointer-events: none;
  container-type: size; /* lets the iframe cover THIS box, not the viewport */
}
/* The hero box is now taller than the viewport (first screen + lower band), so the
   old vh/vw cover left the 16:9 iframe non-16:9 and the film letterboxed, revealing
   the photo behind. Size the iframe to the smallest 16:9 rect that covers this box. */
.hero-wrap .media .hero-video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: max(100cqw, calc(100cqh * 16 / 9));
  aspect-ratio: 16 / 9; height: auto;
  display: block; border: 0;
}
.hero-wrap .media .hero-video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-wrap .media .hero-video { display: none; } }
.hero-wrap .scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: rgba(28, 33, 27, .4); }

/* Drop-zone captions on dark sections — lighter, slightly larger + heavier for legibility */
.hero-wrap .media image-slot,
.darkband-media image-slot,
.guide-cover image-slot,
.footer2 .media image-slot {
  color: rgba(242, 238, 227, .82);
  font-size:var(--t-ui-15);
  font-weight: 500;
}

.hero2 {
  position: relative; z-index: 2; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; /* let image drops reach the shared hero slot */
}
.hero2 .h { pointer-events: auto; }
.hero2 .h {
  position: relative; text-align: center;
  color: var(--v2-cream);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  max-width: 26ch;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

/* hero stage 2 — label + paragraph over the same continuing media */
.hero2-b {
  position: relative; z-index: 2;
  display: flex; align-items: flex-start;
  pointer-events: none; /* let image drops reach the shared hero slot */
}
.hero2-b .row > * { pointer-events: auto; }
.hero2-b .row {
  position: relative; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; color: var(--v2-cream);
  padding: clamp(28px, 4vw, 56px) clamp(15px, 2.625vw, 48px);
}
.hero2-b .row .eyebrow { margin-left: clamp(0px, 30vw, 42vw); }
.hero2-b .para {
  max-width: 62ch;
  width: min(60ch, 78vw);
  flex: none;
  font-family: var(--tw-font-label, var(--v2-label-fallback));
  font-size:var(--t-label);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.85;
  margin: 0;
  text-shadow: 0 1px 14px rgba(20, 26, 20, .45);
}

/* ---------- Statement (about) ---------- */
.statement {
  text-align: center;
  padding: clamp(100px, 15vw, 220px) clamp(20px, 4vw, 56px);
}
/* Section eyebrow labels — two-colour system:
   grey (ink) on light cream sections, white (cream) on dark green sections. */
.statement .eyebrow,
.stories .eyebrow,
.projects .eyebrow,
.cta2 .eyebrow { color: var(--v2-ink); opacity: .85; }
.statement .headline {
  font-size: clamp(2rem, 4.3vw, 3.9rem);
  max-width: 24ch; margin: 34px auto 44px;
}
.statement .headline .dim { color: rgba(35, 42, 35, .45); }

/* ---------- Collection (scattered collage) ---------- */
.collection {
  position: relative;
  padding: clamp(60px, 8vw, 110px) clamp(15px, 2.625vw, 48px) clamp(110px, 14vw, 200px);
}
.collection .head-row { padding-bottom: clamp(40px, 6vw, 90px); }
.collection-stage { position: relative; max-width: 1320px; margin: 0 auto; }
.coll-item { position: relative; width: min(86vw, var(--w)); }
.coll-item image-slot { width: 100%; height: var(--h); display: block; background: var(--bp-dusty-olive); }
.coll-item.i2 image-slot { background: var(--bp-warm-taupe); }
.coll-item.i3 image-slot { background: var(--bp-powder-blue); }
.coll-item.i4 image-slot { background: color-mix(in srgb, var(--bp-dusty-rose) 70%, var(--v2-cream)); }
.coll-item .big {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2; pointer-events: none;
  font-family: var(--v2-sans); font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem); letter-spacing: -0.01em;
  color: var(--v2-cream); text-shadow: 0 2px 24px rgba(20, 26, 20, .35);
  white-space: nowrap;
}
.coll-item.i1 { --w: 480px; --h: clamp(360px, 38vw, 560px); margin-left: 26%; }
.coll-item.i2 { --w: 400px; --h: clamp(330px, 32vw, 470px); margin-left: 64%; margin-top: clamp(-180px, -10vw, -60px); }
.coll-item.i3 { --w: 330px; --h: clamp(300px, 30vw, 430px); margin-left: 42%; margin-top: clamp(40px, 6vw, 110px); }
.coll-item.i4 { --w: 400px; --h: clamp(330px, 34vw, 480px); margin-left: 4%; margin-top: clamp(-260px, -16vw, -100px); }
.coll-side {
  position: absolute; right: 0; top: 6%;
  max-width: 30ch; font-size: 15.5px; line-height: 1.65;
}
.coll-side strong { font-weight: 500; }
.coll-side .btn-block { margin-top: 26px; }
@media (max-width: 980px) {
  .coll-item.i1, .coll-item.i2, .coll-item.i3, .coll-item.i4 { margin-left: 0; margin-top: 40px; }
  .coll-side { position: static; margin-top: 48px; }
}

/* ---------- Our Centres cards (minimal, editorial) ---------- */
.ourcentres { padding: clamp(60px, 8vw, 110px) clamp(15px, 2.625vw, 48px) clamp(90px, 11vw, 160px); }
.ourcentres .head-row { padding-bottom: clamp(36px, 5vw, 64px); }
.oc-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.oc-card {
  cursor: pointer;
  transition: opacity .4s var(--ease-standard), transform .5s var(--ease-out);
}
/* hover system: hovered card grows, siblings recede */
.oc-grid:hover .oc-card { opacity: .45; }
.oc-grid .oc-card:hover { opacity: 1; transform: scale(1.03); z-index: 2; }
.oc-ph { overflow: clip; }
.oc-ph image-slot {
  width: 100%; height: clamp(240px, 24vw, 340px); display: block;
  background: var(--bp-dusty-olive);
  transition: transform .7s var(--ease-out);
}
.oc-card:hover .oc-ph image-slot { transform: scale(1.06); }
.oc-card:nth-child(4n+2) .oc-ph image-slot { background: var(--bp-warm-taupe); }
.oc-card:nth-child(4n+3) .oc-ph image-slot { background: var(--bp-powder-blue); }
.oc-card:nth-child(4n) .oc-ph image-slot { background: color-mix(in srgb, var(--bp-dusty-rose) 70%, var(--v2-cream)); }
.oc-cap {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-top: 16px;
}
.oc-name { font-size: 1.4rem; margin: 0; color: var(--v2-ink); white-space: nowrap; }
.oc-no {
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; color: rgba(35, 42, 35, .45);
}
.oc-subrow {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-top: 8px; padding-top: 10px;
  border-top: 1px solid var(--v2-line-soft);
}
.oc-ages {
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(35, 42, 35, .55);
  white-space: nowrap;
}
.oc-book { font-size: 10.5px; color: var(--v2-ink); }
.btn-block.sm { padding: 10px 16px; font-size: 10.5px; }
@media (max-width: 1020px) { .oc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .oc-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .oc-grid:hover .oc-card { opacity: 1; }
  .oc-grid .oc-card:hover { transform: none; }
  .oc-card:hover .oc-ph image-slot { transform: none; }
}

/* ---------- Centre detail overlay (horizontal scroll) ---------- */
.cx-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(22, 28, 22, .6);
  opacity: 0; visibility: hidden;
}
.cx-panel {
  position: fixed; inset: clamp(14px, 3vw, 44px); z-index: 91;
  background: #1b201a; color: var(--v2-cream);
  visibility: hidden;
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: 0 30px 90px rgba(18, 24, 18, .4);
}
/* expand-and-navigate: the panel grows to full-bleed before the full page loads */
.cx-panel.cx-expanding { box-shadow: none; }
.cx-track {
  position: relative; z-index: 1;
  display: flex; align-items: stretch;
  height: 100%; width: max-content;
  will-change: transform;
}
.cx-x {
  position: fixed; z-index: 92;
  top: clamp(26px, 4vw, 60px); right: clamp(26px, 4vw, 60px);
  width: 44px; height: 44px;
  visibility: hidden;
  border: 1px solid rgba(35, 42, 35, .3); background: var(--v2-cream); color: var(--v2-ink);
  font-size:var(--t-ui-16); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.cx-x:hover { background: var(--v2-dark); color: var(--v2-cream); border-color: var(--v2-dark); }
.cx-pane { flex: none; height: 100%; position: relative; }
.cx-hero { width: min(58vw, 760px); }
.cx-hero image-slot { width: 100%; height: 100%; display: block; background: var(--bp-dusty-olive); }
.cx-hero .cx-title {
  position: absolute; left: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 40px);
  color: var(--v2-cream); z-index: 2; margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-shadow: 0 2px 26px rgba(20, 26, 20, .45);
}
.cx-hero .cx-no {
  position: absolute; top: clamp(20px, 3vw, 36px); left: clamp(20px, 3vw, 40px); z-index: 2;
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; color: color-mix(in srgb, var(--v2-cream) 80%, transparent);
}
.cx-info {
  width: clamp(380px, 42vw, 640px);
  background: var(--v2-cream); color: var(--v2-ink);
  padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 22px;
  overflow-y: auto; scrollbar-width: none;
}
.cx-info::-webkit-scrollbar { width: 0; }
.cx-info .headline { font-size: clamp(1.5rem, 2.2vw, 2.1rem); margin: 14px 0 0; }
.cx-body { margin: 0; font-size: var(--t-body-sm); line-height: 1.62; color: rgba(35, 42, 35, .84); max-width: 46ch; } /* type matches .sp-body (the overlay's Welcome/Spaces copy); .84 = the site-wide light-bg copy ink (round 20) */
.cx-meta { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--v2-line-soft); }
.cx-meta .m {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 12px 2px; border-bottom: 1px solid var(--v2-line-soft);
  font-size: 14px;
}
.cx-meta .m b {
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(35, 42, 35, .5);
  align-self: center;
}
.cx-info .btn-block { align-self: flex-start; margin-top: auto; }

/* ---------- Centre overlay — The Spaces section ---------- */
.cx-panel .pin-label {
  position: absolute; top: clamp(36px, 4vw, 56px); left: clamp(34px, 4vw, 60px); z-index: 6;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size:var(--t-label); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--v2-cream);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.cx-panel .pin-label::before { content: "\25C6"; font-size: 8px; color: var(--v2-cream); transform: translateY(-1px); }
.cx-panel.in-spaces .pin-label { opacity: 1; }

.cx-panel .content {
  display: flex; align-items: center; justify-content: flex-start;
  /* side padding must cover the scroll engine's ±60px copy parallax, or the
     copy rides under the neighbouring pane mid-scroll */
  gap: clamp(20px, 2.4vw, 48px); padding: 0 clamp(64px, 6vw, 88px);
}
/* Centring via AUTO MARGINS, not justify-content: on smaller windows the
   JS-set 66% width is narrower than the copy + photo stack, and centred
   flex overflow slides UNDER the cream info pane (text lost). Auto margins
   centre when roomy and collapse to zero on overflow — nothing is lost. */
.cx-panel .content > :first-child { margin-left: auto; }
.cx-panel .content > :last-child { margin-right: auto; }
@media (min-width: 821px) {
  .cx-panel .content { min-width: max-content; }
}
.cx-panel .content.flip { flex-direction: row-reverse; }
.cx-panel .sp-copy { flex: none; max-width: 27ch; will-change: transform, opacity; }
.cx-panel .sp-no { display: block; font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size:var(--t-micro); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--bp-burnt-orange); margin: 0 0 18px; }
.cx-panel .sp-title { font-family: var(--tw-font-head, var(--font-display)); font-weight: 300; font-size: clamp(2.1rem, 3.4vw, 3.5rem); line-height: 1.02; letter-spacing: -.02em; color: var(--v2-cream); margin: 0 0 clamp(18px, 2vw, 28px); }
.cx-panel .sp-body { font-family: var(--v2-sans); font-size: var(--t-body-sm); line-height: 1.62; color: color-mix(in srgb, var(--v2-cream) 72%, transparent); margin: 0; max-width: 32ch; }

.cx-panel .sp-stack { position: relative; flex: none; width: clamp(280px, 30vw, 400px); height: clamp(360px, 52vh, 560px); }
.cx-panel .sp-stack .img { position: absolute; width: 60%; overflow: hidden; box-shadow: 0 40px 80px -34px rgba(0,0,0,.62); }
.cx-panel .sp-stack .a { top: 0; left: 0; aspect-ratio: 3 / 4; will-change: transform; }
.cx-panel .sp-stack .b { bottom: 0; right: 0; aspect-ratio: 3 / 4; will-change: transform; }
.cx-panel .sp-stack image-slot { width: 100%; height: 100%; display: block; }
.cx-panel .sp-stack .a image-slot { background: var(--bp-dusty-olive); }
.cx-panel .sp-stack .b image-slot { background: var(--bp-warm-taupe, #c9bca8); }

.cx-panel .fullbleed { overflow: hidden; }
.cx-panel .fullbleed img { width: 100%; height: 100%; display: block; object-fit: cover; background: #2c342b; will-change: transform; }

.cx-sbar {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 22px; z-index: 6;
  width: clamp(120px, 22vw, 260px); height: 2px;
  background: rgba(242,238,227,.2); border-radius: 2px; overflow: hidden;
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.cx-panel.in-spaces .cx-sbar { opacity: 1; }
.cx-sbar i { display: block; height: 100%; background: var(--bp-burnt-orange); border-radius: 2px; }

/* FAQ accordion inside the cream info panel */
.cx-faq { margin-top: clamp(120px, 22vh, 280px); }
.cx-faq .faq-h { margin: 12px 0 clamp(20px, 2.4vw, 30px); max-width: 20ch; }
.cx-faq .faq-item { border-bottom: 1px solid rgba(35,42,35,.16); }
.cx-faq .faq-item:first-of-type { border-top: 1px solid rgba(35,42,35,.16); }
.cx-faq .faq-q { width: 100%; appearance: none; background: none; border: 0; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: clamp(15px, 1.8vw, 20px) 0; font-family: var(--v2-sans); font-size: clamp(1rem, 1.25vw, 1.18rem); font-weight: 400; letter-spacing: -.01em; color: var(--v2-ink); line-height: 1.3; }
.cx-faq .faq-ic { position: relative; flex: none; width: 16px; height: 16px; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.cx-faq .faq-ic::before, .cx-faq .faq-ic::after { content: ""; position: absolute; background: rgba(35,42,35,.65); }
.cx-faq .faq-ic::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.cx-faq .faq-ic::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.cx-faq .faq-item.open .faq-ic { transform: rotate(45deg); }
.cx-faq .faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s cubic-bezier(.22,1,.36,1), opacity .35s ease; }
.cx-faq .faq-item.open .faq-a { max-height: 360px; opacity: 1; }
.cx-faq .faq-a p { margin: 0; padding: 0 0 clamp(18px, 2vw, 26px); font-family: var(--v2-sans); font-size: clamp(.95rem, 1vw, 1.02rem); line-height: 1.6; color: rgba(35,42,35,.84); }
.cx-shot { width: min(44vw, 560px); padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px) 0; }
.cx-shot:first-of-type { padding-left: 0; }
.cx-shot image-slot { width: 100%; height: 100%; display: block; background: var(--bp-warm-taupe); }
/* ---------- Centre overlay — rich-summary additions ---------- */
/* real hero photo + legibility veil (replaces the editor image-slot) */
.cx-hero-img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.cx-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,26,19,.12) 0%, rgba(20,26,19,0) 32%, rgba(16,20,15,.72) 100%);
}
.cx-hero .cx-no, .cx-hero .cx-title, .cx-hero .cx-hint { z-index: 2; }

/* real photos inside the parallax stack */
.cx-panel .sp-stack .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* welcome pane — a single, larger director/team photo (no second tile) */
.cx-panel .sp-stack--solo { width: clamp(300px, 32vw, 440px); height: clamp(380px, 56vh, 580px); }
.cx-panel .sp-stack--solo .a { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }

/* contact meta — tel link */
.cx-meta a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.cx-meta .m span { text-align: right; }

/* dual CTA row (Book a tour + Full centre page) */
.cx-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; padding-top: 8px; }
.cx-info .cx-cta .btn-block { align-self: auto; margin-top: 0; }
/* the secondary action on the SAND pane: cream-on-cream painted it as loose
   floating text beside the orange button (Josh, 11 Jul: "overlay CTAs not
   aligned") - a proper ghost box pairs the two */
.cx-info .cx-cta .btn-block.is-light {
  background: none; border-color: rgba(35, 42, 35, .34); color: var(--v2-ink);
}
.cx-info .cx-cta .btn-block.is-light:hover {
  background: var(--v2-dark); border-color: var(--v2-dark); color: var(--v2-cream);
}

/* director pane */
.cx-dir {
  display: flex; align-items: center; gap: clamp(40px, 6vw, 110px);
  width: min(86vw, 1040px); padding: 0 clamp(40px, 6vw, 120px);
}
.cx-dir-media { flex: none; width: clamp(280px, 30vw, 420px); height: clamp(360px, 54vh, 560px); overflow: hidden; box-shadow: 0 40px 80px -34px rgba(0,0,0,.62); }
.cx-dir-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cx-dir-copy { flex: none; max-width: 30ch; }

/* testimonial pane */
.cx-quote {
  display: flex; flex-direction: column; justify-content: center;
  width: min(72vw, 860px); padding: 0 clamp(40px, 6vw, 120px);
}
.cx-quote-mark { font-family: var(--tw-font-head, var(--font-display)); font-size: clamp(3rem, 5vw, 4.6rem); line-height: .7; color: var(--bp-burnt-orange); }
.cx-quote-t {
  margin: clamp(10px, 1.4vw, 18px) 0 clamp(22px, 2.4vw, 32px); max-width: 24ch;
  font-family: var(--tw-font-head, var(--font-display)); font-weight: 300; letter-spacing: -.018em;
  font-size: clamp(1.6rem, 2.8vw, 2.9rem); line-height: 1.16; color: var(--v2-cream);
}
.cx-quote-w { margin: 0; font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size:var(--t-label); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: color-mix(in srgb, var(--v2-cream) 64%, transparent); }

/* end pane — "keep scrolling to open the full page" cue + button */
.cx-end {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: clamp(22px, 3vw, 36px); width: min(60vw, 520px); padding: 0 clamp(40px, 6vw, 96px);
}
.cx-end-cue {
  max-width: 16ch; font-family: var(--tw-font-head, var(--font-display)); font-weight: 300;
  letter-spacing: -.018em; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.08;
  color: color-mix(in srgb, var(--v2-cream) calc(46% + var(--pull, 0) * 54%), transparent);
  transition: color .15s linear;
}
/* a thin pull-progress bar under the cue, filled by the over-scroll amount */
.cx-end-cue::after {
  content: ""; display: block; margin-top: 18px; height: 2px; width: 180px; max-width: 60%;
  background: linear-gradient(90deg, var(--bp-burnt-orange) calc(var(--pull, 0) * 100%), rgba(242,238,227,.18) calc(var(--pull, 0) * 100%));
}
.cx-hint {
  position: absolute; right: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 40px); z-index: 2;
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--v2-cream) 75%, transparent);
}
body.cx-open .pillnav { opacity: 0; pointer-events: none; }
.pillnav { transition: opacity .3s; }

/* ---------- Centre overlay, mobile (9 Jul): the horizontal journey becomes a
     vertical sheet — panes stack full-width, native scroll, the parallax
     engine stands down (centres.js gates on the same 820px breakpoint) ---------- */
@media (max-width: 820px) {
  .cx-panel { inset: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .cx-x { top: 14px; right: 14px; }
  .cx-track { display: block; width: auto; height: auto; transform: none !important; }
  .cx-pane { width: 100% !important; height: auto; }
  .cx-hero { height: 64svh; }
  .cx-hero .cx-hint { display: none; }
  .cx-info { width: 100% !important; overflow: visible; padding: 26px 20px 38px; }
  .cx-faq { margin-top: 46px; }
  .cx-panel .content, .cx-panel .content.flip {
    flex-direction: column !important; align-items: flex-start; height: auto;
    padding: 52px 20px; gap: 30px;
  }
  .cx-panel .sp-copy { max-width: none; transform: none !important; opacity: 1 !important; }
  .cx-panel .sp-stack { position: relative; width: 100%; height: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cx-panel .sp-stack .img { position: static; width: 100% !important; transform: none !important; }
  .cx-panel .sp-stack--solo { width: 100%; height: auto; display: block; }
  .cx-panel .sp-stack--solo .a { position: static; aspect-ratio: 3 / 4; height: auto; }
  .cx-panel .fullbleed { height: 44svh; }
  .cx-panel .fullbleed img { transform: none !important; }
  .cx-end { width: 100%; padding: 60px 20px 84px; }
  .cx-end-cue { display: none; } /* over-scroll cue is a wheel gesture; the button carries it */
  .cx-sbar, .cx-panel .pin-label { display: none; }
}

/* ---------- Booking flow ---------- */
.booking {
  background: var(--v2-dark); color: var(--v2-cream);
  padding: clamp(70px, 9vw, 130px) clamp(15px, 2.625vw, 48px);
}
.booking-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.bk-aside { position: sticky; top: clamp(90px, 12vh, 140px); }
.bk-aside .eyebrow { display: inline-flex; color: var(--v2-cream); margin-bottom: 22px; }
.booking .headline { font-size: clamp(2rem, 3.6vw, 3.2rem); color: var(--v2-cream); margin: 0 0 18px; line-height: 1.04; }
.bk-sub {
  margin: 0; font-size: var(--t-body-sub); line-height: 1.6;
  color: color-mix(in srgb, var(--v2-cream) 72%, transparent); max-width: 46ch;
}
.bk-points {
  list-style: none; margin: clamp(32px, 4vw, 48px) 0 0; padding: 0;
  display: flex; flex-direction: column; max-width: 42ch;
}
.bk-points li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 16px 0; border-top: 1px solid color-mix(in srgb, var(--v2-cream) 16%, transparent);
}
.bk-points li:last-child { border-bottom: 1px solid color-mix(in srgb, var(--v2-cream) 16%, transparent); }
.bk-pt-k {
  flex: none; font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: color-mix(in srgb, var(--v2-cream) 55%, transparent);
}
.bk-pt-v { text-align: right; font-size: clamp(.95rem, 1.15vw, 1.05rem); line-height: 1.4; color: var(--v2-cream); }

.bk-card {
  background: color-mix(in srgb, var(--v2-cream) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--v2-cream) 16%, transparent);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 44px);
  min-height: 360px;
}
.bk-progress {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-bottom: clamp(24px, 3vw, 36px);
  margin-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid color-mix(in srgb, var(--v2-cream) 14%, transparent);
}
.bk-progress-label {
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: color-mix(in srgb, var(--v2-cream) 55%, transparent);
}
.bk-steps { display: flex; gap: 8px; margin: 0; }
.bk-steps i { width: 40px; height: 3px; border-radius: 3px; background: color-mix(in srgb, var(--v2-cream) 22%, transparent); transition: background .3s; }
.bk-steps i.on { background: var(--v2-cream); }
.bk-step { display: none; }
.bk-step.active { display: block; }
.bk-q { font-size: clamp(1.4rem, 2.2vw, 2rem) !important; margin: 0 0 24px !important; line-height: 1.1; }
.bk-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bk-chip {
  appearance: none; cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--v2-cream) 35%, transparent);
  background: transparent; color: var(--v2-cream);
  font-family: var(--v2-sans); font-size:var(--t-ui-16); font-weight: 400;
  padding: 15px 26px; white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.bk-chip:hover { background: color-mix(in srgb, var(--v2-cream) 10%, transparent); border-color: color-mix(in srgb, var(--v2-cream) 60%, transparent); }
.bk-chip.sel { background: var(--v2-cream); color: var(--v2-dark); border-color: var(--v2-cream); }
.bk-help {
  margin: 24px 0 0;
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: color-mix(in srgb, var(--v2-cream) 55%, transparent);
}
.bk-back { margin-top: 30px; background: none; border: 0; padding: 0; color: var(--v2-cream); }
.bk-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 860px; }
.bk-field { display: flex; flex-direction: column; gap: 8px; }
.bk-field label {
  font-family: var(--tw-font-label, var(--v2-label-fallback)); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--v2-cream) 60%, transparent);
}
.bk-field input {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--v2-cream) 30%, transparent);
  color: var(--v2-cream); font-family: var(--v2-sans); font-size:var(--t-ui-16);
  padding: 13px 14px; outline: none;
  transition: border-color .2s;
}
.bk-field input:focus { border-color: var(--v2-cream); }
.bk-actions { margin-top: 28px; display: flex; align-items: center; gap: 24px; }
.bk-actions .bk-back { margin-top: 0; }
.bk-mark { height: 54px; width: auto; margin-bottom: 20px; }
@media (max-width: 760px) { .bk-fields { grid-template-columns: 1fr; } }

/* ---------- Dark band (centres showcase) ---------- */
.darkband {
  background: var(--v2-dark); color: var(--v2-cream);
  padding: clamp(60px, 8vw, 100px) clamp(15px, 2.625vw, 48px) clamp(120px, 16vw, 240px);
}
.darkband .head-row { padding-bottom: clamp(60px, 9vw, 140px); }
.darkband-stage {
  position: relative; max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: center;
}
.darkband-media { width: min(880px, 72vw); position: relative; }
.darkband-media image-slot { width: 100%; height: clamp(340px, 40vw, 560px); display: block; background: rgba(242, 238, 227, .1); }
.darkband .overlay-h {
  position: absolute; left: clamp(-40px, -6vw, -120px); top: 18%;
  z-index: 2; color: var(--v2-cream);
  font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 400;
  letter-spacing: -0.008em; line-height: 1.2; max-width: 18ch;
  text-shadow: 0 2px 22px rgba(20, 26, 20, .45);
}
.darkband .address {
  position: absolute; right: clamp(-20px, -3vw, -60px); top: 16%;
  text-align: right; font-size: 14px; line-height: 1.6;
}
.darkband .address .lbl {
  font-family: var(--v2-label-fallback); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; opacity: .7;
  display: block; margin-bottom: 8px;
}
.darkband .address .btn-block { margin-top: 22px; background: rgba(242,238,227,.12); border-color: rgba(242,238,227,.25); }
.darkband .address .btn-block:hover { background: var(--v2-cream); color: var(--v2-dark); }
@media (max-width: 980px) {
  .darkband .overlay-h { position: static; margin-bottom: 24px; }
  .darkband-stage { flex-direction: column; }
  .darkband-media { width: 100%; }
  .darkband .address { position: static; text-align: left; margin-top: 24px; }
}

/* ---------- Centres table list ---------- */
.projects { padding: clamp(60px, 8vw, 110px) clamp(15px, 2.625vw, 48px); }
.projects .head-row { padding-bottom: clamp(36px, 5vw, 64px); }
.projects .statement-mini { text-align: center; padding: 0 0 clamp(70px, 9vw, 130px); }
.projects .statement-mini .headline { font-size: clamp(1.9rem, 3.6vw, 3.2rem); max-width: 24ch; margin: 0 auto 36px; }
.proj-list { max-width: 1320px; margin: 0 auto; border-top: 1px solid var(--v2-line-soft); }
.proj-row {
  display: grid; grid-template-columns: 240px 1fr 40px; align-items: center; gap: 24px;
  padding: 22px 4px; border-bottom: 1px solid var(--v2-line-soft);
  text-decoration: none; color: var(--v2-ink); cursor: pointer;
  transition: background .2s;
}
.proj-row:hover { background: rgba(35, 42, 35, .035); }
.proj-row .nm { font-size: clamp(1.15rem, 1.6vw, 1.45rem); font-weight: 400; letter-spacing: -0.005em; color: rgba(35,42,35,.78); }
.proj-row:hover .nm { color: var(--v2-ink); }
.proj-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  font-family: var(--v2-label-fallback); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(35, 42, 35, .6);
  border: 1px solid var(--v2-line);
  border-radius: 999px; padding: 6px 13px; white-space: nowrap;
}
.proj-row .arr {
  width: 17px; height: 17px; justify-self: end; opacity: .5;
  background: currentColor;
  -webkit-mask: var(--bp-paw) center / contain no-repeat;
  mask: var(--bp-paw) center / contain no-repeat;
  transition: transform .25s var(--ease-standard), opacity .2s;
}
.proj-row:hover .arr { transform: translateX(5px); opacity: 1; }
@media (max-width: 880px) { .proj-row { grid-template-columns: 1fr 40px; } .proj-tags { grid-column: 1 / -1; } }

/* collage under list */
.proj-collage {
  max-width: 1320px; margin: clamp(70px, 9vw, 120px) auto 0;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(16px, 2vw, 28px);
  align-items: start;
}
.proj-collage .col-a { margin-top: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; gap: clamp(16px, 2vw, 28px); }
.proj-collage image-slot { width: 100%; display: block; background: var(--bp-warm-taupe); }
.proj-collage .b1 image-slot { background: var(--bp-dusty-olive); }
.proj-collage .a1 image-slot { height: clamp(240px, 26vw, 380px); }
.proj-collage .a2 image-slot { height: clamp(380px, 44vw, 640px); }
.proj-collage .b1 image-slot { height: clamp(520px, 60vw, 880px); }
@media (max-width: 880px) { .proj-collage { grid-template-columns: 1fr; } .proj-collage .col-a { margin-top: 0; } }

/* ---------- Client stories ---------- */
.stories { padding: clamp(60px, 8vw, 110px) clamp(15px, 2.625vw, 48px) clamp(110px, 14vw, 190px); }
.stories .head-row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding-bottom: clamp(48px, 7vw, 90px);
}
.stories .count { font-family: var(--v2-label-fallback); font-size:var(--t-label); letter-spacing: .16em; justify-self: center; color: rgba(35,42,35,.6); }
.stories .navs { justify-self: end; display: flex; gap: 8px; }
.sq-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--v2-line); background: transparent; color: var(--v2-ink);
  font-size:var(--t-ui-15); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.sq-btn:hover { background: var(--v2-dark); color: var(--v2-cream); border-color: var(--v2-dark); }
.sq-btn::before {
  content: "";
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: var(--bp-paw) center / contain no-repeat;
  mask: var(--bp-paw) center / contain no-repeat;
}
.sq-btn.prev::before { transform: rotate(-90deg); }
.sq-btn.next::before { transform: rotate(90deg); }
.stories-stage { position: relative; max-width: 1320px; margin: 0 auto; min-height: clamp(300px, 30vw, 420px); }
.story {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 150px 1fr; gap: clamp(28px, 5vw, 80px);
  align-items: start; opacity: 0; visibility: hidden;
}
.story .pic image-slot { width: 150px; height: 170px; display: block; filter: grayscale(1); background: var(--bp-warm-taupe); }
.story .q {
  font-size: clamp(1.6rem, 3vw, 2.7rem); font-weight: 350;
  line-height: 1.22; letter-spacing: -0.01em; margin: 0; max-width: 26ch;
  text-indent: -0.45em;
}
.story .who { margin-top: 34px; font-size:var(--t-ui-16); }
.story .who .role {
  display: block; margin-top: 6px;
  font-family: var(--v2-label-fallback); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(35,42,35,.55);
}
.stories .score {
  max-width: 1320px; margin: clamp(36px, 4vw, 56px) auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.stories .trust-inline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--v2-label-fallback); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(35, 42, 35, .55);
}
.stories .trust-inline .num { font-family: var(--v2-sans); font-size: 18px; letter-spacing: 0; color: var(--v2-ink); }
.stories .trust-inline .stars { letter-spacing: 2px; color: var(--bp-burnt-orange); }
@media (max-width: 760px) { .story { grid-template-columns: 1fr; } .story .pic { display: none; } }

/* ---------- CTA outlined box ---------- */
.cta2-wrap { padding: 0 clamp(15px, 2.625vw, 48px) clamp(80px, 10vw, 140px); }
.cta2 {
  position: relative; max-width: 1320px; margin: 0 auto;
  border: 1px solid var(--v2-line);
  padding: clamp(48px, 7vw, 110px) clamp(24px, 5vw, 80px);
  overflow: clip;
}
.cta2 .headline { font-size: clamp(2rem, 4vw, 3.6rem); max-width: 18ch; margin: 26px 0 44px; }
.cta2 .actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta2 .diag {
  position: absolute; right: 0; bottom: 0;
  width: clamp(160px, 22vw, 320px); height: clamp(120px, 16vw, 230px);
  pointer-events: none; overflow: hidden;
}
.cta2 .diag::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    transparent 0 10px,
    color-mix(in srgb, var(--v2-ink) 26%, transparent) 10px 11px);
  -webkit-mask: linear-gradient(to top left, #000, transparent 76%);
  mask: linear-gradient(to top left, #000, transparent 76%);
}
.cta2 .diag::after {
  content: ""; position: absolute; right: 0; bottom: 0;
  width: 64px; height: 64px;
  background: var(--bp-paw) bottom right / 26px no-repeat;
  opacity: .14;
}

/* The footer (sticky image reveal) lives in site/footer.css; nav chrome in site/nav.css */

/* ---------- Parents' Guide — scroll-to-expand (small window opens to full bleed) ---------- */
.guide-expand {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--v2-cream);
  display: flex; align-items: center; justify-content: center;
}
.ge-window {
  position: relative;
  width: clamp(220px, 26vw, 340px);
  height: clamp(300px, 58vh, 460px);
  border-radius: 0;
  overflow: hidden;
  will-change: width, height, border-radius;
  box-shadow: 0 50px 100px rgba(15, 19, 14, .30);
}
.ge-window image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
  background: var(--bp-warm-taupe);
}
/* production cover photo (10 Jul: the printed guide mockup). Centred in the
   small window; guide-expand.js slides it right as the window opens so the
   copy owns the left concrete flank on wide screens. */
.ge-window .ge-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: 50% 50%;
}
.ge-content {
  position: absolute; inset: 0; z-index: 3;
  display: grid; grid-template-rows: auto 1fr;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 4vw, 64px);
  opacity: 0;
  pointer-events: none;            /* let drops reach the image slot below */
}
/* the cover stays centred and speaks for itself at every width (10 Jul: the
   right-to-left slide retired) - the label sits quiet in the ink corner, the
   one action rides low; the headline stays in the document for readers and
   search but never paints over the printed cover */
.ge-content .eyebrow { color: var(--v2-ink); justify-self: start; align-self: start; }
.ge-mid {
  align-self: end; justify-self: center;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(20px, 2.2vw, 30px);
}
.ge-headline {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; margin: -1px;
}
.ge-mid .btn-block {
  pointer-events: auto;
  background: var(--v2-cream); border-color: var(--v2-cream); color: var(--v2-dark);
}
.ge-mid .btn-block:hover { background: #fff; border-color: #fff; }

/* ===================== About Us — advocates for the rights of children ===================== */
.aboutus {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 100svh;
  background: var(--v2-dark);
  color: var(--v2-cream);
}
.aboutus-media { position: relative; overflow: hidden; min-height: clamp(360px, 60vh, 760px); }
.aboutus-media image-slot { width: 100%; height: 100%; display: block; background: color-mix(in srgb, var(--v2-dark) 86%, #000); }
.aboutus-body {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 2.6vh, 30px);
  padding: clamp(56px, 6vw, 116px) clamp(32px, 5vw, 96px);
  max-width: 720px;
}
.aboutus-body .eyebrow { color: color-mix(in srgb, var(--v2-cream) 62%, transparent); }
.aboutus-h {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.02; letter-spacing: -.02em; margin: 0;
  color: var(--v2-cream); max-width: 16ch; text-wrap: balance;
}
.aboutus-copy { display: flex; flex-direction: column; gap: 16px; max-width: 50ch; }
.aboutus-copy p {
  margin: 0;
  font-size: var(--t-body-sm); line-height: 1.6;
  color: color-mix(in srgb, var(--v2-cream) 78%, transparent);
}
.aboutus-found {
  list-style: none; margin: 4px 0 0; padding: clamp(22px, 2.6vw, 30px) 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
  width: 100%; max-width: 50ch;
  border-top: 1px solid color-mix(in srgb, var(--v2-cream) 18%, transparent);
}
.aboutus-found li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: clamp(.98rem, 1.1vw, 1.1rem); line-height: 1.3;
  color: color-mix(in srgb, var(--v2-cream) 90%, transparent);
}
.aboutus-found .fn {
  font-family: var(--v2-label-fallback); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; line-height: 1.6;
  color: color-mix(in srgb, var(--v2-cream) 48%, transparent);
  flex: none;
}
.aboutus-body .btn-block { margin-top: clamp(8px, 1.4vh, 16px); }

/* Light variant — cream background, dark ink (clean; no inline overrides) */
.aboutus.is-light { background: var(--v2-cream); color: var(--v2-ink); }
.aboutus.is-light .aboutus-h { color: var(--v2-ink); }
.aboutus.is-light .aboutus-found li { color: color-mix(in srgb, var(--v2-ink) 92%, transparent); }
.aboutus.is-light .aboutus-body .eyebrow { color: color-mix(in srgb, var(--v2-ink) 58%, transparent); }
.aboutus.is-light .aboutus-copy p { color: color-mix(in srgb, var(--v2-ink) 78%, transparent); }
.aboutus.is-light .aboutus-found { border-top-color: var(--v2-line); }
.aboutus.is-light .aboutus-found .fn { color: var(--bp-burnt-orange); }
.aboutus.is-light .aboutus-media image-slot { background: var(--bp-dusty-olive); }
.aboutus.is-light .aboutus-body .btn-block {
  background: var(--tw-btn, var(--v2-dark)); border-color: var(--tw-btn, var(--v2-dark)); color: var(--v2-cream);
}

/* Layout tweak: image on the right */
body[data-aboutus-layout="right"] .aboutus { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); }
body[data-aboutus-layout="right"] .aboutus-media { order: 2; }
body[data-aboutus-layout="right"] .aboutus-body { order: 1; align-items: flex-start; }

@media (max-width: 920px) {
  .aboutus { grid-template-columns: 1fr; }
  .aboutus-media { min-height: clamp(300px, 52vh, 460px); }
  body[data-aboutus-layout="right"] .aboutus-media { order: 0; }
  body[data-aboutus-layout="right"] .aboutus-body { order: 0; }
  .aboutus-body { padding-block: clamp(44px, 9vw, 64px); }
}
@media (max-width: 560px) {
  .aboutus-found { grid-template-columns: 1fr; }
}

/* ---------- Testimonials build-out: trust band + per-quote rating ---------- */
.stories-trust {
  max-width: 1320px; margin: 0 auto clamp(44px, 6vw, 84px);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(28px, 5vw, 80px); flex-wrap: wrap;
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--v2-line-soft);
}
.trust-score { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.trust-score .num {
  font-family: var(--tw-font-head, var(--v2-sans));
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; line-height: .85;
  letter-spacing: -0.02em; color: var(--v2-ink);
}
.trust-score .stars { font-size: 19px; letter-spacing: 3px; color: var(--bp-burnt-orange); transform: translateY(-4px); }
.trust-score .src {
  font-family: var(--v2-label-fallback); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; line-height: 1.7;
  color: rgba(35, 42, 35, .55); align-self: flex-end;
}
.trust-lead {
  font-size: clamp(1.15rem, 1.9vw, 1.6rem); line-height: 1.34; max-width: 26ch;
  margin: 0; color: rgba(35, 42, 35, .82); text-wrap: balance;
}
.story .stars { color: var(--bp-burnt-orange); font-size:var(--t-ui-15); letter-spacing: 2px; margin-bottom: 18px; }
@media (max-width: 760px) { .stories-trust { align-items: flex-start; } }

/* ============================================================
   Mobile / tablet refinements
   ============================================================ */

/* Hero stage-2 — at desktop the long mono label and the paragraph sit
   on opposite sides of a space-between row. Below ~1024px that row
   crushes the paragraph into a sliver and pushes it off-screen, so
   stack them and drop the label's large left margin. */
@media (max-width: 1024px) {
  .hero2-b .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero2-b .row .eyebrow {
    margin-left: 0;
    white-space: normal;
    line-height: 1.5;
  }
  .hero2-b .para { max-width: 62ch; width: min(60ch, 84vw); }
}

/* Phone — topbar clearance rules live in site/nav.css */
@media (max-width: 520px) {
  .hero2 .h { padding-inline: 8px; }
}
