/* ============================================================
   HOKUA, LLC — "The Deep and the Crest"
   Dark oceanic editorial. Brand: charcoal #2f3b3f · slate #3b4d61
   · olive #556b2f (lifted on dark: #6f8a3f / #8aa45c) · light #eaeaea
   ============================================================ */

:root {
  --deep:       #14191c;   /* abyss — page ground        */
  --water:      #1f2529;   /* primary dark ground        */
  --panel:      #242c31;   /* raised surface             */
  --panel-2:    #2a3339;   /* higher surface             */
  --charcoal:   #2f3b3f;   /* brand charcoal             */
  --slate:      #3b4d61;   /* brand slate blue           */
  --slate-soft: #8aa2b8;   /* readable slate on dark     */
  --olive:      #6f8a3f;   /* brand olive, lifted        */
  --olive-text: #8aa45c;   /* olive for small type       */
  --ink:        #eaeaea;   /* brand light                */
  --ink-soft:   #b7c2c6;
  --ink-mute:   #85949a;
  --line:       rgba(234, 234, 234, 0.1);
  --line-strong:rgba(234, 234, 234, 0.18);

  --olive-deep:   #556b2f; /* brand olive, solid fills w/ white text */
  --olive-deeper: #4a5e29;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Archivo", "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", "Consolas", monospace;

  --shell: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  font-synthesis-style: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--olive-deep); color: #fff; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--olive-deep); color: #fff; padding: 10px 18px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- reveal animations ---------- */
.reveal-load {
  opacity: 0; transform: translateY(22px);
  animation: rise 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: none; } }

.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-load, .js .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .c, .hero-scroll span { animation: none !important; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled {
  background: rgba(20, 25, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.topbar-inner {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-right: auto;
}
.brand-mark { width: 44px; height: 44px; }
.brand-word {
  font-family: var(--font-body); font-weight: 700; font-size: 1.25rem;
  letter-spacing: 0.34em; text-indent: 0.34em;
}
.nav { display: flex; gap: clamp(14px, 2vw, 28px); }
.nav a {
  text-decoration: none; font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--ink-soft);
  padding: 6px 2px; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--olive);
  transition: right 0.3s var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

/* buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.04em;
  padding: 13px 26px; border-radius: 3px;
  transition: transform 0.25s var(--ease-out), background 0.25s ease,
              border-color 0.25s ease, color 0.25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--olive-deep); color: #fff; }
.btn-solid:hover { background: var(--olive-deeper); }
.btn-line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-line:hover { border-color: var(--olive-text); color: var(--olive-text); }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--ink);
  padding: 10px 20px; font-size: 0.84rem;
}
.btn-ghost:hover { border-color: var(--olive-text); color: var(--olive-text); }

.menu-toggle { display: none; }
.mobile-nav { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, #171d21 0%, var(--water) 55%, #1a2024 100%);
  overflow: hidden;
}
.hero-sea { position: absolute; inset: 0; pointer-events: none; }

/* Hawaiian dusk sea photograph, blended low into the ground */
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 66%;
  opacity: 0.55;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 25, 28, 0.86) 0%, rgba(20, 25, 28, 0.5) 40%,
      rgba(20, 25, 28, 0.12) 72%, rgba(20, 25, 28, 0.3) 100%),
    linear-gradient(180deg, rgba(20, 25, 28, 0.92) 0%, rgba(20, 25, 28, 0.35) 26%,
      rgba(20, 25, 28, 0.12) 55%, rgba(20, 25, 28, 0.62) 82%, #14191c 100%);
}

/* 3D wireframe swell over the water — fog-faded at its edges */
.sea3d {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 62%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.hero-glow {
  position: absolute; right: -16%; top: -28%;
  width: 62vw; height: 62vw; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(59, 77, 97, 0.32) 0%, rgba(59, 77, 97, 0.1) 42%, transparent 68%);
}
.grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; padding-top: 120px; padding-bottom: 80px; }

.kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive-text); margin-bottom: 30px;
}
.kicker-rule { width: 44px; height: 1px; background: var(--olive); flex: none; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 7.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic; font-weight: 500; color: var(--slate-soft);
}

.hero-sub {
  max-width: 56ch; margin-top: 30px;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  color: var(--ink-soft);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.registry {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(48px, 7vh, 84px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.registry dt {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 5px;
}
.registry dd {
  font-family: var(--font-mono); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--ink);
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; overflow: hidden; background: var(--line);
}
.hero-scroll span {
  position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--olive-text);
  animation: plumb 2.2s ease-in-out infinite;
}
@keyframes plumb { to { top: 110%; } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }

.sec-kicker {
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--olive-text); margin-bottom: 18px;
}
.sec-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12; letter-spacing: -0.01em;
}
.sec-lede { margin-top: 18px; color: var(--ink-soft); max-width: 52ch; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs {
  background: var(--deep);
  padding: clamp(80px, 12vh, 130px) 0;
}
.certs .sec-head { margin-bottom: clamp(40px, 6vh, 64px); }

.cert-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.cert-card {
  background: var(--water); padding: clamp(28px, 3.4vw, 44px);
  position: relative; overflow: hidden;
  transition: background 0.35s ease;
}
.cert-card:hover { background: var(--panel); }
.cert-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 100%;
  width: 3px; background: var(--olive);
  transition: bottom 0.45s var(--ease-out);
}
.cert-card:hover::before { bottom: 0; }
.cert-index {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 2.6rem; color: var(--slate-soft); opacity: 0.55;
  margin-bottom: 22px; line-height: 1;
}
.cert-card h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 1.12rem;
  letter-spacing: 0.01em; margin-bottom: 12px;
}
.cert-card p { font-size: 0.95rem; color: var(--ink-soft); }
.cert-card h3 + p { margin-top: 0; }

/* the full-width "result" band — an outcome, not a third certification */
.cert-card--result {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(24px, 4vw, 56px);
  background: rgba(111, 138, 63, 0.08);
}
.cert-card--result:hover { background: rgba(111, 138, 63, 0.13); }
.cert-result-body { flex: 1 1 420px; }
.cert-result-label {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--olive-text); margin-bottom: 14px;
}
.cert-card--result h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.6rem;
  letter-spacing: 0;
}
.cert-result-cta { flex: none; }

/* ============================================================
   CAPABILITIES
   ============================================================ */
.caps {
  background: linear-gradient(180deg, #1a2024 0%, var(--water) 16%, var(--water) 82%, var(--deep) 100%);
  padding: clamp(80px, 12vh, 140px) 0;
}
.caps-grid {
  display: grid; grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.caps-head { position: sticky; top: 110px; }

.cap-list { list-style: none; counter-reset: cap; }
.cap {
  display: flex; gap: clamp(18px, 2.6vw, 34px);
  padding: clamp(22px, 3vh, 30px) 6px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding-left 0.35s var(--ease-out);
}
.cap:first-child { border-top: 1px solid var(--line); }
.cap:hover { background: rgba(59, 77, 97, 0.12); padding-left: 18px; }
.cap-num {
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500;
  color: var(--olive-text); padding-top: 6px; flex: none;
}
.cap-body h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.2;
  margin-bottom: 8px; letter-spacing: 0;
}
.cap-body p { font-size: 0.95rem; color: var(--ink-mute); max-width: 52ch; }

/* ============================================================
   PATHWAYS
   ============================================================ */
.pathways {
  background: var(--deep);
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--line);
}
.path-grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.path-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.path-tags span {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--olive-text);
  border: 1px solid rgba(111, 138, 63, 0.45);
  padding: 7px 13px; border-radius: 2px;
}

.path-steps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.path-step {
  display: flex; gap: clamp(20px, 2.6vw, 32px);
  background: var(--water);
  padding: clamp(26px, 3.2vw, 40px);
  transition: background 0.35s ease;
}
.path-step:hover { background: var(--panel); }
.step-num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 2.4rem; line-height: 1; color: var(--slate-soft); flex: none;
  width: 1.4ch;
}
.path-step h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 1.06rem;
  margin-bottom: 8px;
}
.path-step p { font-size: 0.94rem; color: var(--ink-soft); }

.agencies {
  margin-top: clamp(56px, 8vh, 90px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 18px clamp(24px, 3vw, 40px);
}
.agencies-label {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
  flex: none;
}
.agency-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.agency-list li {
  font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
  letter-spacing: 0.08em; color: var(--slate-soft);
}
.agencies-serving { margin-left: auto; }

/* ============================================================
   MISSION BAND — full-bleed wa\02BBa crew at dusk, melts into the
   sections above (deep) and below (impact green)
   ============================================================ */
.mission-band {
  position: relative; overflow: hidden;
  min-height: clamp(420px, 64vh, 660px);
  display: flex; align-items: flex-end;
}
.mission-band img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 58%;
}
.mission-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--deep) 0%, rgba(20, 25, 28, 0.25) 30%,
      rgba(20, 25, 28, 0) 55%, rgba(35, 45, 37, 0.55) 86%, #232d25 100%),
    linear-gradient(90deg, rgba(20, 25, 28, 0.55) 0%, rgba(20, 25, 28, 0) 55%);
}
.mission-inner {
  position: relative; width: 100%;
  padding-top: clamp(120px, 22vh, 220px);
  padding-bottom: clamp(48px, 8vh, 84px);
}
.mission-kicker { color: #b5c98b; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55); }
.mission-quote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem); line-height: 1.35;
  max-width: 34ch; color: #f2f4ee;
  text-shadow: 0 2px 22px rgba(10, 14, 16, 0.65);
}

/* ============================================================
   IMPACT
   ============================================================ */
.impact {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 120% at 85% 10%, rgba(59, 77, 97, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #232d25 0%, #1d251f 60%, var(--deep) 100%);
  padding: clamp(90px, 14vh, 160px) 0;
}
.impact-sea { position: absolute; inset: 0; pointer-events: none; }
.impact-mark {
  position: absolute; right: -140px; bottom: -180px;
  width: clamp(380px, 42vw, 620px); opacity: 0.07;
}
.impact-inner { position: relative; }
.sec-kicker-light { color: #a9bf78; }
.impact .sec-title { color: #f2f4ee; }

.impact-cols {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 6vw, 90px);
  margin-top: clamp(36px, 5vh, 56px);
  align-items: start;
}
.impact-lede {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem); line-height: 1.42;
  color: #d9e0d2;
}
.impact-list { list-style: none; display: grid; gap: 26px; }
.impact-list li {
  border-left: 2px solid var(--olive);
  padding-left: 22px;
}
.impact-list h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  margin-bottom: 6px; color: #eef1e9;
}
.impact-list p { font-size: 0.94rem; color: #b9c4ae; }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership {
  background: var(--deep);
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--line);
}
.leadership .sec-head { margin-bottom: clamp(36px, 5vh, 56px); }
.leader-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 32px);
}
.leader-card {
  display: flex;
  background: linear-gradient(160deg, var(--panel) 0%, var(--water) 100%);
  border: 1px solid var(--line-strong);
  position: relative; overflow: hidden;
}
.leader-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--olive), transparent 70%);
}
.leader-photo {
  flex: 0 0 clamp(140px, 14vw, 190px);
  overflow: hidden;
}
.leader-photo img {
  width: 100%; height: 100%; min-height: 240px;
  object-fit: cover; object-position: 32% 22%;
  filter: grayscale(1) contrast(1.05);
  transition: filter .55s ease;
}
.leader-card:hover .leader-photo img,
.leader-card:focus-within .leader-photo img {
  filter: grayscale(0) saturate(0.92) contrast(1.02);
}
/* Touch devices can't hover: show the photos in (muted) color by default. */
@media (hover: none) {
  .leader-photo img { filter: saturate(0.82) contrast(1.02); }
}
/* Third leader spans the full row, avoiding a lone half-width card. */
.leader-card--wide { grid-column: 1 / -1; }
.leader-card--wide .leader-photo { flex: 0 0 clamp(200px, 24vw, 300px); }
.leader-card--wide .leader-photo img { object-position: 50% 18%; }
.leader-card--wide .leader-bio { max-width: 76ch; }
.leader-body { padding: clamp(22px, 2.6vw, 34px); flex: 1; }
.leader-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem); line-height: 1.2;
}
.leader-role {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--olive-text);
  margin-top: 7px; margin-bottom: 16px;
}
.leader-bio { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--deep); padding: clamp(80px, 12vh, 140px) 0; }
.contact-grid {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.contact-card {
  background: linear-gradient(160deg, var(--panel) 0%, var(--water) 100%);
  border: 1px solid var(--line-strong);
  padding: clamp(30px, 3.6vw, 48px);
  position: relative;
}
.contact-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--olive), transparent 70%);
}
.contact-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem); line-height: 1.2;
}
.contact-name span { font-size: 0.7em; color: var(--ink-mute); font-weight: 400; }
.contact-role {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--olive-text);
  margin-top: 8px; margin-bottom: 28px;
}
.contact-lines { display: grid; gap: 2px; }
.contact-line {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 2px; text-decoration: none;
  border-top: 1px solid var(--line);
  font-size: 1.02rem; font-weight: 500;
  transition: color 0.25s ease, padding-left 0.3s var(--ease-out);
}
.contact-line:last-child { border-bottom: 1px solid var(--line); }
.contact-line:hover { color: var(--olive-text); padding-left: 10px; }
.contact-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); width: 52px; flex: none;
}
.contact-registry {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px;
}
.contact-registry span {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em;
  color: var(--ink-mute);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--deep);
  padding: clamp(48px, 7vh, 72px) 0 40px;
}
.footer-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px clamp(40px, 6vw, 90px);
  align-items: start;
}
.footer-logo { width: clamp(150px, 16vw, 200px); height: auto; }
.footer-tag {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-text); margin-top: 14px;
}
.footer-meta { max-width: 56ch; font-size: 0.92rem; color: var(--ink-mute); }
.footer-addr { font-family: var(--font-mono); font-size: 0.78rem; margin-top: 14px; letter-spacing: 0.06em; }
.footer-ids { font-family: var(--font-mono); font-size: 0.78rem; margin-top: 8px; letter-spacing: 0.06em; }
.footer-legal {
  grid-column: 1 / -1;
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem; color: var(--ink-mute);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .caps-grid, .path-grid, .impact-cols, .contact-grid, .leader-grid { grid-template-columns: 1fr; }
  .caps-head { position: static; }
  .cert-grid { grid-template-columns: 1fr; }
  .agencies-serving { margin-left: 0; }
}

@media (max-width: 760px) {
  .nav, .topbar-cta { display: none; }
  .menu-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 1px solid var(--line-strong); border-radius: 3px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--ink);
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .mobile-nav {
    display: none; flex-direction: column;
    background: rgba(20, 25, 28, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 10px 0 18px;
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a {
    text-decoration: none; color: var(--ink);
    font-size: 1.02rem; font-weight: 500;
    padding: 13px clamp(20px, 4vw, 48px);
  }
  .topbar { background: rgba(20, 25, 28, 0.92); backdrop-filter: blur(14px); }

  .hero-inner { padding-top: 130px; }
  .registry { gap: 18px 32px; }
  .hero-scroll { display: none; }
}

@media (max-width: 560px) {
  .leader-card { flex-direction: column; }
  .leader-photo { flex: none; height: 250px; }
  .leader-photo img { min-height: 0; height: 100%; object-position: 32% 20%; }
  /* The wide card stacks like the others; its own flex-basis and framing
     would otherwise crop a portrait photo down to the eyes. */
  .leader-card--wide .leader-photo { flex: none; height: 250px; }
  .leader-card--wide .leader-photo img { object-position: 50% 45%; }
}
