
:root {
  /* Amber Frontier — primary */
  --saddle: #2C1A06;
  --rustwood: #7A3B0A;
  --ochre: #BA7517;
  --mesa-gold: #EF9F27;
  --aspen: #FAC775;
  --prairie: #FEF3E2;
  /* Big Sky Blue — accent */
  --sky-midnight: #042C53;
  --sky-deep: #185FA5;
  --sky-horizon: #378ADD;
  --sky-cloud: #85B7EB;
  --sky-mist: #B5D4F4;
  --sky-dawn: #E6F1FB;
  --sky-ink: #0C447C;
  --sky-tint: #D7E8F8;
  /* High Plains — neutrals */
  --charcoal: #2C2C2A;
  --flint: #5F5E5A;
  --stone: #888780;
  --dust: #B4B2A9;
  --chalk: #D3D1C7;
  --cream: #F1EFE8;
  /* Legacy aliases for existing CSS */
  --purple-deep: #2C1A06;
  --purple-rich: #7A3B0A;
  --purple-mid: #BA7517;
  --purple-soft: #EF9F27;
  --purple-light: #FAC775;
  --purple-wash: #FEF3E2;
  --purple-faint: #FEF3E2;
  --sage: #185FA5;
  --sage-light: #378ADD;
  --sage-wash: #E6F1FB;
  --sand: #F1EFE8;
  --warm-white: #FDF8F2;
  --text: #2C2C2A;
  --text-mid: #5F5E5A;
  --text-light: #888780;
  --gold: #EF9F27;
  --coral: #BA7517;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: #FDF8F2; -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(254,243,226,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav.scrolled { box-shadow: 0 2px 24px rgba(44,26,6,0.08); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px;
}
.nav-logo {
  font-family: var(--font-head); font-weight: 400; font-size: 1.4rem;
  color: var(--rustwood); text-decoration: none; letter-spacing: -0.03em;
}
.nav-logo .num { font-weight: 700; color: var(--purple-deep); }
.nav-links { display: flex; gap: 0.6rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ochre); }
.nav-cta {
  background: var(--rustwood) !important; color: var(--prairie) !important;
  padding: 0.5rem 1.25rem !important; border-radius: 100px;
  font-weight: 600 !important; font-size: 0.85rem !important; transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--saddle) !important; color: var(--prairie) !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--saddle); margin: 5px 0; }

/* HERO */
.hero {
  padding: 7rem 3rem 4rem; position: relative; overflow: hidden;
  display: flex; align-items: center; min-height: 70vh;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: brightness(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(254,248,242,0.97) 0%, rgba(254,248,242,0.93) 30%, rgba(254,248,242,0.72) 55%, rgba(254,248,242,0.3) 75%, rgba(44,26,6,0.12) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-text { max-width: 600px; margin: 0 auto; text-align: center; }
.hero-logo { display: block; width: 100%; max-width: 680px; height: auto; margin: 0 auto 2.5rem; }
.hero h1 {
  font-family: var(--font-head); font-weight: 700; font-size: 3.6rem;
  line-height: 1.1; color: var(--saddle); letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--ochre); font-weight: 400; }
.hero-sub {
  font-size: 1.1rem; color: var(--text); line-height: 1.7;
  margin-bottom: 2.5rem; font-weight: 500;
  text-shadow: 0 0 20px rgba(253,252,250,0.8), 0 0 40px rgba(253,252,250,0.5);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn { background: var(--sky-deep); color: #fff; border: 1.5px solid var(--sky-deep); }
.hero-actions .btn:hover { background: var(--sky-ink); border-color: var(--sky-ink); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(4,44,83,0.30); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 100px; font-size: 0.92rem;
  font-weight: 600; text-decoration: none; transition: all 0.25s;
  cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-primary { background: var(--ochre); color: white; }
.btn-primary:hover { background: var(--rustwood); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(186,117,23,0.3); }
.btn-ghost { background: rgba(255,255,255,0.7); color: var(--ochre); border: 1.5px solid var(--aspen); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--ochre); background: rgba(255,255,255,0.9); }

/* STAT RIBBON */
.stat-ribbon {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--saddle); color: white;
}
.stat-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  margin-bottom: 0.3rem; color: var(--aspen);
}
.stat-label { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.55); }
.stat-link {
  display: inline-block; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600;
  color: var(--aspen); text-decoration: none; transition: color 0.2s;
}
.stat-link:hover { color: white; }

/* SECTION COMMON */
.sec { padding: 6rem 3rem; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky-deep); margin-bottom: 0.75rem;
}
.sec-title {
  font-family: var(--font-head); font-weight: 600; font-size: 2.4rem;
  color: var(--saddle); letter-spacing: -0.01em; margin-bottom: 0.75rem; line-height: 1.2;
}
.sec-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; line-height: 1.7; font-weight: 300; margin-bottom: 3rem; }

/* WHAT WE DO */
.what-we-do { background: var(--prairie); }
.pillars-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pillar-card {
  background: white; border-radius: 16px; padding: 2rem 1.75rem;
  border: 1px solid rgba(45,27,78,0.05); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--ochre); opacity: 0; transition: opacity 0.3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,27,78,0.08); }
.pillar-card:hover::before { opacity: 1; }
.pillar-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  color: var(--chalk); margin-bottom: 1rem; line-height: 1;
}
.pillar-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--saddle); margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }

/* ISSUES - two column purple */
.issues-sec { background: var(--prairie); }
.issues-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.issue-tile {
  padding: 2rem; border-radius: 14px; transition: all 0.3s;
  background: #FFFFFF; cursor: default;
}
.issue-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(4,44,83,0.10); }
.issue-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 4px;
  margin-bottom: 0.75rem; background: rgba(24,95,165,0.12); color: var(--sky-ink);
}
.issue-tile h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--saddle); margin-bottom: 0.4rem;
}
.issue-tile p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }

/* SCORECARD */
.scorecard-sec {
  background: var(--saddle);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(186,117,23,0.15) 0%, transparent 60%),
                     radial-gradient(ellipse at 80% 80%, rgba(239,159,39,0.1) 0%, transparent 50%);
  color: white;
}
.scorecard-sec .sec-eyebrow { color: var(--aspen); }
.scorecard-sec .sec-title { color: white; }
.scorecard-sec .sec-desc { color: rgba(255,255,255,0.6); }
.sc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.sc-card {
  background: var(--warm-white); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1.5rem; text-align: center; transition: all 0.3s;
  color: var(--text);
}
.sc-card:hover { background: white; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.sc-card.fail { border: 2px solid rgba(232,100,90,0.5); }
.sc-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 0.85rem;
  background: var(--purple-wash); display: flex; align-items: center;
  justify-content: center; font-weight: 500; font-size: 0.8rem;
  color: var(--text-light); font-family: var(--font-body);
  overflow: hidden; border: 2px solid var(--aspen);
}
.sc-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.sc-card h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.15rem; color: var(--saddle); }
.sc-card .district { font-size: 0.75rem; color: var(--text-mid); margin-bottom: 0.2rem; }
.sc-card .role { font-size: 0.7rem; color: var(--text-light); margin-bottom: 0.85rem; font-style: italic; }
.grade-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
}
.g-a { background: rgba(34,120,80,0.15); color: #1A7A42; font-size: 1.5rem; width: 52px; height: 52px; border: 2px solid rgba(34,120,80,0.25); }
.g-b { background: rgba(34,120,80,0.08); color: #3A8F5E; font-size: 1.4rem; width: 48px; height: 48px; border: 2px solid rgba(34,120,80,0.15); }
.g-c { background: rgba(184,148,62,0.12); color: #96792A; font-size: 1.4rem; width: 48px; height: 48px; border: 2px solid rgba(184,148,62,0.2); }
.g-d { background: rgba(200,120,50,0.12); color: #B5702A; font-size: 1.4rem; width: 48px; height: 48px; border: 2px solid rgba(200,120,50,0.2); }
.g-f { background: rgba(200,60,50,0.1); color: var(--coral); }
.grade-badge.big-f {
  width: 60px; height: 60px; font-size: 1.8rem;
  background: rgba(200,50,40,0.15); color: #C4352C;
  border: 2px solid rgba(200,50,40,0.35);
  box-shadow: 0 0 20px rgba(200,50,40,0.15);
}
.sc-legend {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.leg { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.leg-dot { width: 8px; height: 8px; border-radius: 3px; }

/* PROGRAMS */
.programs-sec { background: var(--saddle); color: white; }
.programs-sec .sec-eyebrow { color: var(--aspen); }
.programs-sec .sec-title { color: white; }
.programs-sec .sec-desc { color: rgba(255,255,255,0.6); }
.programs-grid { display: flex; flex-direction: column; gap: 2rem; }
.program-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden; transition: all 0.3s;
}
.program-card:nth-child(even) { direction: rtl; }
.program-card:nth-child(even) > * { direction: ltr; }
.program-card:hover { background: rgba(255,255,255,0.07); }
.program-img { overflow: hidden; }
.program-img img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.program-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.program-tag {
  display: inline-block; width: fit-content; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.7rem;
  border-radius: 100px; margin-bottom: 1rem;
  background: rgba(250,199,117,0.2); color: var(--aspen);
}
.program-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.program-card p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }

/* ABOUT */
.about-sec { background: var(--sky-dawn); }
.about-layout {
  display: grid; grid-template-columns: 5fr 4fr; gap: 4rem; align-items: center;
}
.about-copy h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  color: var(--purple-deep); margin-bottom: 0.5rem; margin-top: 2rem;
}
.about-copy h3:first-child { margin-top: 0; }
.about-copy p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.about-img-wrap {
  border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,6,0.12), transparent 40%);
}
.values-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem;
}
.val {
  background: white; border-radius: 12px; padding: 1.5rem;
  border: 1px solid rgba(45,27,78,0.04);
}
.val-num {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: var(--aspen); margin-bottom: 0.5rem;
}
.val h4 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 600; color: var(--saddle); margin-bottom: 0.3rem; }
.val p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.55; font-weight: 300; }

/* GET INVOLVED */
.involve-sec { background: var(--sky-dawn); text-align: center; }
.involve-sec .sec-desc { margin-left: auto; margin-right: auto; }
.involve-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1080px; margin: 0 auto; }
.inv-card {
  padding: 2.5rem 2rem; border-radius: 16px; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.inv-card:nth-child(1) { background: #FFFFFF; }
.inv-card:nth-child(2) { background: var(--sky-tint); }
.inv-card:nth-child(3) { background: #FFFFFF; }
.inv-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.inv-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.inv-icon svg { width: 27px; height: 27px; display: block; }
.inv-card .inv-icon { background: rgba(24,95,165,0.14); color: var(--sky-deep); }
.inv-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--saddle); margin-bottom: 0.5rem; }
.inv-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.5rem; font-weight: 300; }
.email-row { display: flex; flex-direction: column; gap: 0.5rem; max-width: 280px; margin: 0 auto; }
.email-row input {
  width: 100%; padding: 0.7rem 1rem; border-radius: 100px; font-family: var(--font-body);
  border: 1px solid rgba(45,27,78,0.12); font-size: 0.88rem; outline: none;
  background: white; transition: border-color 0.2s; text-align: center;
}
.email-row input:focus { border-color: var(--sky-deep); }
.email-row button {
  width: 100%; padding: 0.7rem 1.2rem; border-radius: 100px; background: var(--sky-deep);
  color: white; border: none; font-weight: 600; font-size: 0.88rem; cursor: pointer;
  font-family: var(--font-body); transition: background 0.2s;
}
.email-row button:hover { background: var(--sky-ink); }

/* CTA */
.cta-sec {
  padding: 6rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-midnight) 45%, #021C36 100%);
  color: white; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  border-radius: 50%; background: rgba(133,183,235,0.10);
}
.cta-sec h2 {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 600;
  margin-bottom: 1rem; position: relative;
}
.cta-sec h2 em { font-style: italic; font-weight: 400; color: var(--aspen); }
.cta-sec p { font-size: 1.1rem; opacity: 0.65; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.6; font-weight: 300; position: relative; }
.btn-white { background: white; color: var(--purple-deep); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* FOOTER */
footer { background: var(--sky-midnight); color: rgba(255,255,255,0.45); padding: 3rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-head); font-weight: 400; font-size: 1.2rem; color: rgba(255,255,255,0.7); }
.footer-logo .num { color: rgba(255,255,255,0.85); font-weight: 700; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin-top: 2rem; text-align: center; width: 100%; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pillars-row { grid-template-columns: repeat(2, 1fr); }
  .sc-grid { grid-template-columns: repeat(3, 1fr); }
  .values-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 8rem 1.5rem 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-logo { max-width: 460px; margin: 0 auto 1.5rem; }
  .nav-inner { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: #FDF8F2;
    padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid rgba(44,26,6,0.05);
  }
  .sec { padding: 4rem 1.5rem; }
  .stat-ribbon { grid-template-columns: 1fr; }
  .pillars-row { grid-template-columns: 1fr; }
  .issues-grid { grid-template-columns: 1fr; }
  .program-card { grid-template-columns: 1fr; }
  .program-card:nth-child(even) { direction: ltr; }
  .sc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .involve-row { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .sec-title { font-size: 1.9rem; }
}


/* ── Image sizing (replaces removed inline styles) ── */
.nav-logo img  { height: 46px; width: auto; }
.footer-logo img { height: 36px; width: auto; opacity: 0.9; filter: brightness(0) invert(1); }

/* ── Active nav link ── */
.nav-links a.active { color: var(--ochre); font-weight: 600; }

/* ── Inner page hero ── */
.page-hero {
  background: var(--sky-midnight);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(133,183,235,0.20) 0%, transparent 60%);
  color: #fff;
  padding: 140px 1.5rem 90px;
  text-align: center;
}
.page-hero .sec-eyebrow { color: var(--aspen); }
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.6rem 0 1.25rem;
  color: #fff;
}
.page-hero p { font-size: 1.1rem; opacity: 0.75; max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* ── Donate page ── */
.donate-sec { padding: 80px 1.5rem; background: var(--prairie); }
.donate-inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.donate-placeholder {
  background: #fff;
  border: 2px dashed rgba(186,117,23,0.35);
  border-radius: 16px;
  padding: 64px 40px;
  color: var(--text-mid);
  font-size: 0.95rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Get Involved page ── */
.vol-sec { padding: 80px 1.5rem; background: var(--prairie); }
.vol-inner { max-width: 640px; margin: 0 auto; }
.vol-sec .sec-eyebrow,
.vol-sec .sec-title { text-align: center; }
.vol-sec .sec-desc { max-width: 100%; margin-left: auto; margin-right: auto; text-align: center; }

/* ── Form ── */
.form-group  { margin-bottom: 1.25rem; }
.form-label  { display: block; font-size: 0.875rem; font-weight: 600; color: var(--saddle); margin-bottom: 0.4rem; }
.opt-label   { font-weight: 400; opacity: 0.65; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid rgba(186,117,23,0.3);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--saddle); background: #fff;
  box-sizing: border-box; transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { outline: none; border-color: var(--ochre); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 2rem; text-align: center; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* inv-card button full-width (replaces removed inline styles) */
.inv-card .btn { width: 100%; justify-content: center; }

/* Left-align involve section header; cards stay centered via .inv-card */
.involve-sec .sec-eyebrow,
.involve-sec .sec-title  { text-align: left; }
.involve-sec .sec-desc   { text-align: left; margin-left: 0; }

/* ══════════════════════════════════════════════════════════
   SEPT 2026 UPDATE
   Nav contact button · light alternating "What we do" ·
   contact page · donate give-cards · form a11y helpers
   ══════════════════════════════════════════════════════════ */

/* ── Nav: ghost pill for Contact ── */

/* ── What we do: light re-skin of the alternating program cards ── */
.what-we-do .programs-grid { gap: 1.5rem; }
.what-we-do .program-card {
  background: #fff;
  border: 1px solid rgba(44,26,6,0.07);
  box-shadow: 0 2px 14px rgba(44,26,6,0.04);
}
.what-we-do .program-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(44,26,6,0.10);
}
.what-we-do .program-card h3 { color: var(--saddle); font-size: 1.35rem; }
.what-we-do .program-card p  { color: var(--text-mid); }
.what-we-do .program-tag {
  background: rgba(186,117,23,0.12);
  color: var(--rustwood);
}
.what-we-do .program-img     { position: relative; min-height: 340px; }
.what-we-do .program-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; min-height: 0;
  object-fit: cover; object-position: center;
}
/* Portrait source: bias the crop down so rock, peak and road all land in frame */
.what-we-do .program-img img.img-tall { object-position: center 62%; }
@media (max-width: 768px) { .what-we-do .program-img { min-height: 260px; } }

/* ── Shared inner-page form section (contact) ── */
.form-sec   { padding: 100px 1.5rem 80px; background: var(--prairie); }
.form-inner { max-width: 640px; margin: 0 auto; }
.form-lede {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.6;
  text-align: center; margin-bottom: 2rem; font-weight: 300;
}
.form-lede a { color: var(--rustwood); font-weight: 500; }
.form-note {
  margin-top: 2rem; font-size: 0.8rem; color: var(--text-light);
  line-height: 1.6; text-align: center; font-weight: 300;
}

/* ── Form helpers: honeypot + screen-reader-only labels ── */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Thank-you page ── */
.thanks-sec   { padding: 80px 1.5rem; background: var(--prairie); }
.thanks-inner { max-width: 940px; margin: 0 auto; text-align: center; }
.thanks-inner .sec-title { margin-bottom: 2rem; }
.thanks-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; text-align: left; }
.thanks-card {
  background: #fff; border: 1px solid rgba(44,26,6,0.08);
  border-radius: 16px; padding: 1.75rem 1.5rem;
  text-decoration: none; transition: all 0.3s;
}
.thanks-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(44,26,6,0.08); }
.thanks-card h3 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  color: var(--saddle); margin-bottom: 0.45rem;
}
.thanks-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
.thanks-inner .form-note a { color: var(--rustwood); font-weight: 500; text-decoration: none; }
@media (max-width: 768px) { .thanks-grid { grid-template-columns: 1fr; } }

/* ── Get Involved cards: solid blue CTAs to match the Subscribe button ── */
.inv-card .btn-ghost {
  background: var(--sky-deep);
  color: #FFFFFF;
  border-color: var(--sky-deep);
}
.inv-card .btn-ghost:hover {
  background: var(--sky-ink);
  color: #FFFFFF;
  border-color: var(--sky-ink);
}

/* ── Donate: Donorbox embed, two-column ── */
.donate-layout {
  display: grid;
  grid-template-columns: 456px 1fr;
  gap: 1.75rem;
  align-items: start;
  text-align: left;
}

/* No outer card — the Donorbox widget draws its own, and doubling the
   frame reads as a bug. Min-height reserves space before the script loads. */
.donate-embed { min-height: 480px; }
.donate-embed dbox-widget { display: block; width: 100%; }
.embed-fallback {
  background: #FFFFFF; border: 1px solid rgba(44,26,6,0.08); border-radius: 16px;
  padding: 1.5rem; font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.65; font-weight: 300;
}
.embed-fallback a { color: var(--sky-deep); font-weight: 500; }

.donate-side { display: flex; flex-direction: column; gap: 1.25rem; }

.give-alt {
  background: #FFFFFF;
  border: 1px solid rgba(44,26,6,0.08);
  border-radius: 16px;
  padding: 1.75rem;
}
.give-alt h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600;
  color: var(--saddle); margin: 0 0 0.5rem;
}
.give-alt p {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.65;
  font-weight: 300; margin: 0 0 1.25rem;
}
.give-alt .btn { display: inline-flex; }

.give-note {
  margin: 0;
  background: rgba(255,255,255,0.65);
  border-left: 3px solid var(--aspen);
  border-radius: 0 12px 12px 0;
  padding: 1.4rem 1.5rem;
}
.give-note p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }
.give-note p + p { margin-top: 0.85rem; }
.give-note strong { color: var(--saddle); font-weight: 600; }

@media (max-width: 940px) {
  .donate-layout { grid-template-columns: 1fr; }
  .donate-embed { min-height: 0; }
}
