/* ============================================================
   NATIONAL ADA — Accessibility Compliance Network
   Core stylesheet (design system + shared components)
   ------------------------------------------------------------
   Every page links this file. Edit a token here and it
   updates the whole site. Sections are labeled for easy edits.
   ============================================================ */

/* -------------------------------------------------- *
 * 1. DESIGN TOKENS                                    *
 * -------------------------------------------------- */
:root {
  /* Brand blues */
  --blue-700: #143A77;   /* deep button hover */
  --blue-600: #1B4FA0;   /* primary button / brand blue */
  --blue-500: #2E6FD6;   /* bright accent (headline line 2, links) */
  --blue-100: #E8F0FB;   /* light tint bands */
  --blue-050: #F2F7FD;   /* lightest tint */

  /* Navy + ink */
  --navy-900: #0F274C;   /* dark footer / process band */
  --navy-800: #14315C;
  --ink-900:  #1A2236;   /* serif headlines (near-black navy) */
  --ink-700:  #344256;   /* strong body text */
  --ink-500:  #54616F;   /* standard body text */
  --ink-400:  #6B7785;   /* muted captions */

  /* Surfaces + lines */
  --white:    #FFFFFF;
  --paper:    #F7F9FC;   /* off-white section bg */
  --line:     #E2E7EE;   /* hairline borders */
  --line-soft:#EDF1F6;

  /* Type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Scale + rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(56px, 8vw, 104px);
  --radius: 3px;
  --radius-lg: 5px;

  /* Effects */
  --shadow-card: 0 1px 2px rgba(16,40,80,.04);
  --shadow-float: 0 18px 50px -20px rgba(16,40,80,.28);
  --ring: 0 0 0 3px rgba(46,111,214,.45);
  --t: 180ms cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink-500);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink-900);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* Accessibility helpers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  background: var(--blue-600); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); font-weight: 600; font-size: 14px;
  transition: top var(--t);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* -------------------------------------------------- *
 * 3. LAYOUT PRIMITIVES                                 *
 * -------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper); }
.section--blue { background: var(--blue-050); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 18px;
}

.lede { font-size: 17px; color: var(--ink-500); max-width: 56ch; }

/* -------------------------------------------------- *
 * 4. BUTTONS + LINKS                                   *
 * -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; transition: all var(--t);
  white-space: nowrap;
}
.btn .arr { transition: transform var(--t); }
.btn:hover .arr { transform: translateX(4px); }

.btn--primary { background: var(--blue-600); color: #fff; }
.btn--primary:hover { background: var(--blue-700); }

.btn--ghost { background: transparent; color: var(--blue-600); border-color: var(--blue-600); }
.btn--ghost:hover { background: var(--blue-600); color: #fff; }

.btn--light { background: #fff; color: var(--blue-600); border-color: var(--line); }
.btn--light:hover { border-color: var(--blue-600); }

.textlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue-500);
}
.textlink .arr { transition: transform var(--t); }
.textlink:hover .arr { transform: translateX(4px); }

/* -------------------------------------------------- *
 * 5. HEADER + NAVIGATION                               *
 * -------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
/* Header spans wider than body content so the full nav fits */
.site-header .container { max-width: 1340px; padding-inline: clamp(18px, 2vw, 26px); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; min-height: 76px;
}

/* Logo lockup */
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__text { line-height: 1; }
.brand__name {
  font-family: var(--serif); font-weight: 700; font-size: 20px;
  color: var(--ink-900); letter-spacing: .02em;
}
.brand__name b { color: var(--blue-600); font-weight: 700; }
.brand__tag {
  font-family: var(--sans); font-size: 8px; font-weight: 600;
  letter-spacing: .085em; text-transform: uppercase; color: var(--ink-400);
  margin-top: 3px; white-space: nowrap;
}

/* Desktop nav links */
.nav__menu { display: flex; align-items: center; gap: 1px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500; letter-spacing: .015em;
  text-transform: uppercase; color: var(--ink-700);
  padding: 9px 8px; border-radius: var(--radius); transition: color var(--t); white-space: nowrap;
}
.nav__link:hover { color: var(--blue-600); }
.nav__link[aria-current="page"] { color: var(--blue-600); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 2px;
  height: 2px; background: var(--blue-600);
}

/* Dropdown */
.nav__item { position: relative; }
.nav__caret { width: 9px; height: 9px; transition: transform var(--t); }
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 270px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-float);
  padding: 8px; opacity: 0; visibility: hidden; transition: all var(--t);
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: var(--radius);
  font-size: 14px; color: var(--ink-700); transition: all var(--t);
}
.dropdown a:hover { background: var(--blue-050); color: var(--blue-600); }

.nav__cta { flex-shrink: 0; padding: 12px 15px; font-size: 11.5px; }

/* Small-screen brand: shrink, then drop tagline on very narrow phones */
@media (max-width: 480px) {
  .brand__name { font-size: 18px; }
  .brand__tag { letter-spacing: .1em; font-size: 8px; }
}
@media (max-width: 400px) {
  .brand__tag { display: none; }
}

/* Mobile toggle */
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink-900); }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 1160px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav--open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px; box-shadow: var(--shadow-float);
  }
  .nav--open .nav__cta { display: inline-flex; }
  .nav__link { padding: 14px 8px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__link[aria-current="page"]::after { display: none; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 8px 16px; min-width: 0;
    display: none;
  }
  .nav__item--open .dropdown { display: block; }
  .nav__item:hover .dropdown,
  .nav__item:focus-within .dropdown { transform: none; }
  .nav--open .nav__cta { margin: 14px 8px 0; align-self: flex-start; }
}

/* -------------------------------------------------- *
 * 6. HERO                                              *
 * -------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  min-height: 520px;
}
.hero__content { padding-block: clamp(40px, 6vw, 80px); padding-right: clamp(24px, 4vw, 56px); }
.hero__title {
  font-size: clamp(36px, 5vw, 58px); line-height: 1.05; margin-bottom: 22px;
}
.hero__title .accent { color: var(--blue-500); display: block; }
.hero__text { font-size: 17px; max-width: 46ch; margin-bottom: 30px; color: var(--ink-500); }
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* Hero media bleeds to the right edge of the viewport */
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 50vw; }
.hero__media .media-placeholder,
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 22%);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__content { padding-block: 44px 28px; padding-right: 0; }
  .hero__media { position: static; width: auto; min-height: 280px; margin-inline: calc(var(--gutter) * -1); }
  .hero__overlay { background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0) 30%); }
}

/* -------------------------------------------------- *
 * 7. TRUST BAR (overlapping white card)               *
 * -------------------------------------------------- */
.trustbar-wrap { position: relative; margin-top: -52px; z-index: 5; }
.trustbar {
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-float); border-radius: var(--radius-lg);
  padding: 34px clamp(20px, 4vw, 44px);
}
.trustbar__eyebrow { text-align: center; margin-bottom: 26px; }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.trustbar__col {
  text-align: center; padding: 0 22px;
  border-left: 1px solid var(--line-soft);
}
.trustbar__col:first-child { border-left: 0; }
.trustbar__icon { width: 34px; height: 34px; margin: 0 auto 14px; color: var(--blue-600); }
.trustbar__label { font-size: 13.5px; color: var(--ink-700); line-height: 1.45; }

@media (max-width: 760px) {
  .trustbar-wrap { margin-top: -36px; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .trustbar__col:nth-child(odd) { border-left: 0; }
  .trustbar__col:nth-child(even) { border-left: 1px solid var(--line-soft); }
}
@media (max-width: 440px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__col { border-left: 0 !important; padding: 0; }
}

/* -------------------------------------------------- *
 * 8. SERVICES BLOCK (intro + card grid)               *
 * -------------------------------------------------- */
.svc { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.svc__intro h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 20px; }
.svc__intro p { margin-bottom: 28px; }

.card-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.card-grid--2 { grid-template-columns: 1fr 1fr; }
.svc-card {
  padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center; transition: background var(--t);
}
.svc-card:hover { background: var(--blue-050); }
.svc-card__icon { width: 38px; height: 38px; margin: 0 auto 16px; color: var(--blue-600); }
.svc-card h3 { font-size: 17px; font-family: var(--serif); margin-bottom: 10px; color: var(--ink-900); }
.svc-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.5; }

@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; gap: 36px; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- *
 * 9. TESTIMONIAL BAND                                  *
 * -------------------------------------------------- */
.testi { background: var(--blue-100); position: relative; overflow: hidden; }
.testi__grid { display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; }
.testi__content { padding-block: clamp(48px, 6vw, 84px); padding-right: 40px; position: relative; }
.testi__quote-mark {
  font-family: var(--serif); font-size: 90px; line-height: .5; color: var(--blue-500);
  opacity: .5; height: 40px; display: block;
}
.testi__quote { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 27px); line-height: 1.4; color: var(--ink-900); margin: 14px 0 24px; }
.testi__author { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.testi__role { font-size: 14px; color: var(--ink-500); }
.testi__media { align-self: stretch; min-height: 320px; position: relative; }
.testi__media .media-placeholder, .testi__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .testi__grid { grid-template-columns: 1fr; }
  .testi__content { padding-right: 0; }
  .testi__media { min-height: 220px; margin-inline: calc(var(--gutter) * -1); order: -1; }
}

/* -------------------------------------------------- *
 * 10. RESOURCE CARDS ROW                               *
 * -------------------------------------------------- */
.res-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.res-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: box-shadow var(--t), transform var(--t); }
.res-card:hover { box-shadow: var(--shadow-float); transform: translateY(-3px); }
.res-card__media { height: 130px; position: relative; }
.res-card__media .media-placeholder, .res-card__media img { width: 100%; height: 100%; object-fit: cover; }
.res-card__body { padding: 18px 20px 22px; }
.res-card__title { font-family: var(--serif); font-size: 16px; color: var(--ink-900); line-height: 1.3; margin-bottom: 16px; }
.res-card__link { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue-500); display: inline-flex; gap: 7px; align-items: center; }

@media (max-width: 900px) { .res-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .res-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------- *
 * 11. CTA STRIP                                        *
 * -------------------------------------------------- */
.cta-strip { background: var(--blue-100); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px) clamp(24px, 4vw, 44px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-strip__left { display: flex; align-items: center; gap: 22px; }
.cta-strip__icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--blue-600); color: #fff; border-radius: 50%; display: grid; place-items: center; }
.cta-strip__icon svg { width: 24px; height: 24px; }
.cta-strip__title { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 24px); color: var(--ink-900); }
.cta-strip__sub { font-size: 14px; color: var(--ink-500); margin-top: 4px; }

@media (max-width: 700px) { .cta-strip { flex-direction: column; align-items: flex-start; } }

/* -------------------------------------------------- *
 * 12. FOOTER                                           *
 * -------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #B9C6DA; padding-block: clamp(48px, 6vw, 72px) 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name b { color: #fff; }
.footer__brand .brand__tag { color: #7E92AD; }
.footer__about { font-size: 13.5px; line-height: 1.6; color: #93A4BD; margin-top: 20px; max-width: 34ch; }
.footer__social { display: flex; gap: 14px; margin-top: 22px; }
.footer__social a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: var(--radius); color: #B9C6DA; border: 1px solid #28456E; transition: all var(--t); }
.footer__social a:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 13.5px; color: #A9B8CE; transition: color var(--t); }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid #1E3A60; padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer__copy { font-size: 12.5px; color: #7E92AD; }
.footer__legal { display: flex; gap: 26px; }
.footer__legal a { font-size: 12.5px; color: #A9B8CE; }
.footer__legal a:hover { color: #fff; }

@media (max-width: 940px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

/* -------------------------------------------------- *
 * 13. MEDIA PLACEHOLDER (swap for real <img>)         *
 * -------------------------------------------------- */
.media-placeholder {
  background: linear-gradient(135deg, #D9E4F2 0%, #C3D4EC 45%, #A9C0E0 100%);
  display: grid; place-items: center; color: #4D6788; position: relative;
}
.media-placeholder span {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(20,49,92,.62); text-align: center;
  padding: 8px 14px; border: 1px dashed rgba(20,49,92,.4); border-radius: var(--radius);
  background: rgba(255,255,255,.45);
}

/* -------------------------------------------------- *
 * 14. HERO MEASUREMENT OVERLAY (homepage signature)   *
 * -------------------------------------------------- */
.hero__measure { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.measure-tag {
  position: absolute; display: flex; flex-direction: column; gap: 1px;
  font-family: var(--sans); color: #fff; text-shadow: 0 1px 4px rgba(0,40,90,.55);
}
.measure-tag::before {
  content: ""; position: absolute; left: -14px; top: 7px;
  width: 10px; height: 10px; border-left: 1px solid rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.85);
}
.measure-tag b { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.measure-tag span { font-size: 15px; font-weight: 600; }
.measure-tag--1 { top: 26%; right: 8%; }
.measure-tag--2 { top: 48%; right: 5%; }
.measure-tag--3 { top: 70%; right: 11%; }
@media (max-width: 880px) { .hero__measure { display: none; } }

/* -------------------------------------------------- *
 * 15. AUDIENCE PATHWAY CARDS                           *
 * -------------------------------------------------- */
.pathways { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pathway {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px 26px; background: #fff; transition: all var(--t);
  display: flex; flex-direction: column;
}
.pathway:hover { border-color: #C8D6EA; box-shadow: var(--shadow-float); transform: translateY(-3px); }
.pathway__icon {
  width: 56px; height: 56px; margin-bottom: 22px; flex-shrink: 0;
  background: var(--blue-600); border-radius: 7px; transform: rotate(45deg);
  display: grid; place-items: center;
}
.pathway__icon svg { width: 26px; height: 26px; transform: rotate(-45deg); color: #fff; }
.pathway h3 { font-size: 18px; font-family: var(--serif); color: var(--ink-900); margin-bottom: 12px; }
.pathway p { font-size: 13.5px; color: var(--ink-500); line-height: 1.55; margin-bottom: 22px; flex-grow: 1; }
.pathway__arrow { color: var(--blue-500); width: 22px; height: 22px; transition: transform var(--t); }
.pathway:hover .pathway__arrow { transform: translateX(5px); }
@media (max-width: 900px) { .pathways { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pathways { grid-template-columns: 1fr; } }

/* -------------------------------------------------- *
 * 16. FEATURE SPLIT (image + checklist)               *
 * -------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.feature__media { position: relative; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; }
.feature__media .media-placeholder, .feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 20px; }
.feature__body > p { margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-700); }
.checklist svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 260px; order: -1; }
}

/* -------------------------------------------------- *
 * 17. STATS BAND                                       *
 * -------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats__item { text-align: center; padding: 8px 22px; border-left: 1px solid var(--line); }
.stats__item:first-child { border-left: 0; }
.stats__icon { width: 30px; height: 30px; margin: 0 auto 14px; color: var(--blue-600); }
.stats__num { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 38px); font-weight: 700; color: var(--ink-900); line-height: 1; }
.stats__label { font-size: 13px; color: var(--ink-500); margin-top: 8px; line-height: 1.4; }
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stats__item:nth-child(odd) { border-left: 0; }
}

/* -------------------------------------------------- *
 * 18. FINAL CTA (with diamond motif)                  *
 * -------------------------------------------------- */
.finalcta { background: var(--blue-100); position: relative; overflow: hidden; }
.finalcta__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.finalcta h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.finalcta p { max-width: 50ch; margin-bottom: 28px; font-size: 16px; }
.finalcta__motif { display: grid; place-items: center; }
.finalcta__motif svg, .finalcta__motif img { width: min(260px, 78%); height: auto; opacity: .95; }
@media (max-width: 760px) {
  .finalcta__grid { grid-template-columns: 1fr; }
  .finalcta__motif { display: none; }
}

/* Services overview header variant (intro spans, cards below) */
.svc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.svc-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.svc-head p { font-size: 16px; }
@media (max-width: 760px) { .svc-head { grid-template-columns: 1fr; gap: 16px; } }

/* 4-up icon card grid (homepage services overview) */
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.svc-card--outline .svc-card__icon { width: 52px; height: 52px; border: 1.5px solid var(--blue-500); border-radius: 6px; transform: rotate(45deg); display: grid; place-items: center; padding: 0; }
.svc-card--outline .svc-card__icon svg { width: 26px; height: 26px; transform: rotate(-45deg); }
.svc-card__more { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue-500); display: inline-flex; gap: 7px; align-items: center; margin-top: 16px; }
@media (max-width: 900px) { .card-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .card-grid--4 { grid-template-columns: 1fr; } }

/* -------------------------------------------------- *
 * 19. REAL LOGO ASSETS                                *
 * -------------------------------------------------- */
.brand__logo { height: 50px; width: auto; display: block; }
.brand__mark-img { height: 42px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 480px) { .brand__logo { height: 40px; } }

/* Footer wordmark: stack name over tagline cleanly */
.footer__brand .brand__text { display: block; }
.footer__brand .brand__name { display: block; white-space: nowrap; line-height: 1.05; }
.footer__brand .brand__tag { display: block; margin-top: 4px; }
.footer__brand .brand { align-items: center; gap: 12px; }

/* -------------------------------------------------- *
 * 20. PROCESS (horizontal numbered steps)             *
 * -------------------------------------------------- */
.process__intro { max-width: 60ch; margin-bottom: 44px; }
.process__intro h2 { font-size: clamp(26px,3.2vw,38px); margin-bottom: 16px; }
.process__row { display: flex; align-items: flex-start; gap: 6px; }
.process__step { flex: 1 1 0; min-width: 0; text-align: center; padding: 0 12px; }
.process__num { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-600); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; margin: 0 auto 20px; }
.process__icon { width: 36px; height: 36px; margin: 0 auto 16px; color: var(--blue-600); }
.process__step h3 { font-family: var(--serif); font-size: 16px; color: var(--ink-900); margin-bottom: 9px; }
.process__step p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }
.process__arrow { flex: 0 0 auto; width: 20px; height: 20px; color: #9DB2CE; margin-top: 7px; }
@media (max-width: 760px) {
  .process__row { flex-direction: column; gap: 26px; }
  .process__arrow { display: none; }
  .process__step { text-align: left; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 4px; padding: 0; }
  .process__num { margin: 0; grid-row: 1 / span 3; }
  .process__icon { display: none; }
}

/* Dark process band (Real Estate) */
.section--navy { background: var(--navy-900); color: #B9C6DA; }
.process-dark { display: grid; grid-template-columns: 0.85fr 2.15fr; gap: clamp(28px,4vw,52px); align-items: start; }
.process-dark__head .eyebrow { color: var(--blue-500); }
.process-dark__head h2 { color: #fff; font-size: clamp(24px,3vw,34px); margin-bottom: 22px; }
.process-dark__head .textlink { color: #fff; }
.process-dark .process__row { gap: 4px; }
.process-dark__step { flex: 1 1 0; min-width: 0; padding: 0 12px; border-left: 1px solid #20406A; }
.process-dark__step:first-child { border-left: 0; padding-left: 0; }
.process-dark__num { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: #5E79A0; margin-bottom: 14px; }
.process-dark__icon { width: 30px; height: 30px; color: #fff; margin-bottom: 16px; }
.process-dark__step h3 { color: #fff; font-family: var(--serif); font-size: 15.5px; margin-bottom: 9px; }
.process-dark__step p { color: #93A4BD; font-size: 12.5px; line-height: 1.5; }
@media (max-width: 860px) {
  .process-dark { grid-template-columns: 1fr; }
  .process-dark .process__row { flex-direction: column; gap: 22px; }
  .process-dark__step { border-left: 0; padding: 0 0 0 0; }
}

/* -------------------------------------------------- *
 * 21. DELIVERABLES (checklist + report fan)           *
 * -------------------------------------------------- */
.deliverables { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.deliverables__body h2 { font-size: clamp(26px,3.2vw,38px); margin-bottom: 18px; }
.deliverables__body > p { margin-bottom: 24px; }
.deliverables__fan { position: relative; min-height: 360px; }
.report-pg { position: absolute; top: 50%; border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow-float); background: #fff; overflow: hidden; }
.report-pg .media-placeholder { width: 100%; height: 100%; }
.report-pg--1 { width: 46%; height: 320px; left: 0; transform: translateY(-50%) rotate(-4deg); z-index: 4; }
.report-pg--2 { width: 42%; height: 300px; left: 28%; transform: translateY(-50%) rotate(0deg); z-index: 3; }
.report-pg--3 { width: 42%; height: 300px; left: 56%; transform: translateY(-50%) rotate(4deg); z-index: 2; }
@media (max-width: 820px) {
  .deliverables { grid-template-columns: 1fr; }
  .deliverables__fan { min-height: 280px; order: -1; }
}

/* -------------------------------------------------- *
 * 22. SERVICE OVERVIEW CARDS                           *
 * -------------------------------------------------- */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; background: #fff; display: flex; flex-direction: column; transition: all var(--t); }
.service-card:hover { border-color: #C8D6EA; box-shadow: var(--shadow-float); transform: translateY(-3px); }
.service-card__icon { width: 50px; height: 50px; border: 1.5px solid var(--blue-500); border-radius: 7px; transform: rotate(45deg); display: grid; place-items: center; margin-bottom: 24px; }
.service-card__icon svg { width: 24px; height: 24px; transform: rotate(-45deg); color: var(--blue-600); }
.service-card h3 { font-family: var(--serif); font-size: 19px; color: var(--ink-900); margin-bottom: 10px; }
.service-card__sub { font-size: 13.5px; color: var(--blue-500); font-weight: 600; margin-bottom: 14px; }
.service-card p { font-size: 14px; color: var(--ink-500); line-height: 1.55; margin-bottom: 22px; flex-grow: 1; }
.service-card__link { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue-500); display: inline-flex; gap: 8px; align-items: center; }
.service-card__link .arr { transition: transform var(--t); }
.service-card:hover .service-card__link .arr { transform: translateX(4px); }
@media (max-width: 900px) { .service-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-cards { grid-template-columns: 1fr; } }

/* -------------------------------------------------- *
 * 23. SERVICE DETAIL: intro, support list, chips      *
 * -------------------------------------------------- */
.detail-intro { display: grid; grid-template-columns: 0.85fr 1.5fr; gap: clamp(28px,5vw,64px); align-items: start; }
.detail-intro h2 { font-size: clamp(23px,2.8vw,32px); }
.detail-intro p { font-size: 16px; margin-bottom: 16px; }
.detail-intro p:last-child { margin-bottom: 0; }
@media (max-width: 760px) { .detail-intro { grid-template-columns: 1fr; gap: 14px; } }

.support-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 48px; }
.support-item { display: flex; gap: 18px; align-items: flex-start; }
.support-item__icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--blue-050); border-radius: 9px; display: grid; place-items: center; color: var(--blue-600); }
.support-item__icon svg { width: 23px; height: 23px; }
.support-item h3 { font-family: var(--serif); font-size: 17px; color: var(--ink-900); margin-bottom: 7px; }
.support-item p { font-size: 14px; color: var(--ink-500); line-height: 1.55; }
@media (max-width: 720px) { .support-list { grid-template-columns: 1fr; gap: 26px; } }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 100px; padding: 9px 18px; font-size: 13.5px; color: var(--ink-700); }

.checklist--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; }
@media (max-width: 620px) { .checklist--grid { grid-template-columns: 1fr; } }

/* Section heading block (centered or left intro for detail sections) */
.sec-head { margin-bottom: 40px; max-width: 62ch; }
.sec-head h2 { font-size: clamp(25px,3vw,36px); margin-bottom: 14px; }
.sec-head p { font-size: 16px; }

/* -------------------------------------------------- *
 * 24. CENTERED CTA BAND (navy)                         *
 * -------------------------------------------------- */
.cta-band { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px,5vw,64px) clamp(24px,4vw,48px); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(25px,3.2vw,38px); margin-bottom: 12px; }
.cta-band p { color: #A9B8CE; max-width: 54ch; margin: 0 auto 28px; }
.cta-band .btn--primary { background: #fff; color: var(--navy-900); }
.cta-band .btn--primary:hover { background: var(--blue-100); color: var(--navy-900); }

/* -------------------------------------------------- *
 * 25. INSIGHTS: category cards, featured, newsletter  *
 * -------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.cat { text-align: center; padding: 6px 16px; border-left: 1px solid var(--line-soft); transition: color var(--t); }
.cat:first-child { border-left: 0; }
.cat:hover { color: var(--blue-600); }
.cat__icon { width: 30px; height: 30px; margin: 0 auto 12px; color: var(--blue-600); }
.cat__label { font-size: 12.5px; font-weight: 600; color: var(--ink-700); line-height: 1.4; }
.cat:hover .cat__label { color: var(--blue-600); }
@media (max-width: 820px) { .cat-grid { grid-template-columns: 1fr 1fr 1fr; gap: 26px 0; } .cat:nth-child(3n+1){border-left:0;} }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr 1fr; } .cat{border-left:0;} }

.res-card__tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.95); color: var(--blue-600); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 3px; }
.res-card__desc { font-size: 13px; color: var(--ink-500); line-height: 1.5; margin-bottom: 16px; }

.newsletter { background: var(--blue-050); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(26px,3.5vw,38px) clamp(24px,4vw,44px); display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.newsletter__icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--blue-600); color: #fff; border-radius: 50%; display: grid; place-items: center; }
.newsletter__icon svg { width: 24px; height: 24px; }
.newsletter__text { flex: 1 1 220px; }
.newsletter__text h3 { font-family: var(--serif); font-size: 20px; color: var(--ink-900); margin-bottom: 4px; }
.newsletter__text p { font-size: 14px; color: var(--ink-500); }
.newsletter__form { display: flex; gap: 10px; flex: 1 1 320px; }
.newsletter__input { flex: 1; min-width: 0; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; font-size: 14px; color: var(--ink-900); }
.newsletter__input:focus-visible { border-color: var(--blue-500); box-shadow: var(--ring); }
@media (max-width: 560px) { .newsletter__form { flex-direction: column; } }

.topics-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.chip--link { transition: all var(--t); }
.chip--link:hover { border-color: var(--blue-500); color: var(--blue-600); background: var(--blue-050); }

/* -------------------------------------------------- *
 * 26. ABOUT: values, story, team                      *
 * -------------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px,3vw,40px); }
.value__icon { width: 52px; height: 52px; border: 1.5px solid var(--blue-500); border-radius: 8px; transform: rotate(45deg); display: grid; place-items: center; margin-bottom: 22px; }
.value__icon svg { width: 24px; height: 24px; transform: rotate(-45deg); color: var(--blue-600); }
.value h3 { font-family: var(--serif); font-size: 18px; color: var(--ink-900); margin-bottom: 10px; }
.value p { font-size: 14px; color: var(--ink-500); line-height: 1.55; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .values { grid-template-columns: 1fr; } }

.mission-lead { max-width: 60ch; font-family: var(--serif); font-size: clamp(20px,2.4vw,27px); line-height: 1.4; color: var(--ink-900); }

/* -------------------------------------------------- *
 * 27. CONTACT: cards, form, help sidebar, office map  *
 * -------------------------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; background: #fff; }
.contact-card__icon { width: 52px; height: 52px; background: var(--blue-050); color: var(--blue-600); border-radius: 10px; display: grid; place-items: center; margin-bottom: 20px; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-family: var(--serif); font-size: 18px; color: var(--ink-900); margin-bottom: 14px; }
.contact-card__lines { display: flex; flex-direction: column; gap: 11px; }
.contact-card__line { display: flex; flex-direction: column; gap: 1px; }
.contact-card__label { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-400); }
.contact-card__line a, .contact-card__line span { font-size: 15px; color: var(--ink-700); }
.contact-card__line a:hover { color: var(--blue-600); }
@media (max-width: 820px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(32px,4vw,52px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* Form */
.form__head h2 { font-size: clamp(24px,3vw,32px); margin-bottom: 8px; }
.form__head p { font-size: 15px; margin-bottom: 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field > label { font-size: 13.5px; font-weight: 600; color: var(--ink-700); }
.field .req { color: #C0392B; margin-left: 2px; }
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 14.5px; color: var(--ink-900); background: #fff; width: 100%;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--blue-500); box-shadow: var(--ring); outline: none; }
.field--error input, .field--error select, .field--error textarea { border-color: #C0392B; }
.field__error { font-size: 12.5px; color: #C0392B; display: none; }
.field--error .field__error { display: block; }
.field__hint { font-size: 12px; color: var(--ink-400); }
.field input[type="file"] { padding: 9px 12px; background: var(--paper); cursor: pointer; }
fieldset { border: 0; padding: 0; margin: 0 0 18px; }
fieldset legend { font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-bottom: 9px; padding: 0; }
.radio-group { display: flex; gap: 22px; flex-wrap: wrap; }
.radio { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-700); cursor: pointer; }
.radio input { width: auto; accent-color: var(--blue-600); }
.form__status { padding: 13px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 18px; }
.form__status--ok { background: #E6F4EA; color: #1E7E47; border: 1px solid #BFE3CC; }
.form__status--err { background: #FCEBEA; color: #C0392B; border: 1px solid #F3C9C5; }
.form__note { font-size: 12.5px; color: var(--ink-400); margin-top: 14px; }

/* Help sidebar */
.help-card { background: var(--blue-050); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 30px 28px; }
.help-card h3 { font-family: var(--serif); font-size: 19px; color: var(--ink-900); margin-bottom: 22px; }
.help-list { display: flex; flex-direction: column; gap: 22px; }
.help-item { display: flex; gap: 14px; align-items: flex-start; }
.help-item__icon { width: 40px; height: 40px; flex-shrink: 0; background: #fff; color: var(--blue-600); border: 1px solid var(--line); border-radius: 9px; display: grid; place-items: center; }
.help-item__icon svg { width: 20px; height: 20px; }
.help-item h4 { font-size: 15px; color: var(--ink-900); margin-bottom: 4px; }
.help-item p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

/* Office + map */
.office { display: grid; grid-template-columns: 1.4fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.office__map { min-height: 340px; background: var(--blue-100); }
.office__map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 340px; }
.office__info { padding: clamp(28px,3vw,40px); align-self: center; }
.office__info h3 { font-family: var(--serif); font-size: 22px; color: var(--ink-900); margin-bottom: 16px; }
.office__info address { font-style: normal; font-size: 15px; color: var(--ink-700); line-height: 1.6; margin-bottom: 18px; }
@media (max-width: 760px) { .office { grid-template-columns: 1fr; } .office__map { order: -1; } }

/* -------------------------------------------------- *
 * 28. LEGAL / DOCUMENT PAGES                          *
 * -------------------------------------------------- */
.page-header { background: var(--paper); border-bottom: 1px solid var(--line); padding-block: clamp(46px,6vw,82px); }
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 { font-size: clamp(30px,4.2vw,46px); margin-bottom: 14px; }
.page-header__meta { font-size: 14px; color: var(--ink-400); }
.page-header__lead { font-size: 17px; color: var(--ink-500); max-width: 64ch; margin-top: 18px; }

.prose { max-width: 760px; }
.prose > h2:first-of-type { margin-top: 0; }
.prose h2 { font-size: clamp(20px,2.4vw,26px); margin: 42px 0 14px; }
.prose h3 { font-family: var(--serif); font-size: 17px; color: var(--ink-900); margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-700); font-size: 15.5px; line-height: 1.7; }
.prose ul { display: flex; flex-direction: column; gap: 9px; margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 22px; color: var(--ink-700); font-size: 15.5px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; background: var(--blue-500); border-radius: 50%; }
.prose a { color: var(--blue-600); text-decoration: underline; }
.prose strong { color: var(--ink-900); font-weight: 600; }
.prose address { font-style: normal; color: var(--ink-700); font-size: 15.5px; line-height: 1.7; }
.prose__note { background: var(--blue-050); border: 1px solid var(--line-soft); border-left: 3px solid var(--blue-500); border-radius: var(--radius); padding: 16px 18px; font-size: 14.5px; color: var(--ink-700); margin: 0 0 28px; }
