/* ==========================================================================
   HCapital CleanTech — shared stylesheet
   Brand: navy anchors, energy green signals, amber warms. Light & modern.
   ========================================================================== */

/* ---- Fonts (self-hosted Inter subsets; falls back to the brand Arial stack) -- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Navy */
  --navy-900: #14213b;
  --navy-800: #18253f;
  --navy: #1b2a4a;
  --navy-600: #243456;
  --navy-500: #2f426a;
  --navy-400: #475a82;

  /* Energy green */
  --green-700: #167a47;
  --green-600: #1a8c51;
  --green: #1f9d5b;
  --green-300: #7cc6a1;
  --green-100: #d9efe3;
  --green-50: #eaf6f0;

  /* Amber */
  --amber-700: #9c6e1f;
  --amber: #c28a2c;
  --amber-300: #e0bd7c;
  --amber-100: #f3e6cb;
  --amber-50: #f8f0dc;

  /* Slate */
  --slate: #3a4256;
  --slate-500: #565d70;
  --slate-400: #707689;
  --slate-300: #9aa0af;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7f6f2;
  --sand-100: #f0eee7;
  --sand-200: #e7e4db;
  --border: #e4e2dc;
  --border-strong: #d4d1c8;

  /* Semantic */
  --bg-page: var(--off-white);
  --bg-surface: var(--white);
  --bg-accent-soft: var(--green-50);
  --text-heading: var(--navy);
  --text-body: var(--slate);
  --text-muted: var(--slate-400);
  --text-on-dark: var(--off-white);
  --text-on-dark-muted: #b6bccb;
  --text-accent: var(--green-700);
  --accent: var(--green);
  --accent-hover: var(--green-600);
  --accent-contrast: var(--white);
  --warm: var(--amber);
  --border-on-dark: rgba(255, 255, 255, 0.14);
  --focus-ring: rgba(31, 157, 91, 0.45);

  /* Type */
  --font-sans: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  --text-body-lg: 19px;
  --text-body: 17px;
  --text-small: 15px;
  --text-caption: 13px;
  --text-h3: 22px;
  --text-h4: 18px;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.08em;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --gutter: 24px;
  --container-max: 1160px;
  --container-narrow: 760px;
  --section-y: 96px;
  --section-y-sm: 56px;

  /* Radius / shadow / motion */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --pill: 999px;
  --shadow-sm: 0 1px 2px rgba(27, 42, 74, 0.05), 0 2px 6px rgba(27, 42, 74, 0.05);
  --shadow-md: 0 2px 4px rgba(27, 42, 74, 0.05), 0 8px 24px rgba(27, 42, 74, 0.07);
  --shadow-lg: 0 4px 8px rgba(27, 42, 74, 0.06), 0 20px 48px rgba(27, 42, 74, 0.1);
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
  --fast: 120ms;
}

/* ---- Base ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  color: var(--text-heading);
  letter-spacing: var(--tracking-tight);
}
a {
  color: var(--text-accent);
}
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--off-white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ---- Layout -------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-y) var(--gutter);
}
.section > .container {
  padding: 0;
}
.section--page {
  background: var(--bg-page);
}
.section--surface {
  background: var(--bg-surface);
}
.section--soft {
  background: var(--bg-accent-soft);
}
.section--navy {
  background: var(--navy);
}
.section--hero {
  padding-block: clamp(56px, 8vw, 104px);
}
.section--pagehero {
  padding-block: clamp(48px, 6vw, 80px);
}
.section--tight {
  padding-block: var(--space-12);
}
.section--sm {
  padding-block: var(--section-y-sm);
}

/* Responsive auto-grid driven by custom properties set via modifier classes */
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--col, 260px), 100%), 1fr));
  gap: var(--gap, var(--space-6));
  align-items: var(--ai, stretch);
}
.g-col-300 { --col: 300px; }
.g-col-290 { --col: 290px; }
.g-col-280 { --col: 280px; }
.g-col-250 { --col: 250px; }
.g-col-240 { --col: 240px; }
.g-col-230 { --col: 230px; }
.g-col-220 { --col: 220px; }
.g-gap-4 { --gap: var(--space-4); }
.g-gap-5 { --gap: var(--space-5); }
.g-gap-8 { --gap: var(--space-8); }
.g-gap-10 { --gap: var(--space-10); }
.g-gap-12 { --gap: var(--space-12); }
.g-gap-16 { --gap: var(--space-16); }
.g-center { --ai: center; }
.g-start { --ai: start; }

.stack {
  display: grid;
  gap: var(--space-3);
}
.stack-4 { gap: var(--space-4); }
.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}
.between {
  justify-content: space-between;
}
.m0 { margin: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mb-4 { margin-bottom: var(--space-4); }
.gap-3 { gap: var(--space-3); }
.gap-5 { gap: var(--space-5); }
.gap-10px { gap: 10px; }
.nowrap { flex-wrap: nowrap; }
.align-end { align-items: flex-end; }
.center-text { text-align: center; }
.shadow-md { box-shadow: var(--shadow-md); }
.body-p { margin-top: var(--space-5); line-height: var(--leading-relaxed); }
.p-ondark { margin-top: var(--space-4); color: var(--text-on-dark-muted); line-height: var(--leading-relaxed); }
.note-ondark { margin-top: var(--space-4); font-size: 13px; color: var(--text-on-dark-muted); }
.ph-pattern { position: absolute; inset: 0; opacity: 0.5; }
.page-hero-head { margin-top: var(--space-4); }
.page-title--sm { font-size: clamp(32px, 4.5vw, 44px); }
.mw-none { max-width: none; }
.mw-440 { max-width: 440px; }
.mw-480 { max-width: 480px; }
.mw-560 { max-width: 560px; }
.mw-620 { max-width: 620px; }
.mw-700 { max-width: 700px; }
.mw-720 { max-width: 720px; }
.mw-760 { max-width: 760px; }

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img {
  height: 24px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: var(--space-6);
  margin-left: auto;
  align-items: center;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-500);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
}
.nav__link:hover {
  color: var(--text-heading);
}
.nav__link.is-active {
  color: var(--text-heading);
  font-weight: 600;
}
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 2px;
  background: var(--accent);
}
.nav__cta {
  margin-left: var(--space-2);
}
.nav__toggle {
  margin-left: auto;
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: var(--space-4) var(--gutter) var(--space-6);
  flex-direction: column;
  gap: var(--space-1);
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a {
  text-align: left;
  padding: 12px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--slate-500);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.is-active {
  color: var(--text-heading);
  font-weight: 600;
}
.mobile-menu .btn {
  margin-top: var(--space-4);
}

@media (max-width: 860px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease),
    color var(--fast) var(--ease);
}
.btn--sm {
  padding: 8px 14px;
  font-size: var(--text-small);
  gap: 6px;
}
.btn--lg {
  padding: 15px 26px;
  font-size: var(--text-body-lg);
  gap: 10px;
  border-radius: var(--radius-md);
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn--secondary {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border-strong);
}
.btn--secondary:hover {
  border-color: var(--navy);
  background: rgba(27, 42, 74, 0.04);
}
.btn--ghost {
  background: transparent;
  color: var(--text-accent);
  border-color: transparent;
  padding-inline: 4px;
}
.btn--ghost:hover {
  background: var(--bg-accent-soft);
}
.btn--block {
  width: 100%;
}
.btn--on-dark {
  color: var(--text-on-dark);
  border-color: var(--border-on-dark);
}
.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ---- Icons --------------------------------------------------------------- */
.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.icon--sm {
  width: 18px;
  height: 18px;
}
.icon-badge {
  display: inline-flex;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-accent-soft);
  color: var(--green-700);
}
.icon-badge--md {
  padding: 9px;
}
.icon-badge--sm {
  padding: 8px;
}
.icon-badge--white {
  background: var(--white);
}

/* ---- Eyebrow ------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-accent);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
  border-radius: 2px;
}
.eyebrow--muted { color: var(--text-muted); }
.eyebrow--ondark { color: var(--green-300); }

/* ---- Section head -------------------------------------------------------- */
.section-head {
  max-width: 640px;
}
.section-head h1,
.section-head h2 {
  margin: var(--space-4) 0 0;
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 700;
  line-height: var(--leading-snug);
}
.section-head p {
  margin: var(--space-5) 0 0;
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}
.section-head--ondark h1,
.section-head--ondark h2 {
  color: var(--text-on-dark);
}
.section-head--ondark p {
  color: var(--text-on-dark-muted);
}

/* ---- Tags ---------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  font-size: var(--text-small);
  font-weight: 600;
  border-radius: var(--pill);
  background: var(--sand-100);
  color: var(--slate);
}
.tag--sm {
  padding: 3px 9px;
  font-size: var(--text-caption);
}
.tag--accent {
  background: var(--green-50);
  color: var(--green-700);
}
.tag--navy {
  background: rgba(27, 42, 74, 0.06);
  color: var(--navy);
}
.tag--warm {
  background: var(--amber-50);
  color: var(--amber-700);
}
.tag__dot {
  width: 7px;
  height: 7px;
  border-radius: var(--pill);
  background: currentColor;
}

/* ---- Cards --------------------------------------------------------------- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  color: var(--text-body);
}
.card--pad-lg { padding: var(--space-8); }
.card--pad-md { padding: var(--space-6); }
.card--pad-sm { padding: var(--space-5); }
.card--soft {
  background: var(--bg-accent-soft);
  border-color: var(--green-100);
}
.card--inverse {
  background: var(--navy);
  border-color: var(--border-on-dark);
  color: var(--text-on-dark);
}
.card-title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--text-heading);
  line-height: var(--leading-snug);
}
.card-title--h3 {
  font-size: var(--text-h3);
}
.card-text {
  margin: var(--space-2) 0 0;
  font-size: 15px;
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}
.muted-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- StatRange ----------------------------------------------------------- */
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.stat__qual {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat__value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--green-700);
}
.stat__num {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}
.stat__unit {
  font-size: var(--text-h4);
  font-weight: 600;
}
.stat__label {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--text-heading);
}
.stat__note {
  font-size: var(--text-small);
  line-height: var(--leading-normal);
  color: var(--text-muted);
}

/* ---- Hero ---------------------------------------------------------------- */
.hero-title {
  margin: var(--space-5) 0 0;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.04;
}
.hero-lead {
  margin: var(--space-6) 0 0;
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  max-width: 520px;
}
.page-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}
.text-link {
  margin-top: var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-500);
  font: inherit;
  font-size: 15px;
  padding: 0;
  text-decoration: none;
}
.text-link:hover {
  color: var(--text-heading);
}

.hero-figure {
  position: relative;
}
.hero-figure__img {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.hero-figure__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  padding: 5px 12px;
  border-radius: var(--pill);
  background: rgba(20, 33, 59, 0.78);
  backdrop-filter: blur(4px);
  color: var(--off-white);
  font-size: 12px;
  font-weight: 500;
}
.hero-chip {
  position: absolute;
  right: -12px;
  bottom: -16px;
  max-width: 230px;
  box-shadow: var(--shadow-lg);
}
.hero-chip .label-sm {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-chip .label-strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

/* Positioning line */
.positioning {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: var(--leading-snug);
  color: var(--text-on-dark);
  font-weight: 500;
  max-width: 820px;
}
.positioning em {
  color: var(--green-300);
  font-style: normal;
}

/* Problem cards */
.bullet-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.bullet-card .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--pill);
  background: var(--amber);
  margin-top: 8px;
  flex: 0 0 auto;
}

/* Step cards */
.step-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-300);
}
.step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: var(--tracking-wide);
}

/* Run-list (model unit) */
.run-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.run-row span.txt {
  font-size: var(--text-body);
  color: var(--text-heading);
  font-weight: 500;
}
.label-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--green-700);
}

/* Image placeholder */
.img-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--sand-100), var(--sand-200));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--slate-400);
}
.img-placeholder__inner {
  position: relative;
  padding: var(--space-6);
}
.img-placeholder__pin {
  display: inline-flex;
  padding: 10px;
  border-radius: var(--pill);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  color: var(--slate-400);
}
.img-placeholder__label {
  margin-top: var(--space-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-500);
}
.img-placeholder__caption {
  margin-top: var(--space-1);
  font-size: 12px;
  max-width: 240px;
}

.map-figure {
  position: relative;
  aspect-ratio: 474 / 373;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Credibility / partner chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.chip {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  background: var(--bg-surface);
  color: var(--slate-500);
  font-size: 15px;
  font-weight: 500;
}
.chip-label {
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* Candidate location cards (where) */
.loc-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.loc-card .meta {
  flex: 1;
}
.loc-card .name {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-heading);
}
.loc-card .city {
  font-size: 14px;
  color: var(--text-muted);
}
.pin-badge {
  display: inline-flex;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: var(--bg-accent-soft);
  color: var(--green-700);
}
.pin-badge--neutral {
  background: var(--sand-100);
  color: var(--slate-400);
}

/* Impact rule / measure rows */
.rule-row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.rule-row .t {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-heading);
}
.rule-row .d {
  margin-top: 2px;
  font-size: 14px;
  line-height: var(--leading-normal);
  color: var(--text-body);
}
.impact-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--space-8);
  align-items: center;
}
.impact-block__stats {
  display: grid;
  gap: var(--space-6);
  padding-left: var(--space-4);
  border-left: 1px solid var(--border);
}
.impact-block__stats.two {
  grid-template-columns: 1fr 1fr;
}
.measure-row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.measure-row .dot {
  width: 7px;
  height: 7px;
  border-radius: var(--pill);
  background: var(--green-300);
  margin-top: 9px;
  flex: 0 0 auto;
}
.measure-row span.txt {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--text-on-dark-muted);
}

/* About team + partners */
.team-card {
  text-align: center;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--pill);
  margin: 0 auto;
  background: var(--bg-accent-soft);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid var(--green-100);
}
.team-card .name {
  margin-top: var(--space-4);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-heading);
}
.team-card .role {
  margin-top: 2px;
  font-size: 14px;
  color: var(--text-muted);
}
.partner-card {
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-strong);
  background: var(--bg-surface);
}
.partner-card--solid {
  border-style: solid;
  border-color: var(--border);
}
.partner-card .name {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-heading);
}
.partner-card .role {
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
}
.label-on-dark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--green-300);
}

/* ---- Contact details + form --------------------------------------------- */
.detail-row {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}
.detail-row .label {
  font-size: 13px;
  color: var(--text-muted);
}
.detail-row .value {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--text-heading);
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}
.field .req {
  color: var(--green-700);
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--text-heading);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  line-height: var(--leading-normal);
  outline: none;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.field textarea {
  resize: vertical;
}
.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: var(--space-10) var(--space-4);
}
.form-success__check {
  width: 56px;
  height: 56px;
  border-radius: var(--pill);
  margin: 0 auto;
  background: var(--bg-accent-soft);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h2 {
  margin: var(--space-5) 0 0;
  font-size: var(--text-h3);
  font-weight: 600;
}
.is-hidden {
  display: none !important;
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--text-on-dark);
}
.site-footer .container {
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: space-between;
}
.footer-brand {
  max-width: 320px;
}
.footer-brand img {
  height: 24px;
  width: auto;
}
.footer-brand p {
  margin: var(--space-5) 0 0;
  font-size: 15px;
  line-height: var(--leading-relaxed);
  color: var(--text-on-dark-muted);
}
.footer-badge {
  display: inline-block;
  margin-top: var(--space-4);
  padding: 3px 10px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-on-dark);
  font-size: 13px;
  color: var(--text-on-dark-muted);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col__head {
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--green-300);
  font-weight: 600;
}
.footer-col a {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--off-white);
}
.footer-col span {
  font-size: 15px;
  color: var(--text-on-dark-muted);
}
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

/* ---- Small-screen polish ------------------------------------------------- */
@media (max-width: 700px) {
  :root {
    --section-y: 64px;
  }
  .hero-chip {
    position: static;
    margin-top: var(--space-4);
    max-width: none;
  }
  .impact-block__stats.two {
    grid-template-columns: 1fr;
  }
  .impact-block__stats {
    border-left: none;
    padding-left: 0;
  }
}

/* --- utility additions (inline-style removal) --- */
.mw-640 { max-width: 640px; }
.mt-1 { margin-top: 4px; }
.lh-relaxed { line-height: var(--leading-relaxed); }
.map-overlay { position: absolute; inset: 0; opacity: .5; }
.ar-4-3 { aspect-ratio: 4 / 3; }
