/* ============================================================
   PROPLE WEBSITE — shared stylesheet
   Tokens mirrored from ~/prople-design-system/tokens/ (v2 "premium/
   restrained": soft warm-neutral base, one terracotta accent, sage
   secondary). Plus Jakarta Sans w/ system fallback stack, no external
   font fetch (self-contained/offline-safe). No build step.
   ============================================================ */

:root {
  --neutral-0: #FFFFFF;
  --neutral-25: #FBFAF8;
  --neutral-50: #F6F5F2;
  --neutral-100: #EFEDE8;
  --neutral-150: #E4E1DA;
  --neutral-200: #D6D2C8;
  --neutral-300: #B8B3A6;
  --neutral-400: #928C7C;
  --neutral-500: #726C5E;
  --neutral-600: #565145;
  --neutral-700: #3E3A31;
  --neutral-800: #2A2723;
  --neutral-900: #1B1917;

  --accent-50:  #FBF0EA;
  --accent-100: #F4DBCB;
  --accent-300: #E0A47D;
  --accent-500: #C7683B;
  --accent-600: #AD5630;
  --accent-700: #8A4326;

  --sage-50:  #EEF1EC;
  --sage-300: #A9BCA2;
  --sage-500: #5F7A56;
  --sage-600: #4B6244;

  --bg-page: var(--neutral-50);
  --bg-canvas: var(--neutral-25);
  --bg-inverse: var(--neutral-900);
  --surface-card: var(--neutral-0);
  --surface-recessed: var(--neutral-100);

  --text-primary: var(--neutral-800);
  --text-secondary: var(--neutral-600);
  --text-tertiary: var(--neutral-400);
  --text-inverse: var(--neutral-25);

  --border-default: var(--neutral-150);
  --border-strong: var(--neutral-200);

  --font-display: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Consolas, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.55;
  --leading-relaxed: 1.7;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; --radius-xl: 28px; --radius-full: 999px;
  --border-thin: 1px;

  --shadow-sm: 0 1px 2px rgba(27,25,23,.04), 0 1px 1px rgba(27,25,23,.03);
  --shadow-card: 0 2px 8px rgba(27,25,23,.05), 0 1px 2px rgba(27,25,23,.04);
  --shadow-raised: 0 8px 24px rgba(27,25,23,.08), 0 2px 6px rgba(27,25,23,.05);

  --glass-bg: rgba(255,255,255,.72);
  --glass-border: rgba(255,255,255,.45);
  --glass-blur: 16px;

  --content-width-max: 1180px;
  --content-width-narrow: 720px;

  --ease-standard: cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: var(--leading-normal);
}
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--neutral-900); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { max-width: var(--content-width-max); margin: 0 auto; padding: 0 var(--space-6); }
section { padding: var(--space-20) 0; }
.section-narrow { max-width: var(--content-width-narrow); }

/* ---- eyebrow / pills ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--accent-600);
  background: var(--accent-50); border-radius: var(--radius-full);
  padding: 6px 16px; margin-bottom: var(--space-5);
}
.pill {
  display: inline-block; font-size: var(--text-sm); color: var(--text-secondary);
  background: var(--surface-recessed); border-radius: var(--radius-full);
  padding: 6px 14px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-size: var(--text-base); font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius-full); border: var(--border-thin) solid transparent;
  cursor: pointer; transition: background var(--ease-standard) 140ms, border-color var(--ease-standard) 140ms;
}
.btn-primary { background: var(--accent-500); color: #fff; }
.btn-primary:hover { background: var(--accent-600); }
.btn-secondary { background: transparent; color: var(--neutral-900); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-recessed); }
.btn-on-dark { background: var(--accent-500); color: #fff; }
.btn-on-dark:hover { background: var(--accent-600); }
.btn-ghost-on-dark { background: transparent; color: var(--neutral-25); border-color: rgba(255,255,255,.25); }
.btn-ghost-on-dark:hover { background: rgba(255,255,255,.08); }
.btn-row { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }

/* ---- nav ---- */
header.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: var(--border-thin) solid var(--border-default);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) var(--space-6); max-width: var(--content-width-max); margin: 0 auto; }
.wordmark { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: var(--neutral-900); }
.wordmark .dot { color: var(--accent-500); }
.nav-links { display: flex; gap: var(--space-8); }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary); }
.nav-links a:hover { color: var(--neutral-900); }
.nav-links a.active, .mobile-nav-panel a.active { color: var(--neutral-900); font-weight: 700; }
.nav-cta { font-size: var(--text-sm); padding: 10px 20px; }
.nav-links-wrap { display: flex; align-items: center; gap: var(--space-10); }

/* ---- mobile nav (CSS-only checkbox toggle, no JS) ---- */
.nav-toggle-checkbox { display: none; }
.nav-toggle-btn {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; cursor: pointer; border-radius: var(--radius-sm);
}
.nav-toggle-btn svg { width: 22px; height: 22px; color: var(--neutral-900); }
.mobile-nav-panel { display: none; flex-direction: column; padding: var(--space-2) var(--space-6) var(--space-5); }
.mobile-nav-panel a {
  padding: var(--space-3) 0; font-size: var(--text-md); color: var(--text-secondary);
  border-bottom: var(--border-thin) solid var(--border-default);
}
.mobile-nav-panel a:last-of-type { border-bottom: none; }
.nav-toggle-checkbox:checked ~ .mobile-nav-panel { display: flex; }

/* ---- section heading ---- */
.section-head { max-width: 640px; margin-bottom: var(--space-10); }
.section-head h2 { font-size: var(--text-2xl); line-height: var(--leading-tight); margin-bottom: var(--space-3); }
.section-head p { font-size: var(--text-md); color: var(--text-secondary); line-height: var(--leading-relaxed); }
.section-kicker { font-size: var(--text-sm); font-weight: 700; color: var(--accent-600); margin-bottom: var(--space-2); }

/* ---- cards ---- */
.card {
  background: var(--surface-card); border: var(--border-thin) solid var(--border-default);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.card-recessed { background: var(--bg-canvas); }

/* ---- flow / workflow diagram ---- */
.flow { display: flex; align-items: stretch; gap: var(--space-2); }
.flow-step {
  flex: 1; border: var(--border-thin) solid var(--border-default); border-radius: var(--radius-md);
  padding: var(--space-4); background: var(--bg-canvas); text-align: center;
}
.flow-step .flow-icon { width: 32px; height: 32px; margin: 0 auto var(--space-3); color: var(--accent-600); }
.flow-step .flow-label { font-size: var(--text-sm); font-weight: 700; color: var(--neutral-900); }
.flow-arrow { display: flex; align-items: center; color: var(--neutral-300); flex: 0 0 auto; }

/* ---- loop (SHIP) ---- */
.ship-loop { position: relative; }
.ship-row { display: flex; gap: var(--space-4); }
.ship-stage {
  flex: 1; border: var(--border-thin) solid var(--border-default); border-radius: var(--radius-lg);
  padding: var(--space-6); background: var(--surface-card); position: relative;
  animation: ship-pulse 8s ease-in-out infinite;
}
.ship-stage .letter-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--accent-500); color: #fff; font-weight: 700; font-size: var(--text-md);
  margin-bottom: var(--space-3);
  animation: pill-pulse 8s ease-in-out infinite;
}
.ship-stage h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.ship-stage .desc { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); margin-bottom: var(--space-4); }
.ship-stage .artefact { font-size: var(--text-xs); color: var(--accent-600); font-weight: 600; background: var(--accent-50); border-radius: var(--radius-sm); padding: 6px 10px; display: inline-block; }
.ship-loopback { display: flex; justify-content: center; margin-top: var(--space-2); align-items: center; gap: var(--space-2); color: var(--neutral-400); font-size: var(--text-xs); }
.ship-loopback svg { width: 20px; height: 20px; }
.ship-loopback .flow-path { stroke-dasharray: 4 4; animation: flow-dash 1.2s linear infinite; }

/* ---- SHIP ring diagram (Asset 1) — full detailed version is How We Work's
   desktop hero visual, hidden below 861px in favour of the existing stacked-
   card + loopback fallback (too much text to shrink legibly). The compact
   Home teaser drops the gate-label detail so it stays legible at any width
   and doesn't need a separate mobile fallback. ---- */
.ship-ring-wrap { display: flex; justify-content: center; margin: 0 auto var(--space-8); }
.ship-ring-wrap.compact { max-width: 420px; }
.ship-ring-wrap:not(.compact) { max-width: 560px; }
.ship-diagram { width: 100%; height: auto; }
.ship-diagram .node-circle { fill: var(--neutral-0); stroke: var(--accent-300); stroke-width: 2; }
.ship-diagram .node-letter { font-family: var(--font-display); font-weight: 800; font-size: 30px; fill: var(--accent-600); text-anchor: middle; dominant-baseline: central; }
.ship-diagram .node-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; fill: var(--neutral-900); text-anchor: middle; }
.ship-diagram .node-gate { font-family: var(--font-mono); font-size: 9.5px; fill: var(--neutral-500); text-anchor: middle; }
.ship-diagram .arc-normal { fill: none; stroke: var(--neutral-300); stroke-width: 2; }
.ship-diagram .arc-return { fill: none; stroke: var(--accent-500); stroke-width: 3; }
.ship-diagram .center-caption { font-family: var(--font-mono); font-size: 11px; fill: var(--neutral-400); text-anchor: middle; letter-spacing: 0.02em; }
@media (max-width: 860px) {
  .ship-ring-wrap:not(.compact) { display: none; }
}
@media (min-width: 861px) {
  .ship-mobile-fallback { display: none; }
}

/* ---- Before/After workflow diagram (Asset 2) ---- */
.workflow-diagram-wrap { max-width: 900px; margin: 0 auto; }
.workflow-diagram { width: 100%; height: auto; }
.workflow-diagram .panel-sublabel { font-family: var(--font-mono); font-size: 11px; font-weight: 600; fill: var(--neutral-400); letter-spacing: 0.06em; }
.workflow-diagram .node-before { fill: var(--neutral-100); stroke: var(--neutral-400); stroke-width: 2; }
.workflow-diagram .node-after { fill: var(--neutral-0); stroke: var(--neutral-500); stroke-width: 2; }
.workflow-diagram .node-ai { fill: var(--accent-50); stroke: var(--accent-500); stroke-width: 2.5; }
.workflow-diagram .node-outcome { fill: var(--sage-50); stroke: var(--sage-500); stroke-width: 2.5; }
.workflow-diagram .edge-before { fill: none; stroke: var(--neutral-400); stroke-width: 2; }
.workflow-diagram .edge-before-loop { fill: none; stroke: var(--neutral-300); stroke-width: 1.6; stroke-dasharray: 4 3; }
.workflow-diagram .edge-after { fill: none; stroke: var(--neutral-500); stroke-width: 2.2; }
.workflow-diagram .impl-arrow { stroke: var(--accent-500); stroke-width: 3; fill: none; }
.workflow-diagram .impl-label { font-family: var(--font-mono); font-size: 11px; fill: var(--accent-600); font-weight: 700; text-anchor: middle; letter-spacing: 0.04em; }
.workflow-diagram .warning-dot circle { fill: var(--neutral-800); }
.workflow-diagram .warning-dot text { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 11px; text-anchor: middle; dominant-baseline: central; }
.workflow-diagram .outcome-pill-bg { fill: var(--accent-50); }
.workflow-diagram .outcome-pill-text { fill: var(--accent-600); font-family: var(--font-mono); font-size: 11px; font-weight: 600; text-anchor: middle; }

/* ---- Home hero (Asset 3, v2) — full-bleed gradient section with a low-key
   node/connector line-art texture behind the text, instead of a boxed side
   diagram. Flat, schematic, palette-only — no glow, no illustration.
   v3: deeper layered gradient (radial warm/sage glows over the linear wash)
   plus a subtle mouse-reactive parallax drift on the background art. ---- */
.hero-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 620px at 82% 15%, var(--accent-100) 0%, transparent 62%),
    radial-gradient(ellipse 750px 560px at 8% 95%, var(--sage-50) 0%, transparent 60%),
    linear-gradient(120deg, var(--neutral-25) 0%, var(--neutral-50) 38%, var(--accent-50) 100%);
}
.hero-section > .container { position: relative; z-index: 1; }
.hero-bg-art {
  position: absolute; inset: -4%; width: 108%; height: 108%; z-index: 0;
  will-change: transform; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* fade the network out behind the eyebrow/headline/subhead on the left,
     full strength by the right two-thirds of the section */
  mask-image: linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0,0,0,0.12) 32%, rgba(0,0,0,0.55) 52%, black 74%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0,0,0,0.12) 32%, rgba(0,0,0,0.55) 52%, black 74%);
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
}
.hero-bg-art .bg-line { stroke: var(--neutral-300); stroke-width: 1.2; fill: none; }
.hero-bg-art .bg-node { fill: var(--neutral-25); stroke: var(--neutral-400); stroke-width: 1.5; }
.hero-bg-art .bg-node.accent { fill: var(--accent-100); stroke: var(--accent-300); }
.hero-bg-art .bg-node.sage { fill: var(--sage-50); stroke: var(--sage-300); }
@media (prefers-reduced-motion: reduce) {
  .hero-bg-art { transform: none !important; }
}

/* SHIP loop sweep — each stage lights up in turn, 8s loop, then repeats */
@keyframes ship-pulse {
  0%, 20% { border-color: var(--accent-500); box-shadow: 0 0 0 4px var(--accent-100); background: var(--accent-50); }
  30%, 100% { border-color: var(--border-default); box-shadow: none; background: var(--surface-card); }
}
@keyframes pill-pulse {
  0%, 20% { transform: scale(1.12); box-shadow: 0 0 0 6px var(--accent-100); }
  30%, 100% { transform: scale(1); box-shadow: none; }
}
@keyframes flow-dash { to { stroke-dashoffset: -16; } }
.ship-row .ship-stage:nth-child(1) { animation-delay: 0s; }
.ship-row .ship-stage:nth-child(1) .letter-pill { animation-delay: 0s; }
.ship-row .ship-stage:nth-child(2) { animation-delay: 2s; }
.ship-row .ship-stage:nth-child(2) .letter-pill { animation-delay: 2s; }
.ship-row .ship-stage:nth-child(3) { animation-delay: 4s; }
.ship-row .ship-stage:nth-child(3) .letter-pill { animation-delay: 4s; }
.ship-row .ship-stage:nth-child(4) { animation-delay: 6s; }
.ship-row .ship-stage:nth-child(4) .letter-pill { animation-delay: 6s; }

/* ---- 2/3/4 col grids ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

/* ---- results/evidence ---- */
.evidence-card { text-align: left; }
.evidence-card .metric { font-family: var(--font-mono); font-size: var(--text-2xl); font-weight: 600; color: var(--neutral-300); margin-bottom: var(--space-2); }
.evidence-card .metric.pending { color: var(--neutral-300); }
.evidence-card .label { font-size: var(--text-sm); color: var(--text-secondary); }
.pending-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .02em; color: var(--neutral-500);
  background: var(--neutral-100); border: 1px dashed var(--neutral-300); border-radius: var(--radius-full);
  padding: 3px 10px; margin-top: var(--space-2);
}

/* ---- case study teaser ---- */
.case-teaser { border: 1.5px dashed var(--neutral-200); border-radius: var(--radius-lg); padding: var(--space-8); background: var(--bg-canvas); }
.case-flow { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-6); flex-wrap: wrap; }
.case-flow-step { flex: 1; min-width: 140px; text-align: center; padding: var(--space-4); background: var(--surface-card); border-radius: var(--radius-md); border: var(--border-thin) solid var(--border-default); font-size: var(--text-xs); color: var(--text-secondary); font-weight: 600; }
.case-flow-arrow { color: var(--neutral-300); flex: 0 0 auto; }

/* ---- pathway cards ---- */
.pathway-card { display: flex; flex-direction: column; }
.pathway-card .name { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.pathway-card .who { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); flex: 1; }

/* ---- dark band / CTA ---- */
.band-dark { background: var(--neutral-900); color: var(--neutral-25); }
.band-dark h2, .band-dark h3 { color: var(--neutral-0); }
.band-dark p { color: var(--neutral-300); }

/* ---- footer ---- */
footer.site-footer { background: var(--neutral-900); color: var(--neutral-300); padding: var(--space-16) 0 var(--space-8); }
footer.site-footer .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-12); flex-wrap: wrap; gap: var(--space-8); }
footer.site-footer .wordmark { color: var(--neutral-0); }
footer.site-footer .tagline { max-width: 380px; font-size: var(--text-sm); color: var(--neutral-400); margin-top: var(--space-3); }
footer.site-footer .footer-nav { display: flex; gap: var(--space-16); flex-wrap: wrap; }
footer.site-footer .footer-nav-col h4 { font-size: var(--text-xs); text-transform: none; color: var(--neutral-500); margin-bottom: var(--space-3); font-weight: 600; }
footer.site-footer .footer-nav-col a { display: block; font-size: var(--text-sm); color: var(--neutral-300); margin-bottom: var(--space-2); }
footer.site-footer .footer-nav-col a:hover { color: var(--neutral-0); }
footer.site-footer .footer-bottom { border-top: var(--border-thin) solid rgba(255,255,255,.1); padding-top: var(--space-6); font-size: var(--text-xs); color: var(--neutral-500); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); }

/* ---- utility ---- */
.center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-6 { margin-bottom: var(--space-6); }
.text-secondary { color: var(--text-secondary); }
.max-w-narrow { max-width: var(--content-width-narrow); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle-btn { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .flow, .ship-row { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); justify-content: center; }
  section { padding: var(--space-12) 0; }
  h1 { font-size: var(--text-2xl) !important; }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (What We Do, SHIP, Work, About,
   Insights, Book a Consultation)
   ============================================================ */

/* ---- decision selector (What We Do) ---- */
.decision-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) 0; border-bottom: var(--border-thin) solid var(--border-default);
  gap: var(--space-6); flex-wrap: wrap;
}
.decision-row:last-child { border-bottom: none; }
.decision-row .situation { font-size: var(--text-md); color: var(--text-secondary); flex: 1; min-width: 280px; }
.decision-row .to { display: flex; align-items: center; gap: var(--space-3); flex: 0 0 auto; }
.decision-row .arrow { color: var(--neutral-300); }
.decision-row .pathway { font-weight: 700; color: var(--neutral-900); white-space: nowrap; font-size: var(--text-md); }

/* ---- "what this is not" callout ---- */
.not-list { list-style: none; margin: 0; padding: 0; }
.not-list li { display: flex; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-2); }
.not-list li svg { flex: 0 0 auto; width: 16px; height: 16px; color: var(--neutral-400); margin-top: 2px; }

/* ---- ship stage detail (SHIP page) ---- */
.ship-detail-list { list-style: none; margin: var(--space-3) 0 0; padding: 0; }
.ship-detail-list li { font-size: var(--text-sm); color: var(--text-secondary); padding: var(--space-2) 0; border-top: var(--border-thin) solid var(--border-default); }
.ship-detail-list li:first-child { border-top: none; }

/* ---- case study full template (Work) ---- */
.case-full { border: 1.5px dashed var(--neutral-200); border-radius: var(--radius-lg); padding: var(--space-8); background: var(--bg-canvas); margin-bottom: var(--space-8); }
.case-full .client-tag { font-size: var(--text-xs); font-weight: 700; color: var(--accent-600); background: var(--accent-50); border-radius: var(--radius-full); padding: 4px 12px; display: inline-block; margin-bottom: var(--space-4); }
.case-full-results-label { font-size: var(--text-xs); font-weight: 700; color: var(--neutral-500); text-transform: uppercase; letter-spacing: 0.04em; margin: var(--space-6) 0 var(--space-3); }
.case-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-6); }
.case-full-field { background: var(--surface-card); border: var(--border-thin) solid var(--border-default); border-radius: var(--radius-md); padding: var(--space-5); }
.case-full-field .field-index { font-family: var(--font-mono); font-size: 10px; color: var(--neutral-400); font-weight: 700; margin-bottom: var(--space-2); letter-spacing: 0.04em; }
.case-full-field h4 { font-size: var(--text-xs); font-weight: 700; color: var(--neutral-500); margin-bottom: var(--space-2); text-transform: none; }
.case-full-field p { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }
.metrics-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); padding: var(--space-8) 0; border-top: var(--border-thin) solid var(--border-default); border-bottom: var(--border-thin) solid var(--border-default); }

/* ---- about / leadership ---- */
.avatar-placeholder {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface-recessed); border: 1.5px dashed var(--neutral-300);
  display: flex; align-items: center; justify-content: center; color: var(--neutral-400);
}
.avatar-placeholder svg { width: 36px; height: 36px; }
.avatar-photo { width: 140px; height: 140px; border-radius: var(--radius-lg); object-fit: cover; flex-shrink: 0; border: 1.5px solid var(--border-default); }

/* ---- insights ---- */
.pillar-card { border: var(--border-thin) solid var(--border-default); border-radius: var(--radius-lg); padding: var(--space-6); background: var(--surface-card); }
.pillar-card h3 { font-size: var(--text-md); margin-bottom: var(--space-2); }
.pillar-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }
.article-stub { display: flex; gap: var(--space-4); align-items: center; border: 1.5px dashed var(--neutral-200); border-radius: var(--radius-md); padding: var(--space-4); background: var(--bg-canvas); }
.article-stub-thumb {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: var(--neutral-100); border: 1.5px dashed var(--neutral-300); color: var(--neutral-400);
  display: flex; align-items: center; justify-content: center;
}
.article-stub-thumb svg { width: 22px; height: 22px; }
.article-stub .pillar-label { font-size: var(--text-xs); font-weight: 700; color: var(--accent-600); margin-bottom: var(--space-1); }
.article-stub h4 { font-size: var(--text-md); margin: 0; color: var(--neutral-700); }

/* ---- form (Book a Consultation) ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: var(--text-sm); font-weight: 600; color: var(--neutral-800); }
.form-field .hint { font-size: var(--text-xs); color: var(--text-tertiary); }
.form-status { font-size: var(--text-sm); font-weight: 600; padding: 12px 14px; border-radius: var(--radius-md); margin-bottom: var(--space-5); }
.form-status.success { background: var(--sage-50); color: var(--sage-600); }
.form-status.error { background: var(--accent-50); color: var(--accent-700); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-display); font-size: var(--text-base); color: var(--text-primary);
  border: var(--border-thin) solid var(--border-strong); border-radius: var(--radius-md);
  padding: 12px 14px; background: var(--surface-card);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.expectation-list { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.expectation-list li { counter-increment: step; display: flex; gap: var(--space-4); margin-bottom: var(--space-4); font-size: var(--text-sm); color: var(--text-secondary); }
.expectation-list li::before {
  content: counter(step); flex: 0 0 auto; width: 26px; height: 26px; border-radius: var(--radius-full);
  background: var(--surface-recessed); color: var(--neutral-700); font-weight: 700; font-size: var(--text-xs);
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 860px) {
  .case-full-grid, .form-grid { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   VISUAL ELEMENTS — icon badges + image placeholders
   ============================================================ */

.icon-badge {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--accent-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.icon-badge svg { width: 20px; height: 20px; color: var(--accent-600); }
.icon-badge.sage { background: var(--sage-50); }
.icon-badge.sage svg { color: var(--sage-600); }

.image-placeholder {
  border: 1.5px dashed var(--neutral-300); border-radius: var(--radius-lg);
  background: var(--surface-recessed); color: var(--neutral-400);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-2); text-align: center; padding: var(--space-6);
}
.image-placeholder svg { width: 40px; height: 40px; }
.image-placeholder span { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em; }
.image-placeholder.small { min-height: 120px; }
.image-placeholder.small svg { width: 28px; height: 28px; }
.image-placeholder.hero { min-height: 320px; }
.image-placeholder.wide { min-height: 220px; }

/* ---- anchor targets: offset for the sticky header so jumps don't land under it ---- */
section[id] { scroll-margin-top: 88px; }

/* ---- decision-row as a real link (What We Do) ---- */
a.decision-row { text-decoration: none; color: inherit; cursor: pointer; }
a.decision-row:hover { background: var(--bg-canvas); }
a.decision-row:hover .pathway { color: var(--accent-600); }

/* ---- respect the OS-level reduced-motion preference ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

