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

:root {
  --teal: #2A6E8C;
  --teal-dark: #1D4F63;
  --gold: #F5C542;
  --gold-dark: #D4A830;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444;
}

body {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  background: #FFFDF4;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--teal-dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: 56px;
}

.nav-logo {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #F9D55A 0%, #F5C030 100%);
  text-align: center;
  padding: 0;
}

.hero-img {
  width: 100%;
  max-width: 720px;
  display: block;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.teal-banner {
  background: var(--teal);
  color: var(--gold);
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
}

.election-bar {
  background: var(--teal-dark);
  color: var(--white);
  font-size: clamp(14px, 2.5vw, 17px);
  padding: 12px 24px;
}

.election-bar strong { color: var(--gold); }

/* ── PAGE HEADER (non-home pages) ── */
.page-header {
  background: var(--teal);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-header p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── SECTIONS ── */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.section ul, .section ol {
  margin: 0 0 20px 24px;
}

.section ul li, .section ol li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.section .lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ── WHY SECTION ── */
.why-section { background: var(--teal); color: var(--white); }
.why-section h2 { color: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.why-card {
  background: rgba(255,255,255,0.1);
  border-left: 5px solid var(--gold);
  border-radius: 4px;
  padding: 24px 20px;
}

.why-card .icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-card .icon svg { width: 26px; height: 26px; fill: var(--teal); }
.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.why-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0; }

/* ── FACTS ── */
.facts-section { background: var(--gold); }
.facts-section h2 { color: var(--teal-dark); }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.fact-box {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fact-box .number { font-size: 34px; font-weight: 900; color: var(--teal); line-height: 1.1; }
.fact-box .label { font-size: 14px; color: var(--text-mid); margin-top: 6px; line-height: 1.4; }

/* ── ACTION BUTTONS ── */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.btn-primary  { background: var(--teal); color: var(--white); }
.btn-white    { background: var(--white); color: var(--teal-dark); }
.btn-gold     { background: var(--gold); color: var(--teal-dark); }
.btn-dark     { background: var(--teal-dark); color: var(--white); }
.btn-green    { background: #2e7d32; color: var(--white); }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

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

.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-mid);
  line-height: 1;
}

.modal h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 6px;
}

.modal p.modal-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.15s;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group .hint {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.modal-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: 8px;
  font-family: inherit;
}

.modal-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.modal-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.modal-success .check { font-size: 56px; margin-bottom: 14px; }
.modal-success h3 { font-size: 22px; color: var(--teal); margin-bottom: 10px; }
.modal-success p { font-size: 16px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid #e0d9c8;
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.faq-item p:last-child { margin-bottom: 0; }

.faq-item ul {
  margin: 8px 0 0 22px;
}

.faq-item ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 6px;
}

/* ── DONATE ── */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.donate-card {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.donate-card h3 { font-size: 20px; font-weight: 900; color: var(--teal); margin-bottom: 12px; }
.donate-card p { font-size: 16px; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }

.legal-note {
  background: #f5f0e8;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 16px 20px;
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── ENDORSEMENTS ── */
.endorse-cta {
  background: var(--teal);
  text-align: center;
  padding: 48px 24px;
}

.endorse-cta h2 { color: var(--gold); font-size: clamp(22px, 4vw, 32px); font-weight: 900; margin-bottom: 16px; text-transform: uppercase; }
.endorse-cta p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 640px; margin: 0 auto 28px; line-height: 1.6; }

.page-header .action-buttons {
  margin-top: 24px;
}

/* ── PHOTOS ── */
.page-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin: 32px 0;
  display: block;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.photo-grid-2 img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.photo-grid-3 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .photo-grid-2 { grid-template-columns: 1fr; }
  .photo-grid-2 img { height: 220px; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .photo-grid-3 img { height: 180px; }
}

/* ── FOOTER ── */
footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 28px 24px 20px;
  font-size: 13px;
  line-height: 1.6;
}

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

.fppc {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--teal-dark);
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

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

  .nav-links a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 16px;
  }

  .navbar { position: relative; }

  .hero-img { padding: 20px 16px 0; }
  .teal-banner { font-size: clamp(15px, 5vw, 22px); letter-spacing: 1px; padding: 14px 16px; }
  .election-bar { font-size: 14px; padding: 10px 16px; }

  .section { padding: 36px 16px; }
  .section p { font-size: 17px; }
  .section .lead { font-size: 18px; }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .facts-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fact-box { padding: 16px 12px; }
  .fact-box .number { font-size: 28px; }

  .action-buttons { flex-direction: column; align-items: stretch; }
  .btn { font-size: 16px; padding: 15px 24px; }

  .modal { padding: 28px 20px; }

  .donate-grid { grid-template-columns: 1fr; }
}
