@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); }

/* =================== SKIP LINK (a11y) =================== */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--sp-navy); color: var(--paper);
  padding: 12px 18px; border-radius: 8px;
  font-weight: 600; text-decoration: none;
  margin: 8px;
}
.skip-link:focus { left: 0; outline: 3px solid var(--sp-teal); outline-offset: 2px; }

/* =================== VISUALLY HIDDEN UTIL =================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
body { font-family: var(--font-body); color: var(--sp-navy); font-size: 17px; line-height: 1.55; }

/* =================== NAV =================== */
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 1px solid var(--divider);
  position: sticky; top: 0; background: rgba(251, 248, 243, 0.94);
  backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px);
  z-index: 50;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--sp-navy); }
.brand__lockup { display: block; height: 40px; width: auto; }
sup.brand__reg { font-size: 11px !important; font-weight: 600; vertical-align: super; margin-left: 2px; color: var(--sp-navy); opacity: 0.5; line-height: 1; top: 0; position: static; }
.site-nav__desktop { display: flex; gap: 36px; align-items: center; }
.site-nav__desktop a { text-decoration: none; color: var(--sp-navy); font-size: 15px; font-weight: 500; padding: 6px 0; position: relative; }
.site-nav__desktop a:hover { color: var(--accent-text); }

/* =================== BUTTONS =================== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer; border: none; text-decoration: none; transition: all 200ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1)); }
.btn--pill { padding: 14px 26px; border-radius: 999px; }
.btn--navy { background: var(--sp-navy); color: var(--paper); }
.btn--navy:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: 0 6px 18px -6px rgba(13,33,55,0.35); }
.btn--teal { background: var(--sp-teal); color: var(--sp-navy); }
.btn--teal:hover { background: var(--teal-500); transform: translateY(-1px); }
.btn--text { color: var(--sp-navy); padding: 14px 4px; text-decoration-line: underline; text-decoration-color: transparent; text-underline-offset: 4px; text-decoration-thickness: 2px; transition: text-decoration-color 200ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1)); }
.btn--text:hover { text-decoration-color: var(--sp-navy); }
.btn:focus-visible, .btn:focus { outline: 3px solid var(--sp-teal); outline-offset: 2px; }

/* =================== EYEBROW =================== */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); }
.eyebrow--light { color: var(--accent-on-dark); }

/* =================== HERO =================== */
.hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px; align-items: center;
  padding: 72px 56px 96px;
  max-width: 1440px; margin: 0 auto;
}
.hero__copy { min-width: 0; }
.hero__image { min-width: 0; width: 100%; max-width: 384px; margin: 0 auto; }
.hero__image .photo-slot { width: 100%; }

/* Layered illustration + editable SVG route overlay */
.hero__layered { position: relative; width: 100%; line-height: 0; }
.hero__layered > img { width: 100%; height: auto; display: block; }
.hero__layered > .hero__route {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Pulse markers — locate.svg-style ripple loader (preloaders.net's uil-ripple).
   Each marker has a white body, gold anchor, and two staggered rings that
   ripple outward by growing both `r` and `stroke-width` while fading to zero.
   Two rings per marker, half a cycle apart, gives a continuous radar cadence.
   Gated on image load via `.is-ready` so nothing animates over empty space. */
.hero__pulse {
  opacity: 0;
  transition: opacity 0.45s ease-out;
}
.hero__route--pulses.is-ready .hero__pulse {
  opacity: 1;
}
.hero__pulse-ring {
  opacity: 0;
}
.hero__route--pulses.is-ready .hero__pulse-ring {
  animation: heroLocateRipple var(--hero-pulse-duration, 2s)
    ease-out var(--hero-pulse-count, 3) forwards;
  animation-delay: var(--hero-pulse-delay, 0s);
}
@keyframes heroLocateRipple {
  0%   { r: 0;   stroke-width: 0;  opacity: 1; }
  100% { r: 100; stroke-width: 40; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__route--pulses.is-ready .hero__pulse-ring {
    animation: none;
    /* Ring stays at its initial r=0 / stroke-width=0 — only the
       white body + gold anchor remain visible. */
  }
}
.hero__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(51px, 6.8vw, 102px); line-height: 0.98; letter-spacing: -0.025em;
  margin: 18px 0 28px; text-wrap: balance; color: var(--sp-navy);
}
.hero__h em {
  /* Italic accent stays Instrument Serif — the rare editorial moment. */
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text-large);
  font-size: 1.02em;
}
.hero__lede { font-size: 18px; line-height: 1.45; color: var(--fg-muted); max-width: 520px; font-weight: 300; margin: 0 0 14px; }
.hero__supporting {
  /* Coded as an <h2> so accessibility scanners see a real heading where one is
     visually implied — page outline reads h1 (page title) → h2 (page tagline) →
     h2 (section: Purpose) → … . Explicit weight + line-height override the
     global h2 defaults so the styling stays editorial-italic, not bold-headline. */
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--accent-text);
  margin: 14px 0 0;
}
.hero__cta { display: flex; gap: 18px; align-items: center; margin-top: 36px; }

/* =================== PHOTO SLOT — real placeholder image + chip =================== */
.photo-slot {
  position: relative; overflow: hidden;
  background: var(--paper-2);
  border-radius: 18px;
  margin: 0;
  display: block;
}
.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.photo-slot__chip {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(13, 33, 55, 0.86); color: var(--paper);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.photo-slot__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sp-teal);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.8);
  animation: slot-pulse 2.4s ease-out infinite;
}
@keyframes slot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(45, 212, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =================== MARQUEE =================== */
.marquee { background: var(--sp-navy); color: var(--paper); overflow: hidden; }
.marquee__inner {
  display: flex; align-items: center; gap: 36px; justify-content: center;
  padding: 22px 56px;
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.005em;
  flex-wrap: wrap;
}
.marquee__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sp-teal); }

/* =================== BAND (generic section) =================== */
.band { padding: 128px 56px; }
.band--paper { background: var(--paper); }
.band--paper-2 { background: var(--paper-2); }
.band--dark { background: var(--sp-navy); color: var(--paper); }
.band--dark h2, .band--dark h3 { color: var(--paper); }
.band__head { max-width: 1280px; margin: 0 auto 64px; }
.band__head--split { max-width: 1280px; }
.band__head h2 {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(44px, 5vw, 72px); line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 14px 0 0; text-wrap: balance; color: inherit;
}
.band__head h2 em {
  /* Italic accent in Instrument Serif — the rare editorial moment. */
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text-large);
  font-size: 1.02em;
}
.band--dark .band__head h2 em { color: var(--accent-on-dark); }
.band__sub { font-size: 20px; line-height: 1.55; color: var(--fg-muted); max-width: 760px; margin-top: 24px; font-weight: 300; }
.band__sub--wide { max-width: none; white-space: nowrap; }
@media (max-width: 1100px) { .band__sub--wide { white-space: normal; } }
.band--dark .band__sub { color: var(--navy-200); }

/* =================== TWO-COL (purpose) =================== */
.two-col { display: grid; grid-template-columns: 1fr 1.3fr; gap: 96px; max-width: 1280px; margin: 0 auto; align-items: start; }
.triad { font-family: var(--font-body); font-weight: 600; font-size: clamp(56px, 6vw, 96px); line-height: 1.04; letter-spacing: -0.015em; margin: 14px 0 0; color: var(--sp-navy); }
.triad em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text-large);
  font-size: 1.02em;
}
.two-col__right { padding-top: 18px; }
.two-col .lede { font-size: 22px; font-weight: 300; color: var(--fg-muted); margin: 0 0 20px; max-width: 640px; }
.two-col p { font-size: 17px; line-height: 1.65; color: var(--fg-muted); max-width: 640px; }

/* Purpose section uses navy as its surface — early dark anchor that
   gives the mission statement gravity. Overrides the band--paper default. */
#purpose.band { background: var(--sp-navy); color: var(--paper); }
#purpose .triad { color: var(--paper); }
#purpose .triad em { color: var(--accent-on-dark); }
#purpose .two-col .lede { color: var(--paper); }
#purpose .two-col p { color: var(--navy-100); }
#purpose .eyebrow { color: var(--accent-on-dark); }

/* =================== PRINCIPLES =================== */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; }
.principle { padding: 32px; background: var(--paper-2); border-radius: 14px; border: 1px solid var(--divider); }
.principle__num { font-family: var(--font-body); font-weight: 600; font-size: 28px; color: var(--accent-text-large); letter-spacing: -0.005em; margin-bottom: 14px; }
.principle h3 { font-family: var(--font-body); font-size: 26px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em; color: var(--sp-navy); }
.principle p { font-size: 16px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* =================== JOURNEY-MAP BREAK =================== */
.journey-break .band__head { text-align: center; }
.journey-break .band__head .band__sub { max-width: none; margin-left: auto; margin-right: auto; white-space: nowrap; }
.journey-map { max-width: 1400px; margin: 32px auto 0; padding: 0 24px; }
.journey-map img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .journey-break .band__head .band__sub { white-space: normal; }
}

/* =================== STATS =================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1280px; margin: 0 auto; }
.stat { border-top: 1px solid var(--navy-600); padding-top: 28px; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(96px, 10vw, 144px); line-height: 0.92; color: var(--accent-on-dark); letter-spacing: -0.035em; }
.stat__num small { font-size: 52px; color: var(--navy-100); font-weight: 400; margin: 0 2px; }
.stat p { font-size: 17px; line-height: 1.55; color: var(--navy-100); margin: 18px 0 14px; max-width: 360px; }
.stat__src { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-100); font-weight: 700; }

/* =================== SECTORS =================== */
.sectors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.sector { background: var(--paper-2); border: 1px solid var(--divider); border-radius: 18px; padding: 36px; transition: all 200ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1)); position: relative; }
.sector:hover { border-color: var(--sp-navy); transform: translateY(-2px); box-shadow: 0 12px 28px -16px rgba(13,33,55,0.2); }
.sector__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); }
.sector h3 { font-family: var(--font-body); font-size: 32px; font-weight: 600; margin: 12px 0 12px; letter-spacing: -0.015em; }
.sector p { font-size: 16px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* =================== POLICIES (homepage teasers) =================== */
.policies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.policy {
  position: relative;
  background: var(--paper); border: 1px solid var(--divider); border-radius: 18px;
  padding: 36px 40px 32px;
  text-decoration: none; color: var(--sp-navy);
  transition: all 200ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1));
  display: block;
}
.policy:hover { border-color: var(--sp-navy); transform: translateY(-2px); box-shadow: 0 14px 32px -18px rgba(13,33,55,0.25); }
.policy__arrow {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--font-body); font-size: 30px;
  color: var(--accent-text-large);
  transition: transform 200ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1));
}
.policy:hover .policy__arrow { transform: translateX(6px); color: var(--sp-navy); }
.policy h3 { font-family: var(--font-body); font-size: 26px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em; color: var(--sp-navy); padding-right: 48px; }
.policy p { font-size: 16px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 16px; }
.policy__read { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); }

/* =================== CREDIBILITY =================== */
.cred-h { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sp-navy); margin-bottom: 24px; }
.credibility__awards { max-width: 1280px; margin: 0 auto 64px; }
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.award { background: var(--paper); border: 1px solid var(--divider); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; min-height: 200px; transition: all 200ms; }
.award:hover { border-color: var(--sp-navy); transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(13,33,55,0.2); }
.award__logo { height: 64px; display: flex; align-items: center; }
.award__logo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; object-position: left center; opacity: 0.78; filter: saturate(0); transition: all 200ms; }
.award:hover .award__logo img { opacity: 1; filter: saturate(1); }
.award p { font-size: 13px; line-height: 1.5; color: var(--sp-navy); margin: 0; font-weight: 500; }

.credibility__partners { max-width: 1280px; margin: 0 auto; padding-top: 48px; border-top: 1px solid var(--divider); }
.partners-row { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.partners-row img { height: 44px; width: auto; opacity: 0.78; filter: saturate(0); transition: all 200ms; }
.partners-row img:hover { opacity: 1; filter: saturate(1); }

/* =================== CTA =================== */
.cta { padding: 128px 56px; }
.cta__inner { max-width: 880px; margin: 0 auto; }
.cta__h { font-family: var(--font-body); font-weight: 600; font-size: clamp(44px, 5vw, 72px); line-height: 1.1; letter-spacing: -0.015em; color: var(--paper); text-wrap: balance; margin: 18px 0 48px; }
.cta__h em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--sp-teal);
  font-size: 1.02em;
}
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field span { font-size: 12px; color: var(--navy-200); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.field span small { font-weight: 400; text-transform: none; letter-spacing: 0.02em; color: var(--navy-300); }
.field input, .field textarea {
  background: rgba(255,255,255,0.06); border: 1.5px solid var(--navy-500); border-radius: 10px;
  padding: 14px 16px; color: var(--paper); font-family: var(--font-body); font-size: 16px;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--navy-300); }
.field input:focus, .field textarea:focus { outline: 3px solid var(--sp-teal); outline-offset: 1px; border-color: var(--sp-teal); }
.cta__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 28px; margin-top: 8px; }
.cta__or { color: var(--navy-200); font-size: 14px; }
.cta__or a { color: var(--sp-teal); text-decoration: none; border-bottom: 1px solid var(--sp-teal); }
.cta__status { color: var(--navy-100); font-size: 14px; min-height: 1.2em; }
.cta__status:empty { display: none; }
.btn:disabled { opacity: 0.6; cursor: progress; transform: none; }

/* =================== FOOTER =================== */
.site-foot { background: var(--paper-2); padding: 64px 56px 32px; border-top: 1px solid var(--divider); }
.foot-aoc { max-width: 1280px; margin: 0 auto 56px; padding: 32px; background: var(--paper); border: 1px solid var(--divider); border-radius: 18px; }
.foot-aoc__head { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sp-navy); margin-bottom: 14px; }
.foot-aoc p { font-size: 15px; line-height: 1.65; color: var(--fg-muted); margin: 0; max-width: 960px; }
.foot-main { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; max-width: 1280px; margin: 0 auto; align-items: stretch; }
.foot-brand { display: flex; align-items: stretch; gap: 16px; }
.foot-brand > img { align-self: flex-start; }
.foot-brand > div { display: flex; flex-direction: column; flex: 1; }
.foot-name { font-family: 'Familjen Grotesk', var(--font-body); font-weight: 500; font-size: 22px; letter-spacing: -0.022em; color: var(--sp-navy); margin-bottom: 6px; line-height: 1.1; }
.foot-tag { font-size: 13px; line-height: 1.5; color: var(--fg-muted); }
.foot-legal-link { margin-top: auto; padding-top: 24px; color: var(--fg-muted); text-decoration: none; font-size: 14px; }
.foot-legal-link:hover { color: var(--accent-text); }
.foot-cols { display: grid; grid-template-columns: 1fr; gap: 40px; padding-left: 64px; border-left: 1px solid var(--divider); }
.foot-h { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sp-navy); margin-bottom: 14px; }
.foot-cols a { display: block; color: var(--fg-muted); text-decoration: none; font-size: 14px; padding: 4px 0; }
.foot-cols a:hover { color: var(--accent-text); }
.foot-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; max-width: 1280px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--divider); font-size: 12px; color: var(--fg-muted); letter-spacing: 0.02em; }

/* ===================================================================
   RESPONSIVE
   Three breakpoints:
     desktop  ≥1025px  (the rules above)
     tablet   641–1024px
     phone    ≤640px
   New mobile nav (hamburger + drawer) lives in here too.
   =================================================================== */

/* ----- Mobile nav primitives (hidden on desktop, shown <=900px) ----- */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

.nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-shrink: 0; /* preserve 44px hit-target inside the flex nav bar */
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  transition: background 200ms;
}
.nav-toggle:hover { background: rgba(13, 33, 55, 0.06); }
.nav-toggle:focus-visible { outline: 3px solid var(--sp-teal); outline-offset: 2px; }
.nav-toggle__bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--sp-navy);
  border-radius: 2px;
  transition: transform 220ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1)),
              opacity 160ms;
}
.site-nav--open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav--open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-nav--open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 84px; /* sits below the nav bar — overridden per breakpoint */
  background: var(--paper);
  z-index: 49;
  padding: 32px 28px 40px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1)),
              transform 220ms var(--ease-standard, cubic-bezier(0.2, 0.7, 0.2, 1));
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  display: block;
  text-decoration: none;
  color: var(--sp-navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  padding: 14px 4px;
  border-bottom: 1px solid var(--divider);
}
.mobile-menu__nav a:hover { color: var(--accent-text); }
.mobile-menu__nav a sup { font-size: 0.55em; }
.mobile-menu__cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
}

/* =================== TABLET (641 – 1024px) =================== */
@media (max-width: 1024px) {
  body { font-size: 16px; }

  /* Nav — switch to hamburger from here down */
  .site-nav { padding: 16px 28px; }
  .site-nav__desktop { display: none; }
  .nav-actions { display: none; } /* CTA moves into the drawer */
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  /* Marquee */
  .marquee__inner { padding: 18px 28px; gap: 24px; }

  /* Bands */
  .band { padding: 96px 32px; }
  .band__head { margin-bottom: 48px; }

  /* Hero — stack copy + image */
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 32px 80px;
  }
  .hero__image { max-width: 480px; }
  .hero__lede { max-width: none; }

  /* Two-col (purpose) — stack */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col__right { padding-top: 0; }

  /* Principles — 1 col (cards are wide, 3-up feels cramped at this width) */
  .principles { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Stats — 1 col (the numbers are huge) */
  .stats { grid-template-columns: 1fr; gap: 40px; }
  .stat__num { font-size: clamp(80px, 14vw, 120px); }

  /* Sectors / policies — 1 col */
  .sectors,
  .policies { grid-template-columns: 1fr; gap: 16px; }

  /* Awards — 2 cols */
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partners-row { gap: 36px; }

  /* CTA */
  .cta { padding: 96px 32px; }
  .cta__form { grid-template-columns: 1fr; gap: 18px; }
  .cta__actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Footer */
  .site-foot { padding: 48px 28px 28px; }
  .foot-aoc { padding: 24px; margin-bottom: 40px; }
  .foot-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .foot-cols {
    padding-left: 0;
    border-left: none;
    padding-top: 32px;
    border-top: 1px solid var(--divider);
  }
  .foot-legal-link { padding-top: 16px; }
}

/* =================== PHONE (≤640px) =================== */
@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Nav */
  .site-nav { padding: 12px 18px; }
  .brand__lockup { height: 32px; }
  .mobile-menu { top: 68px; padding: 24px 20px 32px; }
  .mobile-menu__nav a { font-size: 20px; padding: 12px 2px; }

  /* Marquee */
  .marquee__inner {
    padding: 16px 20px;
    gap: 14px;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .marquee__dot { width: 4px; height: 4px; }

  /* Bands */
  .band { padding: 72px 20px; }
  .band__head { margin-bottom: 36px; }

  /* Hero */
  .hero {
    gap: 36px;
    padding: 40px 20px 64px;
  }
  .hero__h {
    /* the desktop floor of 51px is too tall on a 390px viewport */
    font-size: clamp(40px, 12vw, 56px);
    margin: 14px 0 20px;
  }
  .hero__lede { font-size: 17px; }
  .hero__supporting { font-size: 19px; }
  .hero__cta { margin-top: 24px; }
  /* Let the hero photo actually be visible — desktop caps it at 384px which
     looks like a postage stamp on phone. Fill the column with a sensible cap. */
  .hero__image { max-width: 100%; }

  /* Two-col */
  .two-col { gap: 24px; }
  .two-col .lede { font-size: 19px; }

  /* Principles — single column on phone */
  .principles { grid-template-columns: 1fr; gap: 14px; }
  .principle { padding: 24px; }
  .principle h3 { font-size: 22px; }

  /* Stats */
  .stat__num { font-size: clamp(72px, 18vw, 96px); }
  .stat__num small { font-size: 36px; }

  /* Sectors */
  .sector { padding: 28px; }
  .sector h3 { font-size: 26px; }

  /* Policies (homepage teasers) */
  .policy { padding: 28px 24px 24px; }
  .policy h3 { font-size: 22px; padding-right: 36px; }
  .policy__arrow { top: 22px; right: 22px; font-size: 26px; }

  /* Awards — single column on phone */
  .awards-grid { grid-template-columns: 1fr; }
  .award { min-height: 0; padding: 22px; }
  .partners-row { gap: 28px; }
  .partners-row img { height: 36px; }

  /* CTA */
  .cta { padding: 72px 20px; }
  .cta__h { margin-bottom: 32px; }
  .cta__or { font-size: 13px; }

  /* Footer */
  .site-foot { padding: 40px 20px 24px; }
  .foot-aoc { padding: 20px; margin-bottom: 32px; }
  .foot-aoc p { font-size: 14px; }
  .foot-brand { gap: 14px; }
  .foot-base { margin-top: 32px; font-size: 11px; }

  /* Skip link */
  .skip-link:focus { margin: 4px; padding: 10px 14px; font-size: 14px; }
}

/* =================== Very narrow (≤380px) — small last-mile fix =================== */
@media (max-width: 380px) {
  .hero__h { font-size: clamp(36px, 11vw, 44px); }
  .marquee__inner { font-size: 15px; }
  .stat__num { font-size: 64px; }
  .stat__num small { font-size: 28px; }
}
