@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --green:       #1E7A52;
  --green-dk:    #1A6641;
  --green-xdk:   #134D32;
  --green-lt:    #52C48A;
  --green-pale:  #D8EEE3;
  --green-xpale: #EEF6F1;
  --bg:          #F0F6F2;
  --bg-dk:       #E3EDE8;
  --border:      #C8DDD3;
  --white:       #FFFFFF;
  --ink:         #1A1F1C;
  --text-mid:    #3D4D45;
  --text-muted:  #607068;
  --gray-lt:     #8FA898;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  Arial, Helvetica, sans-serif;

  /* Layout */
  --nav-h:  60px;
  --max-w:  1100px;
  --gutter: 1.75rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-sans); background: var(--bg); color: var(--ink); font-size: 17px; line-height: 1.75; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem);   font-weight: 700; margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem;                     font-weight: 700; margin-bottom: .75rem; margin-top: 1.75rem; }
h4 { font-size: 1rem;                        font-weight: 700; margin-bottom: .4rem; }
p  { color: var(--text-muted); line-height: 1.75; margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); }

.eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .75rem;
}

.standout {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--green-dk);
  line-height: 1.4;
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: 5rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  text-decoration: none;
}
.btn-primary            { background: var(--green-xdk) !important; color: #ffffff !important; font-weight: 700; }
.btn-primary:hover       { background: var(--green) !important; color: #ffffff !important; }
.btn-outline             { border: 2px solid var(--green-dk); color: var(--green-dk); background: transparent; font-weight: 700; }
.btn-outline:hover       { border-color: var(--green-xdk); background: var(--green-xpale); color: var(--green-xdk); }
.btn-white               { background: #ffffff !important; color: var(--green-xdk) !important; font-weight: 700; }
.btn-white:hover         { background: var(--bg) !important; color: var(--green-xdk) !important; }
.btn-dark                { background: var(--green-xdk) !important; color: #ffffff !important; border: 2px solid rgba(255,255,255,.4); font-weight: 700; }
.btn-dark:hover          { background: var(--green) !important; color: #ffffff !important; }
.btn-sm        { padding: .4rem 1rem; font-size: .8rem; }

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: var(--green-xdk);
  padding: .6rem var(--gutter);
  display: flex;
  align-items: center;
  gap: .85rem;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 10px,
    rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px
  );
}
.urgency-bar .tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.urgency-bar p {
  color: #fff;
  font-size: .88rem;
  margin: 0;
  line-height: 1.4;
}
.urgency-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(240,246,242,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark { font-size: 1.3rem; color: var(--green); line-height: 1; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .15s;
  text-decoration: none;
}
.nav-links a:hover  { color: var(--green-dk); }
.nav-links a.active { color: var(--green-dk); }
.nav-links a.urgent { color: var(--green); font-weight: 700; }
.nav-links a.btn   { color: #fff !important; }
.nav-links a.btn:hover { color: #fff !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1.5px solid var(--border);
    padding: 1rem var(--gutter);
    gap: 1rem;
    z-index: 99;
  }
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--green-xpale);
  padding: 5rem var(--gutter) 4.5rem;
  border-bottom: 3px solid var(--green);
  background-image: radial-gradient(circle, rgba(30,122,82,.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-inner    { max-width: var(--max-w); margin: 0 auto; }
.hero-tag      { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); display: block; }
.hero-rule     { height: 1px; background: var(--border); margin: 1.1rem 0; }
.hero h1       { color: var(--ink); margin-bottom: 0; }
.hero h1 em    { font-style: italic; color: var(--green); }
.hero-grid     { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; margin-top: .75rem; }
.hero-sub      { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 50ch; margin: 0; }
.hero-btns     { display: flex; flex-direction: column; gap: .6rem; flex-shrink: 0; min-width: 190px; }
.hero-partners { margin-top: 2.5rem; font-family: var(--font-serif); font-size: .88rem; font-style: italic; color: var(--gray-lt); display: flex; align-items: center; gap: 1rem; }
.hero-plus     { font-style: normal; color: var(--green); }
@media (max-width: 800px) { .hero-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   SUB-PAGE HERO
   ============================================================ */
.sub-hero {
  background: var(--green-xpale);
  padding: 3.5rem 0 3rem;
  border-bottom: 3px solid var(--green);
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 28px,
    rgba(30,122,82,.06) 28px, rgba(30,122,82,.06) 29px
  );
}
.sub-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: .6rem; }
.sub-hero p  { color: var(--text-muted); margin: 0; font-size: 1rem; }

/* ============================================================
   STANDOUT QUOTE BAND
   ============================================================ */
.quote-band {
  background: var(--green-pale);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   CARD GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNER CARDS
   ============================================================ */
.partner-card {
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 1.75rem;
  background: var(--white);
}
.partner-card + .partner-card { border-top-color: var(--green-dk); }
.partner-card h3 { font-size: 1.15rem; margin-top: 0; }
.partner-card .eyebrow { color: var(--green); }
.partner-card + .partner-card .eyebrow { color: var(--green-dk); }

/* ============================================================
   STAKE CARDS
   ============================================================ */
.stake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.stake-card {
  background: var(--bg);
  padding: 1.75rem;
  position: relative;
}
.stake-card-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(30,122,82,.1);
  position: absolute;
  top: .75rem; right: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.stake-card h3 { color: var(--green-dk); font-size: 1rem; margin-top: 0; }
.stake-card p  { font-size: 1rem; color: var(--text-mid); margin: 0; }
@media (max-width: 900px) { .stake-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .stake-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.news-card {
  background: var(--bg);
  padding: 1.5rem;
  cursor: pointer;
  transition: background .12s;
}
.news-card:hover { background: var(--white); }
.news-tag  { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dk); margin-bottom: .65rem; }
.news-card h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--ink); line-height: 1.3; margin-top: 0; margin-bottom: .5rem; }
.news-card p  { font-size: .95rem; color: var(--text-muted); margin: 0; }
.news-date    { font-size: .8rem; color: var(--gray-lt); margin-top: .65rem; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWS POST VIEW
   ============================================================ */
.news-post-header { padding-bottom: 1.5rem; border-bottom: 1.5px solid var(--border); margin-bottom: 2rem; }
.news-post-header h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.news-post-meta { margin-top: .65rem; display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; font-size: .85rem; color: var(--text-muted); }
.news-post-body { font-size: 1rem; line-height: 1.82; color: var(--text-mid); }
.news-post-body h2 { font-size: 1.5rem; color: var(--ink); margin: 2rem 0 .6rem; }
.news-post-body h3 { font-size: 1.15rem; color: var(--ink); }
.news-post-body p  { margin-bottom: 1rem; max-width: 70ch; }
.news-post-body ul, .news-post-body ol { margin: 0 0 1rem 1.75rem; list-style: disc; }
.news-post-body li { margin-bottom: .4rem; }
.news-post-body strong { color: var(--ink); }
.news-post-body a  { color: var(--green-dk); text-decoration: underline; }
.news-post-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  cursor: pointer;
}
.news-post-back:hover { color: var(--green); }

.video-embed {
  margin-bottom: 1.5rem;
}
.video-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--green-dk);
  margin-bottom: .5rem;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   NEWS FILTERS
   ============================================================ */
.news-filters { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn {
  padding: .38rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all .12s;
  font-family: var(--font-sans);
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ============================================================
   CALLOUT BOX
   ============================================================ */
.callout {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.callout p { font-size: 1rem; color: var(--ink); margin: 0; }
.callout p + p { margin-top: .6rem; }
.callout a { color: var(--green-dk); font-weight: 700; }
.callout-urgent { border-left-color: var(--green-dk); background: var(--green-pale); }

/* ============================================================
   ISSUE LAYOUT
   ============================================================ */
.issue-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.issue-section:last-of-type { border-bottom: none; }
.issue-section:nth-child(even) { background: var(--white); }
.issue-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.issue-label { position: sticky; top: calc(var(--nav-h) + 2rem); }
.issue-num   { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--bg-dk); line-height: 1; margin-bottom: .4rem; }
.issue-label h2 { font-size: 1.4rem; margin-bottom: 0; }
.issue-label .note { font-size: .88rem; color: var(--text-muted); margin-top: .5rem; line-height: 1.5; }
.issue-body h3 { color: var(--ink); }
.issue-body p  { font-size: 17px; }
.issue-body ul { margin: 0 0 1rem 1.5rem; list-style: disc; }
.issue-body li { font-size: 17px; color: var(--text-mid); margin-bottom: .5rem; }
.vision-section { background: var(--green-pale) !important; }
@media (max-width: 900px) {
  .issue-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .issue-label { position: static; }
  .issue-num   { font-size: 2.5rem; }
}

/* ============================================================
   BUSINESS IMPACT LISTS
   ============================================================ */
.biz-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.75rem 0; }
.biz-list-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 1.5rem;
}
.biz-list-card h4 { margin-top: 0; font-size: 1rem; margin-bottom: 1rem; }
.biz-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0;
}
.biz-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem !important;
  color: var(--text-mid) !important;
  padding: .45rem 0;
  border-bottom: 1px solid var(--bg-dk);
  margin: 0 !important;
}
.biz-list li:last-child { border-bottom: none; }
.biz-list li::before { content: '●'; color: var(--green); font-size: .45rem; flex-shrink: 0; }
@media (max-width: 600px) { .biz-list-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-wrap { border: 1.5px solid var(--border); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; border: 0; }
.map-labels {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: .9rem;
}
.map-labels td {
  padding: .75rem 1rem;
  vertical-align: top;
  width: 50%;
}
.map-labels td:first-child { background: var(--green-xpale); border-left: 3px solid var(--green-dk); }
.map-labels td:last-child  { background: var(--green-pale);  border-left: 3px solid var(--green); }
.map-labels strong { display: block; color: var(--ink); margin-bottom: .2rem; }
.map-labels span   { color: var(--text-muted); }

/* ============================================================
   VALUES GRID (about page)
   ============================================================ */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.value-card  { background: var(--green-xpale); padding: 1.5rem; border-left: 3px solid var(--green); }
.value-card h4 { font-size: 1rem; margin-bottom: .4rem; color: var(--ink); margin-top: 0; }
.value-card p  { font-size: .95rem; margin: 0; }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   TAKE ACTION PAGE
   ============================================================ */
.action-hero {
  background: var(--green-xdk);
  color: #fff;
  padding: 3.5rem 0 3rem;
  border-bottom: 3px solid var(--green-lt);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(255,255,255,.025) 12px, rgba(255,255,255,.025) 13px
  ), repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(255,255,255,.025) 12px, rgba(255,255,255,.025) 13px
  );
}
.action-hero .eyebrow { color: rgba(255,255,255,.4); }
.action-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .5rem; }
.action-hero p  { color: rgba(255,255,255,.65); margin: 0; font-size: 1rem; }

.hearing-box { background: var(--green-pale); border: 1.5px solid var(--border); padding: 1.5rem 1.75rem; margin-bottom: 2rem; }
.hearing-box h3 { font-size: 1.05rem; margin-top: 0; margin-bottom: 1rem; }
.hearing-row { display: flex; align-items: center; gap: 1.25rem; padding: .65rem 0; border-bottom: 1px solid var(--border); }
.hearing-row:last-child { border-bottom: none; }
.hearing-date  { font-family: var(--font-serif); font-weight: 700; color: var(--green-dk); min-width: 130px; font-size: 1rem; }
.hearing-final { background: var(--green); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .6rem; flex-shrink: 0; }
.hearing-info  { color: var(--text-muted); font-size: .9rem; }

.template-box { background: var(--white); border: 1.5px solid var(--border); border-left: 3px solid var(--green); padding: 1.5rem 1.75rem; margin-bottom: 2rem; }
.template-box h3 { font-size: 1.05rem; margin-top: 0; margin-bottom: .75rem; }
.template-text { font-size: .95rem; color: var(--text-mid); line-height: 1.8; white-space: pre-line; }

.send-all { background: var(--green-xdk); padding: 2.5rem; text-align: center; margin-bottom: 2.5rem; }
.send-all h3 { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; margin-bottom: .5rem; margin-top: 0; }
.send-all p  { color: rgba(255,255,255,.65); font-size: .95rem; max-width: 44ch; margin: 0 auto .85rem; }

.officials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1.5px solid var(--border); margin-bottom: 2.5rem; }
.official-card  { background: var(--white); padding: 1.2rem; }
.official-card.priority { background: var(--green-xpale); border-left: 3px solid var(--green); }
.official-role   { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .3rem; }
.official-name   { display: block; font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.official-dist   { display: block; font-size: .8rem; color: var(--text-muted); margin-bottom: .65rem; }
.official-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.btn-email { background: var(--green); color: #fff; padding: .38rem .85rem; font-size: .8rem; font-weight: 700; font-family: var(--font-sans); display: inline-block; transition: background .12s; }
.btn-email:hover { background: var(--green-dk); }
.btn-phone { border: 1.5px solid var(--border); color: var(--text-muted); padding: .38rem .85rem; font-size: .8rem; font-weight: 600; font-family: var(--font-sans); display: inline-block; transition: all .12s; }
.btn-phone:hover { border-color: var(--green); color: var(--green); }
@media (max-width: 700px) { .officials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .officials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green);
  padding: 4.5rem 0;
  text-align: center;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 20px,
    rgba(255,255,255,.04) 20px, rgba(255,255,255,.04) 40px
  );
}
.cta-band h2   { color: #fff; margin-bottom: .6rem; }
.cta-band p    { color: rgba(255,255,255,.72); max-width: 44ch; margin: 0 auto 1.75rem; font-size: 1.05rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-xdk);
  padding: 2.75rem 0 2rem;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-logo  { font-family: var(--font-serif); font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.3; }
.footer-tagline { margin-top: .6rem; font-size: .85rem; color: rgba(255,255,255,.3); max-width: 26ch; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: .65rem; margin-top: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: .35rem; }
.footer-col a  { font-size: .9rem; color: rgba(255,255,255,.45); transition: color .12s; text-decoration: none; }
.footer-col a:hover { color: var(--green-lt); }
.footer-bottom { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; color: rgba(255,255,255,.22); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ============================================================
   LOADING STATE
   ============================================================ */
.loading { text-align: center; padding: 3rem; color: var(--text-muted); font-size: .95rem; }

/* ============================================================
   SECTION-SPECIFIC BACKGROUNDS & TEXTURES
   ============================================================ */
.bg-white      { background: var(--white); }
.bg-sage       { background: var(--bg); }
.bg-pale       { background: var(--green-pale); }
.bg-ink        { background: var(--ink); }

.at-stake-section {
  background: var(--green-pale);
  background-image: radial-gradient(circle, rgba(30,122,82,.08) 1px, transparent 1px);
  background-size: 18px 18px;
}
.partnership-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-image: radial-gradient(ellipse at top right, rgba(30,122,82,.05) 0%, transparent 60%);
}

.sub-hero .eyebrow { font-size: 1rem; margin-bottom: .6rem; }
