/* =========================================================
   Coots for Kauaʻi — campaign site
   Editorial, ocean-forward, low-chrome.
   Tokens mirror coots-design-system/colors_and_type.css.
   ========================================================= */

:root {
  /* -------- BRAND CORE -------- */
  --navy:          #1b4d7c;
  --navy-2:        #2c6291;
  --navy-3:        #5586b5;
  --navy-deep:     #103a63;
  --navy-darker:   #0a2742;

  --green:         #557530;
  --green-2:       #6a8e3f;
  --green-deep:    #3f5824;
  --green-soft:    #8fae6b;
  --green-forest:  #2f6e5a;

  /* -------- NEUTRALS -------- */
  --bone:          #fbf9f4;
  --sand:          #f3ede1;
  --paper:         #ebe5d6;
  --foam:          #e8eef0;
  --white:         #ffffff;

  /* -------- RULES & SHADOWS -------- */
  --rule:          rgba(27,77,124,.12);
  --rule-strong:   rgba(27,77,124,.28);
  --shadow-1:      0 1px 2px rgba(27,77,124,.06), 0 8px 30px rgba(27,77,124,.08);
  --shadow-2:      0 2px 4px rgba(27,77,124,.08), 0 24px 60px rgba(27,77,124,.18);

  /* -------- TYPE FAMILIES -------- */
  --sans:          "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif:         "Fraunces", "Iowan Old Style", "Hoefler Text", Georgia, serif;

  /* -------- METRICS -------- */
  --r:             10px;
  --wrap:          1200px;

  /* -------- TEXTURES -------- */
  /* Stylized tropical-leaf print. Renders as dark silhouettes at low opacity,
     so layering it over any colored background darkens the base into a soft
     leaf texture. Pair with a solid color via the shorthand below. */
  --leaf-tex:      url('assets/leaf-pattern.svg') center / 480px auto repeat;
}

* { box-sizing: border-box; }

html, body { margin:0; padding:0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--navy);
  background: var(--bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-deep); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 16px;
}
.eyebrow.centered { text-align: center; }

.h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--navy);
}
.h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  font-size: 1em;
  line-height: 1;
  padding: 0 .04em;
}
.h2.centered { text-align: center; }
.h2.light { color: var(--bone); }
.h2.light em { color: var(--green-soft); }

.section-lede {
  max-width: 720px;
  font-size: 18px;
  color: rgba(27,77,124,.72);
  margin: 0 0 48px;
}
.section-lede.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,249,244,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.brand-logo {
  width: auto;
  height: 48px;
  display: block;
  flex: 0 0 auto;
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-mike { color: var(--navy); }
.brand-coots { color: var(--green); }
.brand-sub {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-top: 4px;
}
.brand--light .brand-mike { color: var(--bone); }
.brand--light .brand-coots { color: var(--green-soft); }
.brand--light .brand-sub { color: rgba(251,249,244,.85); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--navy);
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--bone);
  padding: 10px 20px;
  border-radius: 6px;
  transition: background .2s;
}
.nav-links .nav-cta:hover { background: var(--green-deep); color: var(--bone); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  padding: 10px 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: var(--navy);
  background: var(--bone);
  overflow: hidden;
  isolation: isolate;
  min-height: 640px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* Match the image's intrinsic aspect ratio so the box hugs the image — the
     fade gradient on the box then always tracks the visible image edge. */
  aspect-ratio: 1600 / 1197;
  width: auto;
  max-width: 65%;
  background:
    linear-gradient(90deg, var(--bone) 0%, rgba(251,249,244,0.92) 14%, rgba(251,249,244,0.55) 34%, rgba(251,249,244,0) 60%),
    url('assets/hero-mike-banner.jpg') right center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,249,244,0) 70%, rgba(251,249,244,0.6) 100%);
}
.hero-wrap {
  position: relative;
  padding-top: 88px;
  padding-bottom: 96px;
}
.hero-content { max-width: 640px; }

.hero-kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 28px;
}

.hero-title {
  margin: 0 0 24px;
  line-height: .92;
  display: block;
}
.hero-leadership {
  display: block;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(58px, 9vw, 124px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--green);
  line-height: .9;
}
.hero-script {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -0.005em;
  color: var(--navy);
  line-height: 1.05;
  margin-top: 12px;
  padding-left: 8px;
  white-space: nowrap;
}

.hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 38ch;
  line-height: 1.6;
  color: rgba(27,77,124,.85);
  margin: 0 0 36px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  text-align: center;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--bone);
  box-shadow: 0 6px 18px rgba(27,77,124,.22);
}
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary {
  background: var(--green);
  color: var(--bone);
  box-shadow: 0 6px 18px rgba(85,117,48,.25);
}
.btn-secondary:hover { background: var(--green-deep); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--bone); }
.btn.full { width: 100%; }

/* ---------- PILLARS ---------- */
.pillars {
  position: relative;
  background: var(--leaf-tex), var(--navy-deep);
  padding: 36px 0 32px;
}
/* Hand-drawn lime-green top border — SVG with turbulence-displaced edges.
   Pseudo extends slightly above .pillars so the SVG's transparent top
   margin (above the green rect) sits over the white hero, not the navy. */
.pillars::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 14px;
  background: url('assets/pillar-top-line.svg') center top / 100% 100% no-repeat;
  pointer-events: none;
}
.pillars-grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--bone);
  padding: 8px 18px;
  position: relative;
  flex: 0 1 auto;
}
.pillar + .pillar::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: var(--green-soft);
  opacity: .85;
}
.pillar-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: block;
}
.pillar-text { line-height: 1.2; }
.pillar-text h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 4px;
}
.pillar-text p {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

/* ---------- INTRO BAND (Meet Mike) ---------- */
.intro {
  background: var(--sand);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.intro-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.intro-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 5 / 8;
  overflow: hidden;
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  background: var(--navy);
}
.intro-portrait img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}
.intro-copy .eyebrow { margin-bottom: 14px; }
.intro-h {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--navy);
}
.intro-h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  font-size: 1em;
  line-height: 1;
  padding: 0 .04em;
}
.intro-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(27,77,124,.85);
  margin: 0 0 28px;
  max-width: 62ch;
}
.btn-small {
  padding: 12px 22px;
  font-size: 14px;
}

/* ---------- STORY ---------- */
.story {
  padding: 120px 0;
  background: var(--sand);
}
.story-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-areas:
    "portrait header"
    "portrait body";
  column-gap: 72px;
  row-gap: 32px;
  align-items: start;
}
.story-header { grid-area: header; }
.story-body { grid-area: body; }
.story-portrait {
  grid-area: portrait;
  position: sticky;
  top: 100px;
}
.portrait-frame {
  position: relative;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 5;
  background: var(--navy);
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
  display: block;
}
.slideshow .slides {
  position: absolute;
  inset: 0;
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.slideshow .slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .slideshow .slide { transition: none; }
}
.story-body p { font-size: 18px; line-height: 1.65; margin: 0 0 20px; color: rgba(27,77,124,.85); }
.story-body .lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
}
.signature { margin-top: 40px; }
.sig-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--green-deep);
  line-height: 1;
}

/* ---------- PULLQUOTE ---------- */
.pullquote {
  /* Green base reads lighter than the navy sections, so the same leaf print
     prints darker against it. A green tint layer mutes the texture back to
     a subtle register. */
  background:
    linear-gradient(rgba(63,88,36,.45), rgba(63,88,36,.45)),
    var(--leaf-tex),
    var(--green-deep);
  padding: 110px 0;
  position: relative;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 32ch;
  margin: 0 auto;
  color: var(--bone);
  text-align: center;
  position: relative;
}
.pullquote .qmark {
  position: absolute;
  left: -.4em; top: -.3em;
  font-size: 1.6em;
  color: var(--green-soft);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.quote-cite {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251,249,244,.7);
  font-weight: 600;
  text-align: center;
}

/* ---------- PLATFORM ---------- */
.platform {
  padding: 120px 0 140px;
  background: var(--bone);
}
.issues {
  list-style: none;
  padding: 0; margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  counter-reset: issue;
}
.issue {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 36px 32px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.issue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
  border-color: var(--rule-strong);
}
.issue-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 44px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.issue h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.issue p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(27,77,124,.78);
  margin: 0 0 14px;
}
.issue-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.issue-bullets li {
  font-size: 14px;
  color: rgba(27,77,124,.72);
  padding: 6px 0 6px 18px;
  position: relative;
}
.issue-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-forest);
}

/* Lead paragraph and section label for the housing issue */
.issue-lead {
  font-size: 19px !important;
  line-height: 1.55 !important;
  margin-bottom: 22px !important;
}
.issue-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 10px 0 14px;
}
.issue-bullets.wide li {
  padding: 10px 0 10px 22px;
  font-size: 15px;
  line-height: 1.55;
}
.issue-bullets.wide li::before {
  top: 19px;
}
.issue-bullets li strong {
  font-weight: 600;
  color: inherit;
}

.platform-foot {
  max-width: 68ch;
  margin: 48px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(27,77,124,.72);
  font-family: var(--sans);
  font-weight: 500;
}

/* First issue spans full width as the feature card */
.issue:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--bone);
  border-color: var(--navy);
}
.issue:first-child .issue-num { color: var(--green-soft); }
.issue:first-child h3 { color: var(--bone); font-size: 38px; max-width: 22ch; }
.issue:first-child p { color: rgba(251,249,244,.85); font-size: 18px; max-width: 72ch; }
.issue:first-child .issue-label { color: var(--green-soft); }
.issue:first-child .issue-bullets { border-top-color: rgba(255,255,255,.15); }
.issue:first-child .issue-bullets li { color: rgba(251,249,244,.82); }
.issue:first-child .issue-bullets li::before { background: var(--green-soft); }
.issue:first-child .issue-bullets li strong { color: var(--bone); }

/* ---------- RECORD ---------- */
.record {
  padding: 120px 0;
  background: var(--leaf-tex), var(--navy);
  color: var(--bone);
}
.record .eyebrow { color: var(--green-soft); }
.record .h2 { color: var(--bone); }
.record .h2 em { color: var(--green-soft); }

.record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.rec {
  padding: 32px 24px 36px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.rec:last-child { border-right: 0; }
.rec-year {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 14px;
}
.rec h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.rec p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(251,249,244,.72);
  margin: 0;
}

/* ---------- WHY NOW ---------- */
.whynow {
  padding: 120px 0;
  background: var(--bone);
}
.whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.whynow-right p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(27,77,124,.82);
  margin: 0 0 20px;
}

/* ---------- ENDORSEMENTS ---------- */
/* ---------- JOIN FORM ---------- */
.join {
  padding: 120px 0;
  background: var(--sand);
  border-top: 1px solid var(--rule);
}
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.join-copy .h2 { margin-bottom: 20px; }
.join-copy p { font-size: 18px; line-height: 1.6; color: rgba(27,77,124,.8); margin: 0 0 32px; }

.ways-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 2px;
}
.ways-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.ways-list li:last-child { border-bottom: 1px solid var(--rule); }
.ways-list span {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--green);
  font-size: 14px;
  letter-spacing: .1em;
  min-width: 28px;
}

.join-form {
  background: var(--navy);
  color: var(--bone);
  padding: 44px 40px;
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-2);
}
.join-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(251,249,244,.8);
  letter-spacing: .02em;
}
.join-form label.full { grid-column: 1 / -1; }
.join-form input[type="text"],
.join-form input[type="email"] {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--bone);
  padding: 13px 14px;
  font-size: 15px;
  border-radius: 8px;
  font-family: var(--sans);
  transition: border-color .2s, background .2s;
}
.join-form input:focus {
  outline: 0;
  border-color: var(--green-soft);
  background: rgba(255,255,255,.1);
}
.join-form fieldset {
  border: 0;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.join-form legend {
  font-size: 13px;
  color: rgba(251,249,244,.8);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: .02em;
}
.chk {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(251,249,244,.92) !important;
}
.chk input { accent-color: var(--green); width: 16px; height: 16px; }

.join-form > .btn.full { grid-column: 1 / -1; margin-top: 8px; }

.form-ok {
  grid-column: 1 / -1;
  background: var(--green-forest);
  color: var(--bone);
  padding: 12px 16px;
  border-radius: 6px;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
}
.form-disclosure {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(251,249,244,.55);
  margin: 0;
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.foot {
  /* Tint layer on top of the leaf texture dials its intensity back so the
     footer's wide negative space doesn't make the print feel too loud. */
  background:
    linear-gradient(rgba(16,58,99,.45), rgba(16,58,99,.45)),
    var(--leaf-tex),
    var(--navy-deep);
  color: rgba(251,249,244,.75);
  padding: 80px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--green-soft);
  margin: 22px 0 0;
  max-width: 28ch;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green-soft);
  font-weight: 600;
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}
.foot-col a { color: rgba(251,249,244,.8); }
.foot-col a:hover { color: var(--green-soft); }

.foot-fine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(251,249,244,.4);
  gap: 20px;
}
.foot-fine p { margin: 0; }

/* ---------- MOBILE ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav[data-open="true"] .nav-links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--rule);
    padding: 8px 20px 20px;
  }
  .nav[data-open="true"] .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
  }

  .hero { min-height: auto; }
  .hero-bg {
    position: static;
    z-index: auto;
    overflow: visible;
  }
  .hero-photo {
    position: static;
    width: 100%;
    max-width: none;
    aspect-ratio: 8 / 3;
    background: url('assets/hero-mike-banner.jpg') center top / cover no-repeat;
  }
  .hero-overlay { display: none; }
  .hero-wrap { padding-top: 56px; padding-bottom: 80px; }
  .hero-content { max-width: 100%; }
  .hero-leadership { font-size: clamp(48px, 14vw, 72px); }
  .hero-script { font-size: clamp(32px, 8vw, 44px); white-space: normal; }

  .pillars-grid { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pillar + .pillar::before { display: none; }
  .pillar { padding: 12px 18px; flex: 0 0 auto; }

  .story, .platform, .record, .whynow, .join, .pullquote, .intro { padding: 72px 0; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-portrait { width: 100%; max-width: 320px; margin: 0 auto; }

  .story-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "portrait"
      "body";
    row-gap: 32px;
  }
  .story-portrait {
    position: static;
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }

  .issues { grid-template-columns: 1fr; }
  .issue:first-child h3 { font-size: 26px; }
  .issue:first-child p { font-size: 16px; }

  .record-grid {
    grid-template-columns: 1fr;
  }
  .rec {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .rec:last-child { border-bottom: 0; }

  .whynow-grid { grid-template-columns: 1fr; gap: 20px; }
  .join-grid { grid-template-columns: 1fr; gap: 48px; }
  .join-form { padding: 32px 24px; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 72px; }
  .foot-fine { flex-direction: column; align-items: flex-start; padding-top: 36px; }
}

@media (max-width: 520px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .join-form { grid-template-columns: 1fr; }
  .join-form fieldset { grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
