*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:  #0a1628;
  --blue:  #1a3a6e;
  --red:   #c0392b;
  --gold:  #d4a843;
  --cream: #f5f0e8;
  --white: #ffffff;
  --dark:  #060e1c;
}

html, body {
  height: 100%;
  font-family: 'Source Sans 3', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

body { padding-bottom: 180px; }

/* ── TOP STRIPE ── */
.top-stripe {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right,
    var(--red)   0%,   var(--red)   33%,
    var(--white) 33%,  var(--white) 66%,
    var(--blue)  66%,  var(--blue)  100%);
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.nav-brand-sub {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-links a.donate-nav {
  margin-left: 10px;
  padding: 8px 20px;
  background: var(--red);
  border-radius: 3px;
  color: var(--white);
  border-bottom: none;
  transition: background 0.2s;
}

.nav-links a.donate-nav:hover,
.nav-links a.donate-nav.active {
  background: #a93226;
  color: var(--white);
  border-bottom-color: transparent;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

@media (max-width: 720px) {
  .site-nav { padding: 0 20px; position: relative; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    padding: 13px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom-color: transparent;
    border-left-color: var(--gold);
  }

  .nav-links a.donate-nav {
    margin: 10px 24px 0;
    text-align: center;
    border-left: none;
    width: auto;
  }

  .nav-links a.donate-nav:hover { border-left-color: transparent; }
}

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: visible;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 60%, #0d2450 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/rule-family-ride2.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 30% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(2px   2px   at 55% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 70% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 20% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px   2px   at 90% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px   1px   at 45% 90%, rgba(255,255,255,0.2) 0%, transparent 100%);
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--red) 50%, var(--gold) 50%);
}

.avatar-wrap {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  object-fit: cover;
  display: block;
}

.avatar-fallback {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 60%, #0d2450 100%);
  padding: 56px 24px 52px;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 35% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px   2px   at 60% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px   1px   at 80% 75%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 40%, rgba(255,255,255,0.4) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--red) 50%, var(--gold) 50%);
}

.page-hero-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

/* ── HOMEPAGE MAIN ── */
main {
  padding-top: 90px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}

.candidate-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  animation: fadeUp 0.7s 0.1s ease both;
}

.candidate-name span { color: var(--gold); }

.race-line {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  animation: fadeUp 0.7s 0.2s ease both;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold));
  border-radius: 2px;
  margin: 28px auto;
  animation: fadeUp 0.7s 0.3s ease both;
}

.coming-soon-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  animation: fadeUp 0.7s 0.35s ease both;
}

.tagline {
  max-width: 480px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  animation: fadeUp 0.7s 0.4s ease both;
}

/* ── EMAIL SIGNUP ── */
.signup-section {
  margin-top: 36px;
  animation: fadeUp 0.7s 0.5s ease both;
}

.signup-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.signup-form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  max-width: 420px;
  width: 90vw;
}

.signup-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: background 0.2s;
}

.signup-form input::placeholder { color: rgba(255,255,255,0.35); }
.signup-form input:focus { background: rgba(255,255,255,0.13); }

.signup-form button {
  padding: 14px 22px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.signup-form button:hover { background: #a93226; }

.signup-form-stacked {
  flex-direction: column;
  border-radius: 4px;
  overflow: visible;
}

.signup-form-row {
  display: flex;
  gap: 0;
}

.signup-form-row input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: background 0.2s;
  border-radius: 0;
}

.signup-form-row input:first-child {
  border-radius: 4px 0 0 0;
  border-right: none;
}

.signup-form-row input:last-child {
  border-radius: 0 4px 0 0;
}

.signup-form-row input::placeholder { color: rgba(255,255,255,0.35); }
.signup-form-row input:focus { background: rgba(255,255,255,0.13); }

.signup-form-stacked button {
  width: 100%;
  border-radius: 0 0 4px 4px;
  padding: 13px;
}

.form-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 1.2em;
}

/* ── STARS ── */
.stars-decor {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  animation: fadeUp 0.7s 0.55s ease both;
}

.star {
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  opacity: 0.7;
}

/* ── SOCIAL ── */
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.6s ease both;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.05);
}

.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.social-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 400px;
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  text-align: left;
  animation: fadeUp 0.7s 0.65s ease both;
}

.social-disclaimer svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.social-disclaimer strong { color: rgba(255,255,255,0.55); }

/* ── DISTRICT MAP ── */
.district-section {
  width: 100%;
  background: linear-gradient(180deg, var(--navy) 0%, #0d1f3c 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 60px 40px;
  margin-top: 0;
}

.district-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.district-map-wrap { flex: 0 0 auto; width: 300px; }

.district-map-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.district-text { flex: 1; }

.district-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.district-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.district-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.town-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 3px;
  background: rgba(212,168,67,0.05);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
}

.town-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .district-inner { flex-direction: column; gap: 32px; text-align: center; }
  .district-map-wrap { width: 240px; }
  .town-list { justify-content: center; }
  .district-section { padding: 48px 24px; }
}

/* ── INNER PAGE CONTENT ── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 32px;
}

.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold));
  border-radius: 2px;
  margin: 0 0 28px;
}

/* ── ABOUT: BIO ── */
.about-bio-section {
  background: linear-gradient(180deg, var(--navy) 0%, #0d1f3c 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 64px 40px;
}

.about-bio-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.about-bio-photo-col {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid rgba(212,168,67,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-name-card {
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  text-align: center;
}

.about-name-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.about-name-card-title {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.about-bio-text-col { flex: 1; }

.about-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-bio-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 18px;
}

@media (max-width: 680px) {
  .about-bio-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .about-bio-photo-col { width: 100%; max-width: 220px; }
  .about-photo-wrap { width: 160px; height: 160px; }
  .about-bio-section { padding: 48px 24px; }
}

/* ── ABOUT: MESSAGE ── */
.about-message-section {
  background: var(--navy);
  padding: 72px 40px 80px;
}

.about-message-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-pivot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.about-pivot-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,168,67,0.35));
}

.about-pivot-rule:last-child {
  background: linear-gradient(to left, transparent, rgba(212,168,67,0.35));
}

.about-pivot-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
  text-align: center;
}

.about-message-subhead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-message-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-message-body p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

.about-callout {
  margin: 8px 0 40px;
  padding: 24px 32px;
  border-left: 4px solid var(--red);
  background: rgba(192,57,43,0.07);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
}

.about-inline-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,67,0.4);
  transition: border-color 0.2s, color 0.2s;
}

.about-inline-link:hover {
  color: #e8c060;
  border-bottom-color: #e8c060;
}

.about-sign-off {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-sign-off-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

@media (max-width: 640px) {
  .about-message-section { padding: 52px 24px 64px; }
  .about-pivot-text { white-space: normal; }
  .about-callout { padding: 20px 20px; }
}

/* ── PRESS QUOTES ── */
.press-quotes {
  background: #060e1c;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 52px 32px;
}

.press-quotes-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.press-quote {
  flex: 1;
  padding: 0 40px;
}

.press-quote:first-child { padding-left: 0; }
.press-quote:last-child  { padding-right: 0; }

.press-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: -12px;
}

.press-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 18px;
}

.press-quote-source {
  display: flex;
  align-items: center;
  gap: 10px;
}

.press-quote-pub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-quote-pub::before {
  content: '— ';
}

.press-quote-date {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

.press-quote-divider {
  flex: 0 0 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}

@media (max-width: 680px) {
  .press-quotes-inner {
    flex-direction: column;
    gap: 36px;
  }
  .press-quote { padding: 0; }
  .press-quote-divider {
    flex: 0 0 auto;
    width: 60px;
    height: 1px;
    align-self: auto;
    margin: 0;
  }
  .press-quotes { padding: 40px 24px; }
}

/* ── UNSUBSCRIBE ── */
.unsub-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.unsub-box {
  background: #0d1f3c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 40px;
  text-align: center;
}

.unsub-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.unsub-box p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.unsub-box strong { color: var(--white); font-weight: 600; }

.unsub-note {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.35) !important;
}

.unsub-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 32px;
  background: var(--red);
  border: none;
  border-radius: 4px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}

.unsub-btn:hover { background: #a93226; }

.unsub-back, .unsub-cancel {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.unsub-back:hover, .unsub-cancel:hover { color: rgba(255,255,255,0.7); }

.unsub-check {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.unsub-success { border-color: rgba(212,168,67,0.3); }
.unsub-error   { border-color: rgba(192,57,43,0.3); }

/* ── CONTACT ── */
.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 56px 0;
}

.contact-section-header {
  margin-bottom: 28px;
}

.contact-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact-field-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.28);
}

.contact-field input,
.contact-field textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(212,168,67,0.5);
  background: rgba(255,255,255,0.08);
}

.contact-submit {
  align-self: flex-start;
  padding: 13px 32px;
  background: var(--red);
  border: none;
  border-radius: 4px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.contact-submit:hover { background: #a93226; transform: translateY(-1px); }
.contact-submit:active { transform: translateY(0); }

.contact-success {
  padding: 28px 32px;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 6px;
  background: rgba(212,168,67,0.05);
  text-align: center;
}

.contact-success-check {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-success-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-success-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

.contact-error-msg {
  font-size: 0.88rem;
  color: #e74c3c;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(231,76,60,0.3);
  border-radius: 4px;
  background: rgba(231,76,60,0.06);
}

@media (max-width: 560px) {
  .contact-wrap { padding: 48px 24px 64px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; text-align: center; }
}

/* ── ISSUES ── */
.issues-intro {
  text-align: center;
  padding: 72px 24px 48px;
  background: var(--navy);
}

.issues-intro-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.issues-intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.issues-intro-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.issues-grid-section {
  padding: 8px 40px 80px;
  background: var(--navy);
}

.issues-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.issue-card {
  background: #0d1f3c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 32px 28px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.issue-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.issue-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--gold);
}

.issue-card-icon svg {
  width: 20px;
  height: 20px;
}

.issue-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.issue-card-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

@media (max-width: 840px) {
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .issues-grid-section { padding: 8px 24px 64px; }
}

@media (max-width: 540px) {
  .issues-grid { grid-template-columns: 1fr; }
  .issues-intro { padding: 52px 24px 36px; }
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,14,28,0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  position: relative;
  background: #0d1f3c;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 40px 40px 36px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  animation: fadeUp 0.25s ease both;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0 4px;
}

.modal-close:hover { color: var(--white); }

.modal-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}

@media (max-width: 500px) {
  .modal-box { padding: 32px 24px 28px; }
}

/* ── DONATE PAGE ── */
.donate-message-section {
  padding: 72px 24px 80px;
  max-width: 780px;
  margin: 0 auto;
}

.donate-message-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.donate-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.donate-message-body {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.donate-message-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.donate-sign-off {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.donate-amounts {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.donate-amounts-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.donate-amounts .donate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.donate-amounts .donate-btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}

.donate-amounts .donate-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.donate-amounts .donate-btn-featured {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.donate-amounts .donate-btn-featured:hover {
  background: #a93226;
  border-color: #a93226;
}

.donate-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}

.donate-charity {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.donate-charity-alt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.donate-charity-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 4px 0;
}

.donate-charity-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.donate-charity-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donate-charity-link:hover { color: var(--white); }

@media (max-width: 640px) {
  .donate-message-section { padding: 48px 24px 60px; }
  .donate-amounts .donate-buttons { gap: 8px; }
  .donate-amounts .donate-btn { padding: 10px 18px; font-size: 0.9rem; }
}

/* ── DONATE BAR (fixed) ── */
.donate-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  border-top: 4px solid var(--red);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.donate-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.donate-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.donate-btn {
  padding: 11px 24px;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, border-color 0.18s, transform 0.1s;
}

.donate-btn:hover {
  background: #a93226;
  border-color: #a93226;
  transform: translateY(-1px);
}

.donate-btn:active { transform: translateY(0); }

.donate-btn.other {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.donate-btn.other:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.donate-legal {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  padding: 6px 0 2px;
  line-height: 1.6;
}

.donate-legal strong { color: rgba(255,255,255,0.42); }

@media (max-width: 640px) {
  .donate-section {
    padding: 8px 12px;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .donate-label { display: none; }
  .donate-legal { display: none; }
  .donate-buttons { gap: 6px; flex-wrap: nowrap; }
  .donate-btn {
    padding: 7px 10px;
    font-size: 0.8rem;
    border-width: 1px;
  }
}

/* ── FOOTER ── */
footer {
  margin-top: 60px;
  padding: 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.28);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

footer strong { color: rgba(255,255,255,0.45); }

.footer-mobile-legal {
  display: none;
  margin-top: 12px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .footer-mobile-legal { display: block; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
