:root {
  --navy: #1a284d;
  --navy-dark: #151b31;
  --navy-mid: #1a223a;
  --blue: #2672a6;
  --blue-deep: #154176;
  --blue-light: #75a4c9;
  --blue-muted: #94a2bc;
  --red: #ea1c24;
  --red-dark: #bc121b;
  --text: #484848;
  --black: #1a284d;
  --cream: #ffffff;
  --off-white: #f5f6f8;
  --sidebar-bg: #eaf0f5;
  --border: #dee6ed;
  --muted: rgba(72, 72, 72, 0.88);
  --shadow: 0 2px 12px rgba(26, 40, 77, 0.12);
  --radius: 4px;
  --font-header: "Merriweather", Georgia, "Times New Roman", serif;
  --font-content: "Merriweather", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-button: "Open Sans", system-ui, sans-serif;
  --font-nav: "Open Sans Condensed", "Open Sans", sans-serif;
  --max: 1280px;
  --narrow: 640px;
  --header-h: 100px;
  /* legacy aliases */
  --teal: var(--navy);
  --orange: var(--red);
  --gold: var(--blue);
  --dark-gold: var(--sidebar-bg);
  --dark-orange: var(--navy-dark);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy-dark);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

.site-wrap {
  background: var(--cream);
  color: var(--text);
  box-shadow: 0 0.675em 0.8em 0.675em rgba(26, 40, 77, 0.2);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-top: 6px solid var(--navy);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(26, 40, 77, 0.1);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 88px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.footer-brand .logo img {
  height: 72px;
  max-width: 240px;
  filter: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-desktop a:not(.btn-donate) {
  font-family: var(--font-nav);
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
  background-image: linear-gradient(to right, var(--red), var(--red)),
    linear-gradient(to right, transparent, transparent);
  background-size: 0 2px, 0 0;
  background-position: 0 100%, 0 0;
  background-repeat: no-repeat;
  transition: background-size 150ms ease-in-out, color 150ms ease-in-out;
}

.nav-desktop a:not(.btn-donate):hover,
.nav-desktop a:not(.btn-donate).active {
  color: var(--blue);
  background-size: 100% 2px, 0 0;
}

.btn-donate {
  background: var(--red) !important;
  color: var(--cream) !important;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 1rem !important;
  padding: 0.5em 1.1em !important;
  border-radius: var(--radius) !important;
  border: 3px solid var(--red) !important;
  box-shadow: var(--shadow);
  background-image: none !important;
  text-decoration: none !important;
  margin-left: 1rem;
  border-right: none !important;
}

.btn-donate:hover,
.btn-donate:focus {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  color: var(--cream) !important;
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: 1.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-nav);
  font-weight: 700;
  text-decoration: none;
  color: var(--cream);
  font-size: 1.25rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.15);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--blue-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-button);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.45em 1em;
  border-radius: var(--radius);
  border: 3px solid var(--red);
  background: var(--red);
  color: var(--cream);
  box-shadow: var(--shadow);
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--cream);
}

.btn--light {
  background: var(--cream);
  border-color: var(--navy);
  color: var(--navy);
}

.btn--light:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.btn--highlight {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--cream);
}

.btn--highlight:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--cream);
}

.btn--sm {
  font-size: 1rem;
}

/* Hero */
/* Election countdown */
.election-countdown {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  color: var(--cream);
  text-align: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 3px solid var(--navy);
}

.election-countdown-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.election-countdown-main {
  font-family: var(--font-nav);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.election-countdown-label {
  margin-right: 0.35rem;
}

.election-countdown-timer {
  white-space: nowrap;
}

.election-countdown-note {
  margin-top: 0.35rem;
  font-size: clamp(0.95rem, 1.8vw, 1.0625rem);
  opacity: 0.92;
}

@media (max-width: 640px) {
  .election-countdown-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .election-countdown-label {
    margin-right: 0;
  }

  .election-countdown-timer {
    white-space: normal;
  }
}

.hero-home {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--cream);
  padding: 2.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-home h1,
.hero-home .hero__hed {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: left;
}

.hero-home h1 b,
.hero-home .hero__hed b {
  font-weight: 700;
}

.hero-home .lead {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 560px;
  opacity: 0.95;
}

.hero-signup {
  background: var(--cream);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.hero-signup .form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-signup label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-signup input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--off-white);
}

.hero-signup input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--cream);
}

.hero-signup .form-group { margin-bottom: 0.75rem; }

.hero-signup .form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0.75rem 0;
  line-height: 1.45;
}

.hero-signup .form-note a { color: var(--blue); }

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

/* Get Involved */
.actions-section {
  background: var(--sidebar-bg);
  color: var(--text);
  padding: 3rem 1.25rem;
  text-align: center;
}

.actions-inner { max-width: var(--max); margin: 0 auto; }

.actions-section h2 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.actions-dek {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.action-card {
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  color: var(--blue);
  text-decoration: none;
  width: 100%;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  padding: 0 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 150ms;
}

.action-card:hover {
  background: var(--off-white);
  color: var(--blue);
}

.action-card h3 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--blue);
  margin: 1.25rem 0 0.75rem;
}

.action-card-btn {
  font-family: var(--font-button);
  font-size: 1.2rem;
  padding: 0.4em 1em;
  border-radius: var(--radius);
  border: 3px solid var(--red);
  background: var(--red);
  color: var(--cream);
  box-shadow: var(--shadow);
  margin-top: auto;
}

.action-card:hover .action-card-btn {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* News */
.news-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
  padding: 2.5rem 1.25rem 3.5rem;
}

.news-inner { max-width: var(--max); margin: 0 auto; }

.news-section h2 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-align: center;
}

.news-columns {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.news-cards { list-style: none; }

.news-card {
  margin-bottom: 0.75rem;
}

.news-card-link {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 150ms;
}

.news-card-link:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(26, 40, 77, 0.16);
}

.news-card h3 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.news-card-cat {
  font-size: 0.85rem;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}

.news-card-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.news-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.news-card-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.news-card-img {
  width: 180px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-card-img img {
  width: 180px;
  height: 101px;
  object-fit: cover;
  object-position: center;
}

.news-sidebar h3 {
  font-family: var(--font-header);
  font-size: 1rem;
  color: var(--navy);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0.5rem;
}

.news-mini { list-style: none; }

.news-mini li {
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.news-mini a {
  text-decoration: none;
  color: var(--text);
}

.news-mini a:hover { color: var(--blue); }

.news-mini h4 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  color: var(--blue);
}

.news-mini-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.news-more {
  text-align: center;
  margin-top: 2rem;
}

.news-page {
  padding-top: 2.5rem;
}

.news-sidebar-signup {
  background: var(--sidebar-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.news-sidebar-signup h3 {
  font-family: var(--font-header);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.news-sidebar-signup .form-group {
  margin-bottom: 0.75rem;
}

.news-sidebar-signup label {
  font-size: 0.8rem;
}

.news-sidebar-signup input {
  font-size: 0.95rem;
  padding: 0.55rem 0.65rem;
}

.news-sidebar-signup p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.news-sidebar-signup .btn {
  width: 100%;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.news-page .social-bar {
  margin-top: 0;
  padding-top: 0;
  text-align: left;
}

.news-page .social-links {
  justify-content: flex-start;
}

.news-article-meta {
  font-size: 0.85rem;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
}

.news-article-meta span + span::before {
  content: "·";
  margin: 0 0.4rem;
  color: var(--muted);
}

.social-bar {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.social-bar h3 {
  font-family: var(--font-header);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  font-family: var(--font-button);
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.95rem;
}

.social-links a:hover { color: var(--red); }

/* Signup CTA */
.signup-section {
  background: var(--cream);
  padding: 3rem 1.25rem;
}

.signup-inner {
  max-width: var(--narrow);
  margin: 0 auto;
}

.signup-section h2 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.signup-dek {
  margin-bottom: 1.5rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Donate CTA */
.donate-section {
  background: var(--navy-dark);
  padding: 3rem 1.25rem 4rem;
  position: relative;
}

.donate-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: var(--cream);
}

.donate-inner {
  position: relative;
  z-index: 1;
  max-width: var(--narrow);
  margin: 0 auto;
  background: var(--sidebar-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1rem 1.5rem;
  box-shadow: var(--shadow);
}

.donate-inner h2 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.donate-dek { margin-bottom: 1.25rem; }

.donate-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  gap: 7px;
}

/* General sections */
.section {
  padding: 3.5rem 1.25rem;
}

.section-inner { max-width: var(--max); margin: 0 auto; }

.section-title {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.intro-grid p { color: var(--muted); margin-bottom: 1rem; }

.pillars {
  font-family: var(--font-header);
  font-size: 1.35rem;
  color: var(--blue);
  margin: 1.5rem 0;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.issue-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: background 150ms;
}

.issue-card:hover {
  background: var(--off-white);
  color: inherit;
}

.issue-card h3 {
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.issue-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

.issue-card span {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

/* Inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--cream);
  padding: 2.5rem 1.25rem 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  max-width: 900px;
  margin: 0 auto 0.5rem;
}

.page-hero p {
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.page-content,
.page-content p,
.section p,
.intro-grid p,
.meet-grid > div p {
  font-family: var(--font-content);
  line-height: 1.7;
}

.page-content p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.page-content h2 {
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--blue);
  margin: 2rem 0 0.75rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.breadcrumb a { color: var(--blue-light); text-decoration: none; }

.news-list { max-width: 800px; margin: 0 auto; }

.news-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.news-date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  margin-bottom: 0.5rem;
}

.news-item h3 {
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.news-item p { color: var(--muted); font-size: 0.975rem; }

/* Forms */
.form-section {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.form-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group label:has(+ input[required])::after,
.form-group label:has(+ select[required])::after,
.form-group label:has(+ textarea[required])::after {
  content: "*";
  color: var(--red);
  margin-left: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

.sms-consent-field {
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  background: var(--sidebar-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  color: var(--blue);
  font-weight: 600;
  margin-top: 1rem;
}

.form-error {
  text-align: center;
  color: var(--red);
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-error a {
  color: var(--red);
}

.form-error code {
  font-size: 0.85em;
  background: var(--off-white);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.25rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.meet-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 3rem 1.25rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.5rem;
  max-width: 300px;
}

.footer-nav h4 {
  font-family: var(--font-header);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-muted);
  margin-bottom: 0.75rem;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.4rem; }

.footer-nav a {
  color: var(--blue-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover { color: var(--cream); }

.site-footer .social-links a {
  color: var(--blue-muted);
}

.site-footer .social-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 162, 188, 0.35);
  font-size: 0.8rem;
  opacity: 0.75;
  text-align: center;
}

.footer-bottom a {
  color: var(--blue-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.text-center { text-align: center; }

.bg-off-white { background: var(--off-white); }

@media (max-width: 1100px) {
  .nav-desktop a:not(.btn-donate) {
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
  }
  .btn-donate { margin-left: 0.5rem; font-size: 0.9rem !important; }
  .logo img { height: 76px; max-width: 260px; }
}

@media (max-width: 1024px) {
  .hero-grid, .intro-grid, .meet-grid, .news-columns { grid-template-columns: 1fr; }
  .hero-photo { max-width: 400px; margin: 0 auto; }
  .news-card-body { grid-template-columns: 1fr; }
  .news-card-img { width: 100%; }
  .news-card-img img { width: 100%; height: 160px; }
}

@media (max-width: 768px) {
  :root { --header-h: 84px; }
  .logo img { height: 72px; max-width: 240px; }
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .hero-signup .form-row-inline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .actions-grid { flex-direction: column; align-items: center; }
  .action-card { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}