/* =========================================================================
   Wealth AI Push — "The Push Desk" full-light design system
   Porcelain surfaces · left brand spine · overlay mobile menu
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  --porcelain: #F5F6F8;
  --cloud: #E3E7ED;
  --ink: #11151C;
  --saffron: #E09A1A;
  --teal: #1F8A70;
  --mute: #7A746C;

  --link-on-light: #9A6A12;
  --link-on-cloud: #A67414;

  --spine: 56px;
  --bar: 64px;

  --radius: 8px;
  --hair: 1px solid rgba(17, 21, 28, 0.16);
  --hair-strong: 1px solid rgba(17, 21, 28, 0.28);

  --ff-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --ff-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --wrap: 1180px;
  --gap: clamp(1.2rem, 3vw, 2.4rem);
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 0.5em; color: var(--ink); }
h1 { font-weight: 800; }
p { margin: 0 0 1.1em; }
a { color: var(--link-on-light); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--saffron); }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }
strong { font-weight: 600; }

/* ---- Accessibility helpers ------------------------------------------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--ink); color: var(--porcelain);
  padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius) 0;
  font-family: var(--ff-mono); font-size: 0.82rem;
}
.skip-link:focus { left: 0; color: var(--saffron); }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }
.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;
}

/* ---- Mono / label utilities ------------------------------------------ */
.mono { font-family: var(--ff-mono); font-weight: 500; letter-spacing: 0.06em; }
.eyebrow {
  font-family: var(--ff-mono); font-weight: 500; font-size: 0.74rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
  display: inline-flex; align-items: center; gap: 0.55rem; margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--saffron); display: inline-block; }
.lane-num { font-family: var(--ff-mono); font-weight: 500; color: var(--saffron); letter-spacing: 0.08em; }

/* ---- Desk-grid texture ------------------------------------------------ */
.desk-grid {
  background-image:
    linear-gradient(rgba(17, 21, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 28, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* =========================================================================
   Brand spine (fixed left, desktop)
   ========================================================================= */
.brand-spine {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--spine);
  background: var(--porcelain); border-right: var(--hair-strong);
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; padding: 1rem 0; z-index: 1200;
}
.brand-spine .tick { width: 14px; height: 3px; flex: none; }
.brand-spine .tick-top { background: var(--saffron); }
.brand-spine .tick-bottom { background: var(--teal); }
.brand-spine .spine-word {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--ff-mono); font-weight: 500; font-size: 0.76rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.brand-spine .spine-word:hover { color: var(--saffron); }

/* =========================================================================
   Top utility bar (sticky, right of spine)
   ========================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 1100;
  height: var(--bar);
  margin-left: var(--spine);
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: var(--hair);
  display: flex; align-items: center;
}
.topbar-inner {
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand-logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem;
  letter-spacing: -0.01em; color: var(--ink); text-decoration: none;
}
.brand-logo .mark {
  width: 26px; height: 26px; border-radius: 6px; background: var(--ink);
  color: var(--saffron); display: grid; place-items: center;
  font-family: var(--ff-mono); font-weight: 700; font-size: 0.78rem; letter-spacing: 0;
}
.brand-logo .brand-sub { font-family: var(--ff-mono); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--mute); text-transform: uppercase; }

.mainnav { display: flex; align-items: center; gap: 1.35rem; }
.mainnav a {
  font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem;
  color: var(--ink); text-decoration: none; padding: 0.35rem 0;
  position: relative;
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform 0.18s ease;
}
.mainnav a:hover { color: var(--ink); }
.mainnav a:hover::after { transform: scaleX(1); }
.mainnav a[aria-current="page"] { color: var(--ink); }
.mainnav a[aria-current="page"]::after { transform: scaleX(1); }

.topbar-cta { display: inline-flex; align-items: center; gap: 0.8rem; }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none; border: var(--hair-strong); background: var(--porcelain);
  width: 44px; height: 40px; border-radius: var(--radius); cursor: pointer;
  padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); display: block; transition: transform 0.2s, opacity 0.2s; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.92rem;
  padding: 0.7rem 1.25rem; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--saffron); color: var(--ink); border-color: var(--saffron); }
.btn-primary:hover { background: #cf8c13; color: var(--ink); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--porcelain); }
.btn-ghost-light { background: transparent; color: var(--porcelain); border-color: rgba(245,246,248,0.5); }
.btn-ghost-light:hover { background: var(--porcelain); color: var(--ink); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.82rem; }

/* =========================================================================
   Layout: main + sections + surfaces
   ========================================================================= */
main { margin-left: var(--spine); display: block; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gap); }
.narrow { max-width: 760px; }

.surface-porcelain { background: var(--porcelain); color: var(--ink); }
.surface-cloud { background: var(--cloud); color: var(--ink); }
.surface-cloud a { color: var(--link-on-cloud); }
.surface-ink { background: var(--ink); color: var(--porcelain); }
.surface-ink h1, .surface-ink h2, .surface-ink h3, .surface-ink h4 { color: var(--porcelain); }
.surface-ink a { color: var(--saffron); }
.surface-saffron { background: var(--saffron); color: var(--ink); }
.surface-saffron h1, .surface-saffron h2, .surface-saffron h3 { color: var(--ink); }

/* Section header block */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section-head p { color: var(--mute); font-size: 1.06rem; }
.surface-ink .section-head p { color: rgba(245,246,248,0.72); }

/* =========================================================================
   Hero — "The Push Desk"
   ========================================================================= */
.hero { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--bar) + 2rem) 0 3rem; position: relative; }
.hero-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-bottom: 0.9rem; margin-bottom: 2.4rem;
  border-bottom: var(--hair-strong); position: relative;
}
.hero-top::before, .hero-top::after {
  content: ""; position: absolute; bottom: -1px; width: 10px; height: 10px;
  border-bottom: 2px solid var(--saffron);
}
.hero-top::before { left: 0; border-left: 2px solid var(--saffron); }
.hero-top::after { right: 0; border-right: 2px solid var(--saffron); }
.hero-top span { font-family: var(--ff-mono); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.hero h1 {
  font-size: clamp(2.4rem, 6.6vw, 5rem); font-weight: 800; letter-spacing: -0.02em;
  max-width: 15ch; margin-bottom: 1.6rem;
}
.hero h1 .accent { color: var(--saffron); }
.hero-standfirst { font-size: clamp(1.05rem, 1.9vw, 1.28rem); max-width: 60ch; color: var(--ink); }

/* saffron baseline with stage ticks */
.push-baseline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin: 1.8rem 0 2.2rem;
  border-top: 3px solid var(--saffron); padding-top: 0;
}
.push-baseline .stage {
  font-family: var(--ff-mono); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.08em;
  padding: 0.8rem 1.4rem 0.8rem 1rem; position: relative; color: var(--ink);
}
.push-baseline .stage::before { content: ""; position: absolute; top: -3px; left: 0; width: 3px; height: 12px; background: var(--saffron); }
.push-baseline .stage:first-child { padding-left: 0.4rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-trust { font-family: var(--ff-mono); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--mute); }

/* Framed photo plate */
.plate {
  position: relative; margin-top: 2.6rem; border: 1px solid rgba(17,21,28,0.4); padding: 6px; background: var(--porcelain);
}
.plate::before, .plate::after, .plate .corner {
  content: ""; position: absolute; width: 16px; height: 16px; z-index: 2;
}
.plate::before { top: -2px; left: -2px; border-top: 3px solid var(--saffron); border-left: 3px solid var(--saffron); }
.plate::after { top: -2px; right: -2px; border-top: 3px solid var(--saffron); border-right: 3px solid var(--saffron); }
.plate .corner-bl { bottom: -2px; left: -2px; border-bottom: 3px solid var(--saffron); border-left: 3px solid var(--saffron); position: absolute; width: 16px; height: 16px; }
.plate .corner-br { bottom: -2px; right: -2px; border-bottom: 3px solid var(--saffron); border-right: 3px solid var(--saffron); position: absolute; width: 16px; height: 16px; }
.plate img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.plate figcaption { font-family: var(--ff-mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--mute); padding: 0.6rem 0.2rem 0.2rem; text-transform: uppercase; }

/* =========================================================================
   Cards / grids
   ========================================================================= */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* framed porcelain card with saffron corner ticks */
.card {
  position: relative; background: var(--porcelain); border: var(--hair-strong);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
}
.card::before {
  content: ""; position: absolute; top: -1px; left: -1px; width: 14px; height: 14px;
  border-top: 3px solid var(--saffron); border-left: 3px solid var(--saffron);
  border-top-left-radius: var(--radius);
}
.card h3 { font-size: 1.2rem; }
.card .card-idx { font-family: var(--ff-mono); font-weight: 500; font-size: 0.76rem; color: var(--saffron); letter-spacing: 0.1em; margin-bottom: 0.6rem; display: block; }
.card p:last-child { margin-bottom: 0; }
.card-cloud { background: var(--cloud); }

/* metric trio */
.metric { border-top: 3px solid var(--saffron); padding-top: 1rem; }
.metric .num { font-family: var(--ff-mono); font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); line-height: 1; }
.metric .label { display: block; margin-top: 0.5rem; font-size: 0.95rem; color: var(--mute); }

/* stage blocks */
.stage-card { position: relative; padding: 1.4rem 0 1.4rem 1.6rem; border-left: 3px solid var(--saffron); }
.stage-card .stage-tag { font-family: var(--ff-mono); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.14em; color: var(--saffron); text-transform: uppercase; }
.stage-card h3 { font-size: 1.25rem; margin-top: 0.4rem; }

/* programme lane list (saffron lane) */
.lane {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.2rem;
  padding: 1.5rem 0; border-bottom: var(--hair);
}
.lane:last-child { border-bottom: none; }
.lane .lane-tag { font-family: var(--ff-mono); font-weight: 500; color: var(--saffron); font-size: 0.86rem; letter-spacing: 0.08em; white-space: nowrap; }
.lane h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.lane .lane-meta { font-family: var(--ff-mono); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--mute); margin-top: 0.7rem; }

/* story cards */
.story { border: var(--hair-strong); border-radius: var(--radius); padding: 1.7rem; background: var(--porcelain); position: relative; }
.story::before { content: ""; position: absolute; top: -1px; right: -1px; width: 14px; height: 14px; border-top: 3px solid var(--teal); border-right: 3px solid var(--teal); border-top-right-radius: var(--radius); }
.story .story-role { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem; display: block; }

/* image with frame utility */
.framed { position: relative; border: 1px solid rgba(17,21,28,0.4); padding: 5px; background: var(--porcelain); }
.framed::before { content: ""; position: absolute; top: -2px; left: -2px; width: 14px; height: 14px; border-top: 3px solid var(--saffron); border-left: 3px solid var(--saffron); z-index: 2; }
.framed::after { content: ""; position: absolute; bottom: -2px; right: -2px; width: 14px; height: 14px; border-bottom: 3px solid var(--saffron); border-right: 3px solid var(--saffron); z-index: 2; }
.framed img { width: 100%; object-fit: cover; }

/* media split */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.media-split.reverse > :first-child { order: 2; }

/* mini FAQ / accordion-ish */
.qa { border-top: var(--hair); padding: 1.3rem 0; }
.qa:last-child { border-bottom: var(--hair); }
.qa h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.qa p:last-child { margin-bottom: 0; }

/* definition rows */
.deflist { display: grid; gap: 0; }
.deflist .row { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: var(--hair); }
.deflist .row dt { font-family: var(--ff-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--mute); margin: 0; }
.deflist .row dd { margin: 0; }

/* pill / tag */
.pill { display: inline-block; font-family: var(--ff-mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border: var(--hair); border-radius: 100px; color: var(--mute); margin: 0 0.3rem 0.3rem 0; }

/* =========================================================================
   Forms
   ========================================================================= */
.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-field .req { color: var(--saffron); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  background: var(--porcelain); border: var(--hair-strong); border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--saffron); outline-offset: 1px; border-color: var(--saffron); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-row { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 1.4rem; }
.consent-row input { width: auto; margin-top: 0.35rem; }
.consent-row label { font-family: var(--ff-body); font-weight: 400; font-size: 0.92rem; color: var(--mute); }
.form-note { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--mute); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { margin-left: var(--spine); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--gap); padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.footer-main h4 { font-family: var(--ff-mono); font-weight: 500; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron); margin-bottom: 1.1rem; }
.footer-main ul { list-style: none; padding: 0; margin: 0; }
.footer-main li { margin-bottom: 0.6rem; }
.footer-main a { color: rgba(245,246,248,0.82); text-decoration: none; font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; }
.footer-main a:hover { color: var(--saffron); }
.footer-story p { color: rgba(245,246,248,0.7); font-size: 0.95rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; color: var(--porcelain); margin-bottom: 1rem; }
.footer-brand .mark { width: 28px; height: 28px; border-radius: 6px; background: var(--saffron); color: var(--ink); display: grid; place-items: center; font-family: var(--ff-mono); font-weight: 700; font-size: 0.82rem; }
.footer-strip {
  border-top: 1px solid rgba(245,246,248,0.16); padding: 1.4rem 0 2.4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center;
  font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: rgba(245,246,248,0.6);
}
.footer-strip a { color: rgba(245,246,248,0.7); text-decoration: none; }
.footer-strip a:hover { color: var(--saffron); }
.footer-strip .disclaimer { flex-basis: 100%; color: rgba(245,246,248,0.5); line-height: 1.5; }

/* =========================================================================
   Overlay mobile menu
   ========================================================================= */
.nav-overlay {
  position: fixed; inset: 0; z-index: 1500; background: var(--porcelain);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.2rem; opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay a {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
}
.nav-overlay a:hover, .nav-overlay a[aria-current="page"] { color: var(--saffron); }
.nav-overlay .overlay-close {
  position: absolute; top: 1rem; right: 1.2rem; width: 46px; height: 46px;
  border: var(--hair-strong); background: var(--porcelain); border-radius: var(--radius);
  cursor: pointer; font-size: 1.4rem; color: var(--ink); display: grid; place-items: center;
}
.nav-overlay .overlay-cta { margin-top: 1rem; }
.nav-overlay .overlay-foot { position: absolute; bottom: 1.6rem; font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--mute); }
body.menu-open { overflow: hidden; }

/* =========================================================================
   Cookie banner
   ========================================================================= */
.cookie-banner {
  position: fixed; left: calc(var(--spine) + 1rem); right: 1rem; bottom: 1rem; z-index: 1400;
  max-width: 560px; background: var(--ink); color: var(--porcelain);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; border-left: 4px solid var(--saffron);
  box-shadow: 0 12px 40px rgba(17,21,28,0.28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h4 { color: var(--porcelain); font-size: 1.02rem; margin-bottom: 0.4rem; }
.cookie-banner p { color: rgba(245,246,248,0.78); font-size: 0.88rem; margin-bottom: 1rem; }
.cookie-banner a { color: var(--saffron); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-actions .btn { font-size: 0.82rem; padding: 0.55rem 1rem; }

/* =========================================================================
   Fade-up animation (NOTE: .in-view is the reveal class for this site)
   ========================================================================= */
.js .fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .fade-up.in-view { opacity: 1; transform: translateY(0); }
.js .fade-up.d1 { transition-delay: 0.08s; }
.js .fade-up.d2 { transition-delay: 0.16s; }
.js .fade-up.d3 { transition-delay: 0.24s; }

/* =========================================================================
   Page hero (interior pages)
   ========================================================================= */
.page-hero { padding: calc(var(--bar) + 1.5rem) 0 2.5rem; border-bottom: var(--hair); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; }
.page-hero p { font-size: 1.12rem; color: var(--mute); max-width: 62ch; }
.breadcrumb { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 1rem; }
.breadcrumb a { color: var(--mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--saffron); }

/* prose blocks for legal pages */
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.prose { max-width: 800px; }
.prose ul { padding-left: 1.3rem; }

/* utility spacing */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.lead { font-size: 1.16rem; color: var(--ink); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .media-split { grid-template-columns: 1fr; }
  .media-split.reverse > :first-child { order: 0; }
}

@media (max-width: 768px) {
  :root { --spine: 0px; }
  .brand-spine { display: none; }
  .topbar { margin-left: 0; }
  main { margin-left: 0; }
  .site-footer { margin-left: 0; }
  .mainnav, .topbar-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .cookie-banner { left: 1rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .lane { grid-template-columns: 1fr; gap: 0.5rem; }
  .deflist .row { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  body { font-size: 1rem; }
}
