/* =========================================================================
   BA Legal — design system
   Premium editorial neo-minimalism. Navy-anchored, violet as a rare 5–10%
   signature accent, warm taupe/cream base. Fraunces (display serif) +
   Hanken Grotesk (body). WCAG AA. Progressive enhancement only.
   Official 2024 palette: navy #27293D · violet #535090 · taupe #ADA29C.
   ========================================================================= */

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/newsreader.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/fonts/hanken-grotesk.woff2') format('woff2');
}

:root {
  /* Brand palette (official) */
  --navy: #27293d;
  --navy-deep: #1d1f30;
  --blue: #0e2841;
  --violet: #535090;
  --violet-bright: #5f5ba6;
  --lavender: #9e98bf;
  --grey-violet: #757382;
  --taupe: #ada29c;
  --stone: #d1cac3;
  --mist: #e8e8e8;
  --cream: #f4f1ee;
  --cream-deep: #ece7e1;
  --paper: #ffffff;

  /* Semantic */
  --ink: #23253a;
  --ink-soft: #4a4c60;
  --ink-mute: #555768; /* AA: ~6.3:1 on cream (was #6c6e80 ≈ 4.46:1, just under) */
  --line: #e0dad3;
  --line-strong: #cfc7bf;
  --bg: var(--cream);
  --accent: var(--violet);

  /* Type */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fs-eyebrow: 0.78rem;
  --fs-body: 1.125rem;
  --fs-lead: clamp(1.2rem, 1.6vw, 1.4rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-h2: clamp(1.9rem, 4vw, 2.9rem);
  --fs-h1: clamp(2.5rem, 6.2vw, 4.6rem);
  --fs-display: clamp(3rem, 8vw, 6rem);

  /* Space + shape */
  --container: 1180px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 18px;
  --shadow-sm: 0 1px 2px rgba(39, 41, 61, 0.06), 0 2px 8px rgba(39, 41, 61, 0.05);
  --shadow: 0 10px 30px -12px rgba(39, 41, 61, 0.22), 0 4px 10px -6px rgba(39, 41, 61, 0.12);
  --shadow-lg: 0 30px 70px -30px rgba(29, 31, 48, 0.42);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--violet); color: #fff; }
:focus-visible { outline: 2.5px solid var(--violet); outline-offset: 3px; border-radius: 2px; }

/* --------------------------------------------------------------- type */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 420; line-height: 1.08; letter-spacing: -0.012em; color: var(--navy); font-optical-sizing: auto; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
p { max-width: 68ch; }
strong { font-weight: 600; }
.serif { font-family: var(--serif); }
.balance { text-wrap: balance; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: '';
  width: 1.8em;
  height: 1px;
  background: var(--violet);
  opacity: 0.7;
}
.eyebrow--center::before { display: none; }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-mute); }
.kicker-num { font-family: var(--serif); font-size: 0.95rem; color: var(--violet); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 52ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .lead { margin-top: 1rem; }

/* Colour bands */
.band-navy { background: var(--navy); color: #efeef4; }
.band-navy h1, .band-navy h2, .band-navy h3, .band-navy h4 { color: #fff; }
.band-navy .lead, .band-navy p { color: rgba(239, 238, 244, 0.82); }
.band-navy .eyebrow { color: var(--lavender); }
.band-navy .eyebrow::before { background: var(--lavender); }
.band-deep { background: var(--navy-deep); color: #e8e7ef; }
.band-deep h1, .band-deep h2, .band-deep h3, .band-deep h4 { color: #fff; }
.band-deep .lead, .band-deep p { color: rgba(255,255,255,0.86); }
.band-deep .eyebrow { color: var(--lavender); }
.band-deep .eyebrow::before { background: var(--lavender); }
.band-paper { background: var(--paper); }
.band-cream { background: var(--cream); }

.rule { height: 1px; background: var(--line); border: 0; }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(39,41,61,0.5); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav a.navlink {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.005em;
  position: relative; padding-block: 0.4rem; transition: color 0.2s var(--ease);
}
.nav a.navlink::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--violet); transition: right 0.28s var(--ease);
}
.nav a.navlink:hover { color: var(--navy); }
.nav a.navlink:hover::after, .nav a.navlink[aria-current='page']::after { right: 0; }
.nav a.navlink[aria-current='page'] { color: var(--navy); }

.nav-toggle, .nav-burger { display: none; }

/* --------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--violet); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 600; font-size: 0.94rem; letter-spacing: 0.01em;
  padding: 0.78em 1.4em; border-radius: var(--radius); border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1.1; white-space: nowrap; text-align: center;
}
.btn:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 0.9em 1.6em; font-size: 1rem; }
.site-header .btn { padding: 0.6em 1.1em; font-size: 0.88rem; }
.form .btn { justify-self: start; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { --btn-fg: #fff; background: var(--navy); border-color: var(--navy); }
.btn--onnavy { --btn-bg: #fff; --btn-fg: var(--navy); }
.btn--onnavy:hover { --btn-bg: var(--violet); --btn-fg: #fff; background: var(--violet); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.calllink { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; color: var(--navy); }
.calllink svg { width: 1.05em; height: 1.05em; }
.calllink:hover { color: var(--violet); }
.band-navy .calllink, .band-deep .calllink { color: #fff; }
.band-navy .calllink:hover { color: var(--lavender); }

/* --------------------------------------------------------------- hero */
.hero { position: relative; background: var(--cream); overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem); }
.hero__watermark {
  position: absolute; top: 50%; right: -8%; transform: translateY(-50%);
  width: min(62%, 760px); opacity: 0.06; pointer-events: none; z-index: 0;
  filter: grayscale(0.1);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero h1 { font-size: var(--fs-h1); font-weight: 400; max-width: 15ch; }
.hero__sub { margin-top: 1.6rem; font-size: var(--fs-lead); color: var(--ink-soft); max-width: 46ch; }
.hero__sub b { color: var(--navy); font-weight: 600; }
.hero__cta { margin-top: 2.2rem; }
.hero__micro { margin-top: 1.3rem; font-size: 0.95rem; color: var(--ink-mute); display: flex; align-items: center; gap: 0.5rem; }
.hero__micro svg { width: 1.05rem; height: 1.05rem; color: var(--violet); flex-shrink: 0; }

/* Principal card */
.pcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.pcard__media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--navy); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.pcard__badge {
  position: absolute; left: 0; bottom: 0; background: var(--violet); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5em 1em; border-top-right-radius: var(--radius);
}
.pcard__body { padding: 1.3rem 1.4rem 1.5rem; }
.pcard__name { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.pcard__role { font-size: 0.92rem; color: var(--violet); font-weight: 600; margin-top: 0.15rem; }
.pcard__creds { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.55rem; }
.pcard__creds li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4; }
.pcard__creds li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; margin-top: 0.5em; border-radius: 50%; background: var(--violet); }

/* trust strip */
.trustbar { border-top: 1px solid var(--line); margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: clamp(1rem, 3vw, 2.5rem); align-items: center; }
.trustbar span { font-size: 0.86rem; color: var(--ink-mute); font-weight: 500; display: inline-flex; align-items: center; gap: 0.5em; }
.trustbar span svg { width: 1.05em; height: 1.05em; color: var(--violet); }

/* --------------------------------------------------------------- dual lever */
.levers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); margin-top: 2.5rem; }
.lever {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); position: relative;
}
.lever__no { font-family: var(--serif); font-size: 1rem; color: var(--lavender); font-variant-numeric: tabular-nums; }
.lever h3 { color: #fff; margin: 0.8rem 0 0.7rem; font-size: var(--fs-h3); }
.lever p { color: rgba(239,238,244,0.8); font-size: 1rem; }
.lever__list { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: 0.5rem; }
.lever__list li { font-size: 0.92rem; color: rgba(239,238,244,0.72); padding-left: 1.3rem; position: relative; }
.lever__list li::before { content: '—'; position: absolute; left: 0; color: var(--lavender); }
.lever-fuse { margin-top: 2.4rem; text-align: center; }
.lever-fuse p { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.35; color: #fff; max-width: 24ch; margin-inline: auto; font-weight: 380; }
.lever-fuse .microtrust { font-family: var(--sans); font-size: 0.98rem; color: var(--lavender); margin-top: 1rem; max-width: 52ch; margin-inline: auto; }

/* --------------------------------------------------------------- cards / practice */
.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 680px) { .grid-2 { grid-template-columns: 1fr; } }
.pa-card {
  display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2rem); text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative; overflow: hidden; min-height: 100%;
}
.pa-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--violet); transform: scaleY(0); transform-origin: top; transition: transform 0.3s var(--ease); }
.pa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.pa-card:hover::after { transform: scaleY(1); }
.pa-card--feature { background: var(--navy); border-color: var(--navy); }
.pa-card--feature .pa-card__title, .pa-card--feature .pa-card__blurb { color: #fff; }
.pa-card--feature .pa-card__blurb { color: rgba(239,238,244,0.78); }
.pa-card--feature .pa-card__more { color: var(--lavender); }
.pa-card__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet); }
.pa-card--feature .pa-card__tag { color: var(--lavender); }
.pa-card__title { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin: 0.7rem 0 0.6rem; line-height: 1.2; }
.pa-card__blurb { font-size: 0.96rem; color: var(--ink-soft); margin: 0; flex-grow: 1; }
.pa-card__more { margin-top: 1.2rem; font-weight: 600; font-size: 0.9rem; color: var(--violet); display: inline-flex; align-items: center; gap: 0.4em; }
.pa-card__more svg { width: 1em; height: 1em; transition: transform 0.2s var(--ease); }
.pa-card:hover .pa-card__more svg { transform: translateX(4px); }

/* feature split (why boutique / cost) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--narrow { grid-template-columns: 0.9fr 1.1fr; }
.featurelist { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.3rem; }
.featurelist li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.featurelist .fl-ico { width: 38px; height: 38px; border-radius: 50%; background: rgba(83,80,144,0.1); display: grid; place-items: center; color: var(--violet); flex-shrink: 0; }
.featurelist .fl-ico svg { width: 18px; height: 18px; }
.featurelist h4 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.featurelist p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.band-navy .featurelist .fl-ico { background: rgba(255,255,255,0.1); color: var(--lavender); }
.band-navy .featurelist h4 { color: #fff; }

/* stat row */
.statrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.stat { border-left: 2px solid var(--violet); padding-left: 1.1rem; }
.stat__n { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.band-navy .stat__n { color: #fff; }
.stat__l { font-size: 0.86rem; color: var(--ink-mute); margin-top: 0.5rem; }
.band-navy .stat__l { color: rgba(239,238,244,0.7); }

/* --------------------------------------------------------------- testimonial */
.quote { max-width: 40ch; }
.quote__mark { font-family: var(--serif); font-size: 5rem; line-height: 0.6; color: var(--violet); opacity: 0.4; height: 0.5em; display: block; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.32; font-weight: 360; color: #fff; max-width: 22ch; }
.band-cream .quote blockquote, .band-paper .quote blockquote { color: var(--navy); }
.quote__cite { margin-top: 1.6rem; font-family: var(--sans); font-size: 0.95rem; color: var(--lavender); font-style: normal; }
.band-cream .quote__cite { color: var(--violet); }
.disclaimer-note { font-size: 0.8rem; color: var(--ink-mute); margin-top: 1.5rem; max-width: 50ch; }
.band-navy .disclaimer-note { color: rgba(239,238,244,0.55); }

/* video player */
.vgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1rem, 2.5vw, 1.8rem); }
.vplayer { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); box-shadow: var(--shadow); aspect-ratio: 16 / 10; }
.vplayer__v { width: 100%; height: 100%; object-fit: cover; background: var(--navy); }
.vplayer__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vplayer.is-playing .vplayer__poster { display: none; }
.vplayer__play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(39,41,61,0.1), rgba(39,41,61,0.55)); border: 0; width: 100%; height: 100%; }
.vplayer.is-playing .vplayer__play { display: none; }
.vplayer__play .disc { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; transition: transform 0.2s var(--ease), background 0.2s var(--ease); }
.vplayer__play:hover .disc { transform: scale(1.08); background: #fff; }
.vplayer__play .disc svg { width: 26px; height: 26px; color: var(--violet); margin-left: 3px; }
.vplayer__label { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; color: #fff; font-weight: 600; font-size: 0.95rem; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.vplayer.is-playing .vplayer__label { display: none; }
.vplayer__soon { position: absolute; left: 1rem; top: 1rem; background: rgba(255,255,255,0.16); color: #fff; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4em 0.8em; border-radius: 100px; backdrop-filter: blur(4px); }

/* --------------------------------------------------------------- about */
.about-portrait { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--navy); }
.about-portrait img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; object-position: center 15%; }
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.cred { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.3rem; }
.cred__k { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.cred__v { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-top: 0.4rem; line-height: 1.3; }
.pillar { display: flex; flex-direction: column; }
.pillar__ico { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(83, 80, 144, 0.1); color: var(--violet); margin-bottom: 0.9rem; }
.pillar__ico svg { width: 18px; height: 18px; }

/* team */
.teamgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.tm { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.tm__media { aspect-ratio: 1/1; background: linear-gradient(135deg, var(--navy), var(--violet)); display: grid; place-items: center; }
.tm__media img { width: 100%; height: 100%; object-fit: cover; }
.tm__initials { font-family: var(--serif); font-size: 3rem; color: rgba(255,255,255,0.9); }
.tm__body { padding: 1.2rem 1.3rem 1.4rem; }
.tm__name { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); }
.tm__role { font-size: 0.9rem; color: var(--violet); font-weight: 600; margin-top: 0.2rem; }

/* --------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 0; max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ''; position: absolute; background: var(--violet); transition: transform 0.25s var(--ease); }
.faq summary .pm::before { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq summary .pm::after { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq details[open] summary .pm::before { transform: translateX(-50%) scaleY(0); }
.faq__a { padding: 0 0 1.5rem; color: var(--ink-soft); font-size: 1rem; max-width: 70ch; }
.faq__a p { margin-bottom: 0.8rem; }

/* --------------------------------------------------------------- insights / blog */
.postlist { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.postcard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2rem); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.postcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.postcard__date { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.postcard__title { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); line-height: 1.22; margin: 0.7rem 0 0.6rem; }
.postcard__excerpt { font-size: 0.96rem; color: var(--ink-soft); margin: 0 0 1.2rem; flex-grow: 1; }
.postmeta { font-size: 0.9rem; color: var(--violet); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 1.6rem; }
.postcard__tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-top: 0.5rem; }

/* --------------------------------------------------------------- answers (GEO) */
.answer-cluster { margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.answer-cluster__head { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); margin: 0 0 1.2rem; font-weight: 500; }
.answer-lede { border-left: 3px solid var(--violet); padding: 0.4rem 0 0.4rem 1.4rem; margin: 0 0 1.8rem; font-size: 1.18rem; line-height: 1.55; color: var(--ink); }
.answer-meta { font-size: 0.85rem; color: var(--ink-mute); margin: 1.6rem 0 0; }
.answer-related { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.answer-related h2 { font-size: 1.1rem; color: var(--navy); margin: 0 0 0.8rem; }
.answer-related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.answer-related a { color: var(--violet); text-decoration: none; font-weight: 600; }
.answer-related a:hover { text-decoration: underline; }
.disclaimer-box { margin-top: 2.4rem; padding: 1.2rem 1.4rem; background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius-lg); font-size: 0.86rem; line-height: 1.6; color: var(--ink-soft); }

/* --------------------------------------------------------------- contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.field label .req { color: var(--violet); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-strong); border-radius: var(--radius); padding: 0.85em 1em;
  width: 100%; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(83,80,144,0.15); }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; accent-color: var(--violet); flex-shrink: 0; }
.form__note { font-size: 0.82rem; color: var(--ink-mute); }
.form-error { background: #fbeaea; border: 1px solid #e8c9c9; border-radius: var(--radius); padding: 0.9rem 1.1rem; color: #8a1f1f; font-size: 0.92rem; margin-bottom: 0.3rem; }

.contact-details { display: grid; gap: 1.6rem; }
.cdetail { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.cdetail .ci { width: 42px; height: 42px; border-radius: 50%; background: rgba(83,80,144,0.1); color: var(--violet); display: grid; place-items: center; flex-shrink: 0; }
.cdetail .ci svg { width: 19px; height: 19px; }
.cdetail__k { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.cdetail__v { font-size: 1.05rem; color: var(--navy); font-weight: 500; margin-top: 0.15rem; }
.cdetail__v a:hover { color: var(--violet); }
.band-navy .cdetail .ci { background: rgba(255,255,255,0.1); color: var(--lavender); }
.band-navy .cdetail__k { color: rgba(239,238,244,0.6); }
.band-navy .cdetail__v { color: #fff; }

/* big CTA band */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 18ch; margin-inline: auto; }
.cta-final .lead { margin: 1.2rem auto 2rem; max-width: 50ch; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--navy-deep); color: rgba(239,238,244,0.7); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer-brand img { height: 54px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.95rem; color: rgba(239,238,244,0.62); max-width: 34ch; }
.footer-brand .tagline-mark { font-family: var(--serif); color: var(--lavender); font-size: 0.95rem; margin-top: 1rem; letter-spacing: 0.02em; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(239,238,244,0.5); margin-bottom: 1rem; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 0.94rem; color: rgba(239,238,244,0.75); margin-bottom: 0.6rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: baseline; }
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; color: rgba(239,238,244,0.5); }
.footer-bottom a:hover { color: #fff; }
.footer-legalnote { font-size: 0.78rem; color: rgba(239,238,244,0.42); margin-top: 1.2rem; max-width: 80ch; line-height: 1.6; }

/* --------------------------------------------------------------- mobile call bar */
.mobilebar { display: none; }

/* --------------------------------------------------------------- scroll progress */
#scrollbar { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: var(--violet); transform: scaleX(0); transform-origin: 0 50%; z-index: 100; }
@media (prefers-reduced-motion: reduce) { #scrollbar { display: none; } }

/* --------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d='1'] { transition-delay: 0.08s; }
.reveal[data-d='2'] { transition-delay: 0.16s; }
.reveal[data-d='3'] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --------------------------------------------------------------- utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; max-width: 68ch; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.8rem; }
.prose ul { margin: 0 0 1.1rem; padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; max-width: 66ch; }
.prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }

.pagehead { background: var(--navy); color: #fff; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.pagehead__wm { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: min(46%, 520px); opacity: 0.08; pointer-events: none; }
.pagehead .container { position: relative; z-index: 1; }
.pagehead h1 { color: #fff; max-width: 18ch; }
.pagehead .lead { color: rgba(239,238,244,0.82); margin-top: 1.2rem; }
.pagehead .eyebrow { color: var(--lavender); }
.pagehead .eyebrow::before { background: var(--lavender); }
.breadcrumb { font-size: 0.82rem; color: rgba(239,238,244,0.6); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: #fff; }

/* --------------------------------------------------------------- responsive */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .pcard { max-width: 420px; }
  .levers, .split, .split--narrow, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --fs-body: 1.06rem; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0.4rem; background: var(--cream); padding: 6rem 2rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform 0.32s var(--ease); margin: 0; }
  .nav a.navlink { font-size: 1.1rem; padding-block: 0.7rem; width: 100%; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 1rem; width: 100%; }
  .nav-toggle:checked ~ .nav { transform: translateX(0); }
  .nav-burger { display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto; z-index: 70; padding: 0.5rem; background: none; border: 0; }
  .nav-burger span { width: 26px; height: 2px; background: var(--navy); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .footer-top { grid-template-columns: 1fr; }
  body.has-mobilebar { padding-bottom: 68px; }
  .mobilebar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -16px rgba(39,41,61,0.4); }
  .mobilebar a { display: flex; align-items: center; justify-content: center; gap: 0.5em; padding: 1.05em; font-weight: 600; font-size: 0.95rem; }
  .mobilebar a svg { width: 1.1em; height: 1.1em; }
  .mobilebar a.mb-call { color: var(--navy); border-right: 1px solid var(--line); }
  .mobilebar a.mb-cta { background: var(--violet); color: #fff; }
  .hero__watermark { opacity: 0.05; width: 90%; }
  .quote blockquote { font-size: 1.5rem; }
}
.nav-scrim { display: none; }
@media (max-width: 720px) {
  .nav-toggle:checked ~ .nav-scrim { display: block; position: fixed; inset: 0; background: rgba(29,31,48,0.4); z-index: 55; }
}
