/* ==========================================================================
   OT Enterprises — Osazee Thompson
   Financial Wellness · Leadership Consulting
   Design system: tokens → base → components → layout → responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette — deliberate flat colors, no decorative gradients */
  --navy-900: #071A33;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1D4E89;
  --brass-600: #96731A;   /* AA-contrast brass for text on light */
  --brass-500: #C9A227;   /* brand brass — fills, rules, accents */
  --brass-400: #E3C45C;   /* brass on dark */
  --paper: #FAF8F3;
  --white: #FFFFFF;
  --ink: #15202B;
  --ink-muted: #4A5568;   /* 7.0:1 on white */
  --ink-faint: #667085;   /* 4.9:1 on white */
  --border: #E4E1DA;
  --border-strong: #CFCBC1;

  /* On-dark text — all AA against --navy-800 */
  --on-dark: #FFFFFF;
  --on-dark-muted: #D3DCE8;   /* 9.1:1 */
  --on-dark-faint: #AEBCCE;   /* 6.2:1 */

  /* Elevation — reserved, not decorative */
  --shadow-raised: 0 10px 30px -12px rgba(7, 26, 51, .28);
  --shadow-overlay: 0 24px 60px -18px rgba(7, 26, 51, .42);

  /* Radius — one value, one pill */
  --radius: 10px;
  --radius-pill: 999px;

  /* Spacing scale — 4px base, used everywhere */
  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 24px;  --s6: 32px;  --s7: 48px;  --s8: 64px;
  --s9: 96px;  --s10: 128px;

  /* Type ladder */
  --t-display: clamp(2.5rem, 5.4vw, 4rem);
  --t-h1:      clamp(2.1rem, 4.2vw, 3.1rem);
  --t-h2:      clamp(1.65rem, 3vw, 2.35rem);
  --t-h3:      1.3rem;
  --t-body-lg: 1.135rem;
  --t-body:    1.0625rem;
  --t-small:   0.9375rem;
  --t-label:   0.75rem;

  /* Typefaces — an editorial serif + grotesque pairing that resolves to a real
     installed face on macOS and Windows. No webfont CDN is reachable from this
     environment, so the stacks are ordered by what actually ships on each OS. */
  --font-serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua',
                'Hoefler Text', Georgia, serif;
  --font-sans: 'Avenir Next', Avenir, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --motion: 200ms cubic-bezier(.2, .7, .3, 1);
  --measure: 66ch;
  --max: 1180px;
  --gutter: var(--s5);
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--navy-800);
  margin: 0 0 var(--s4);
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.3; letter-spacing: -0.005em; }

p { margin: 0 0 var(--s4); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-800); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--s4); padding-left: 1.2em; }
li { margin-bottom: var(--s2); }
li:last-child { margin-bottom: 0; }

/* Visible focus everywhere — never removed */
:focus-visible {
  outline: 3px solid var(--brass-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.sec-navy :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible { outline-color: var(--brass-400); }

.skip-link {
  position: absolute; left: var(--s4); top: -100px; z-index: 200;
  background: var(--navy-800); color: var(--white);
  padding: var(--s3) var(--s5); border-radius: var(--radius);
  font-weight: 600; text-decoration: none;
  transition: top var(--motion);
}
.skip-link:focus { top: var(--s4); color: var(--white); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 780px; }

section { padding-block: clamp(var(--s8), 8vw, var(--s9)); }
.sec-paper { background: var(--paper); }
.sec-navy { background: var(--navy-800); color: var(--on-dark-muted); }
.sec-navy h2, .sec-navy h3 { color: var(--on-dark); }
.sec-navy p { color: var(--on-dark-muted); }

/* Section heads start LEFT by default — centered only where earned */
.sec-head { max-width: 58ch; margin-bottom: var(--s7); }
.sec-head p { color: var(--ink-muted); font-size: var(--t-body-lg); }
.sec-navy .sec-head p { color: var(--on-dark-muted); }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-600);
  margin-bottom: var(--s3);
}
.sec-navy .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: var(--brass-400); }

.rule {
  width: 56px; height: 3px; background: var(--brass-500);
  border: 0; margin: 0 0 var(--s5);
}

/* --------------------------------------------------------------------------
   4. BUTTONS — shared control language
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: var(--t-small);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--motion), color var(--motion),
              border-color var(--motion), transform var(--motion);
}
.btn svg { width: 16px; height: 16px; flex: none; }

.btn-primary { background: var(--brass-500); color: var(--navy-900); }
.btn-primary:hover { background: var(--brass-400); color: var(--navy-900); transform: translateY(-1px); }
.btn-primary:active { background: var(--brass-600); color: var(--white); transform: translateY(0); }

.btn-outline { border-color: var(--border-strong); color: var(--navy-800); background: transparent; }
.btn-outline:hover { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); transform: translateY(-1px); }
.btn-outline:active { background: var(--navy-900); transform: translateY(0); }

.btn-on-dark { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-on-dark:hover { background: var(--white); color: var(--navy-800); border-color: var(--white); transform: translateY(-1px); }
.btn-on-dark:active { background: var(--on-dark-muted); transform: translateY(0); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .5; cursor: not-allowed; transform: none;
  pointer-events: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-weight: 600; font-size: var(--t-small); color: var(--navy-600);
  text-decoration: none; cursor: pointer;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--motion); }
.link-arrow:hover { color: var(--navy-800); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. HEADER — the one place blur is legitimate (overlays scrolling content)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max); margin-inline: auto;
  padding: var(--s3) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s5);
}
.brand { display: flex; align-items: center; gap: var(--s3); text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand-text { line-height: 1.15; }
.brand-text b {
  display: block; font-family: var(--font-serif); font-weight: 600;
  font-size: 1.05rem; color: var(--navy-800);
}
.brand-text span {
  display: block; font-size: 0.66rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase; color: var(--ink-faint);
}

.site-nav { display: flex; align-items: center; gap: var(--s6); }
.site-nav a {
  font-size: var(--t-small); font-weight: 500; color: var(--navy-700);
  text-decoration: none; padding: var(--s2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--motion), border-color var(--motion);
}
.site-nav a:hover { color: var(--navy-900); border-bottom-color: var(--border-strong); }
.site-nav a[aria-current="page"] { color: var(--navy-900); border-bottom-color: var(--brass-500); }
.site-nav .btn { border-bottom: 0; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--s2);
  color: var(--navy-800); cursor: pointer;
  transition: background var(--motion), border-color var(--motion);
}
.nav-toggle:hover { background: var(--paper); border-color: var(--border-strong); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* --------------------------------------------------------------------------
   6. HERO — asymmetric split, left-aligned, not a centered stack
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--navy-800);
  color: var(--on-dark-muted);
  padding-block: clamp(var(--s8), 9vw, var(--s10));
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center right;
  opacity: .22;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy-900) 8%, rgba(11, 37, 69, .82) 58%, rgba(11, 37, 69, .45) 100%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(var(--s6), 5vw, var(--s8)); align-items: center;
}
.hero h1 { color: var(--on-dark); font-size: var(--t-display); max-width: 16ch; }
.hero .lede {
  font-size: var(--t-body-lg); color: var(--on-dark-muted);
  max-width: 52ch; margin-bottom: var(--s5);
}
.hero-portrait {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-overlay);
  aspect-ratio: 4 / 5; background: var(--navy-700);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

/* Diagram figure in the hero — artwork, not a cropped photo */
.hero-figure {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-overlay);
  border: 1px solid rgba(255,255,255,.16);
  min-width: 0;
}
.hero-figure img { width: 100%; height: auto; display: block; }

.hero-credibility {
  display: flex; flex-wrap: wrap; gap: var(--s5) var(--s7);
  margin-top: var(--s7); padding-top: var(--s5);
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-credibility div { min-width: 140px; }
.hero-credibility b {
  display: block; font-family: var(--font-serif); font-size: 1.75rem;
  font-weight: 600; color: var(--brass-400); line-height: 1.1;
}
.hero-credibility span { font-size: var(--t-small); color: var(--on-dark-faint); }

/* --------------------------------------------------------------------------
   7. SURFACES — flat by default, shadow reserved for focal card
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--s5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s6);
  transition: border-color var(--motion), transform var(--motion);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card h3 { margin-bottom: var(--s3); }
.card p { color: var(--ink-muted); font-size: var(--t-small); }
.card ul { padding-left: 1.1em; color: var(--ink-muted); font-size: var(--t-small); margin-bottom: 0; }

/* The one genuinely elevated card per view */
.card-focal {
  background: var(--navy-800); border-color: var(--navy-800);
  box-shadow: var(--shadow-raised); color: var(--on-dark-muted);
}
.card-focal h3 { color: var(--on-dark); }
.card-focal p, .card-focal ul { color: var(--on-dark-muted); }

/* Icon sits WITH its label at text scale — no tile grid */
.card-head { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s3); }
.card-head svg {
  width: 20px; height: 20px; flex: none;
  stroke: var(--brass-600); stroke-width: 1.75; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.card-head h3 { margin: 0; }
.card-focal .card-head svg { stroke: var(--brass-400); }

/* --------------------------------------------------------------------------
   8. PILLARS — full-bleed band, varied rhythm
   -------------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s4); }
.pillar { border-top: 3px solid var(--brass-500); padding-top: var(--s4); }
.pillar b {
  display: block; font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--on-dark); margin-bottom: var(--s2); line-height: 1.25;
}
.pillar span { font-size: var(--t-small); color: var(--on-dark-faint); }

/* Compact hero — interior pages with no side media */
.hero-compact { padding-block: clamp(var(--s7), 7vw, var(--s9)); }
.hero-compact h1 { max-width: 20ch; }
.hero-compact .lede { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   8b. TIMELINE — career background, numbered rail
   -------------------------------------------------------------------------- */
.timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--s5);
  counter-reset: milestone;
}
.timeline li {
  counter-increment: milestone;
  position: relative;
  padding-left: var(--s8);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,.14);
  margin-bottom: 0;
}
.timeline li:last-child { border-bottom: 0; padding-bottom: 0; }
.timeline li::before {
  content: counter(milestone, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--brass-400); line-height: 1;
}
.timeline b {
  display: block; font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 600; color: var(--on-dark); margin-bottom: var(--s1);
}
.timeline li > span {
  display: block; font-size: var(--t-small); color: var(--brass-400);
  margin-bottom: var(--s3);
}
.timeline p { color: var(--on-dark-muted); font-size: var(--t-small); margin: 0; }

/* Caption under a media image */
.media-caption {
  margin-top: var(--s3); font-size: 0.875rem;
  color: var(--ink-faint); max-width: none;
}

/* --------------------------------------------------------------------------
   9. SPLIT FEATURE
   -------------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--s6), 5vw, var(--s8)); align-items: center;
}
.split > * { min-width: 0; }
.split-media img {
  width: 100%; height: auto;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.sec-navy .split-media img { border-color: rgba(255,255,255,.16); }
.split.reverse .split-media { order: 2; }

.checklist { list-style: none; padding: 0; margin: 0 0 var(--s5); }
.checklist li {
  position: relative; padding-left: var(--s6); margin-bottom: var(--s3);
  color: var(--ink-muted); max-width: var(--measure);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--brass-500);
  border-bottom: 2px solid var(--brass-500);
  transform: rotate(-45deg);
}
.sec-navy .checklist li { color: var(--on-dark-muted); }
.sec-navy .checklist li::before { border-color: var(--brass-400); }

/* --------------------------------------------------------------------------
   10. TESTIMONIALS — deliberately uneven sizing
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5); align-items: start; }
.quote {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--brass-500);
  border-radius: var(--radius); padding: var(--s6);
  display: flex; flex-direction: column; height: 100%;
}
.quote blockquote {
  margin: 0 0 var(--s5); font-size: var(--t-small);
  color: var(--ink); line-height: 1.65;
}
.quote cite { font-style: normal; margin-top: auto; }
.quote cite b {
  display: block; font-family: var(--font-serif); font-size: 1.02rem;
  color: var(--navy-800); font-weight: 600;
}
.quote cite span { font-size: 0.875rem; color: var(--ink-faint); }
.quote-wide { grid-column: span 2; }
.quote-wide blockquote { font-size: var(--t-body-lg); line-height: 1.55; }

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); margin-bottom: var(--s3);
  transition: border-color var(--motion);
}
.faq details:hover { border-color: var(--border-strong); }
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--s5) var(--s6);
  font-family: var(--font-serif); font-size: 1.08rem; font-weight: 600;
  color: var(--navy-800);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2px solid var(--brass-600); border-bottom: 2px solid var(--brass-600);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--motion);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq .faq-body { padding: 0 var(--s6) var(--s5); }
.faq .faq-body p { color: var(--ink-muted); font-size: var(--t-small); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. FORMS — with real states
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--s7);
  box-shadow: var(--shadow-raised);
}
.field { margin-bottom: var(--s4); }
.field label {
  display: block; font-size: var(--t-label); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: var(--s2);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px var(--s4);
  font-family: inherit; font-size: var(--t-body); color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  transition: border-color var(--motion), box-shadow var(--motion);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--navy-600); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(29, 78, 137, .18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #B42318; box-shadow: 0 0 0 3px rgba(180, 35, 24, .14);
}
.field input:disabled, .field textarea:disabled {
  background: var(--paper); color: var(--ink-faint); cursor: not-allowed;
}
.field-error {
  display: none; margin-top: var(--s2);
  font-size: 0.875rem; color: #B42318; font-weight: 500;
}
.field-error.show { display: block; }
.field textarea { min-height: 128px; resize: vertical; }

.form-note { font-size: 0.875rem; color: var(--ink-faint); margin-top: var(--s4); }

.form-status {
  display: none; margin-top: var(--s4); padding: var(--s4);
  border-radius: var(--radius); font-size: var(--t-small);
  border: 1px solid transparent;
}
.form-status.show { display: block; }
.form-status.is-success { background: #ECFDF3; border-color: #ABEFC6; color: #085D3A; }
.form-status.is-error   { background: #FEF3F2; border-color: #FECDCA; color: #912018; }

/* --------------------------------------------------------------------------
   13. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--navy-900); color: var(--on-dark-muted);
  padding-block: clamp(var(--s8), 8vw, var(--s9));
}
.cta-band h2 { color: var(--on-dark); }
.cta-band p { color: var(--on-dark-muted); font-size: var(--t-body-lg); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: var(--s7); align-items: center; }

/* --------------------------------------------------------------------------
   14. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(var(--s6), 5vw, var(--s8)); align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-list { list-style: none; padding: 0; margin: var(--s6) 0 0; }
.contact-list li { margin-bottom: var(--s5); }
.contact-list strong {
  display: block; font-size: var(--t-label); font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--brass-600); margin-bottom: var(--s1);
}
.contact-list a, .contact-list span {
  font-size: var(--t-body); color: var(--navy-800); font-weight: 500;
  text-decoration: none; overflow-wrap: anywhere;
}
.contact-list a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900); color: var(--on-dark-faint);
  padding: var(--s9) 0 var(--s6); font-size: var(--t-small);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s7); margin-bottom: var(--s8);
}
.site-footer h4 {
  font-family: var(--font-sans); font-size: var(--t-label); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark); margin-bottom: var(--s4);
}
.site-footer p { color: var(--on-dark-faint); max-width: 34ch; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: var(--s3); }
.site-footer a { color: var(--on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: var(--brass-400); text-decoration: underline; }
.footer-brand img { height: 46px; margin-bottom: var(--s4); filter: brightness(0) invert(1); opacity: .9; }

.social-row { display: flex; gap: var(--s3); margin-top: var(--s5); }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--on-dark-muted);
  transition: background var(--motion), border-color var(--motion), color var(--motion);
}
.social-row a:hover { background: var(--brass-500); border-color: var(--brass-500); color: var(--navy-900); }
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.disclosure {
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: var(--s5); font-size: 0.8125rem; line-height: 1.6;
  color: rgba(255,255,255,.52);
}
.disclosure p { color: inherit; max-width: none; margin-bottom: var(--s3); }
.copyright {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5);
  justify-content: space-between; font-size: 0.8125rem;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE — 375 / 768 / 1024 / 1440
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: var(--s5); }
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: var(--s2) var(--gutter) var(--s5);
    box-shadow: var(--shadow-overlay);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: var(--s4) 0; border-bottom: 1px solid var(--border); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--brass-500); }
  .site-nav .btn { margin-top: var(--s4); }

  .hero-grid, .split, .contact-grid, .cta-inner { grid-template-columns: minmax(0, 1fr); }
  .split.reverse .split-media { order: 0; }
  .hero-portrait { max-width: 360px; }
  .hero-figure { max-width: 560px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .quote-wide { grid-column: auto; }
  .quote-wide blockquote { font-size: var(--t-body); }
}

@media (max-width: 600px) {
  :root { --gutter: var(--s4); }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .form-card { padding: var(--s5); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .hero-credibility { gap: var(--s5); }
  .hero-credibility div { min-width: 0; flex: 1 1 42%; }
  .quote, .card { padding: var(--s5); }
}

/* --------------------------------------------------------------------------
   17. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .cta-band, .btn, .social-row { display: none; }
  body { color: #000; }
}
