:root {
  --navy: #0b2545;
  --navy-dark: #071930;
  --red: #b31942;
  --red-dark: #8c1230;
  --cream: #f7f4ec;
  --white: #ffffff;
  --gray: #6b7280;
  --text: #1c2530;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, .brand-text {
  font-family: 'Merriweather', Georgia, serif;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 6px 16px rgba(179, 25, 66, 0.35); }
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); padding: 8px 18px; font-size: 0.85rem; white-space: nowrap; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-donate { background: var(--red); color: var(--white); padding: 9px 20px; }
.btn-donate:hover { background: var(--red-dark); }

.btn-lg { padding: 15px 32px; font-size: 1.05rem; }

/* ===== Announcement bar ===== */
.announcement-bar {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 12px;
}
.announcement-bar a { color: #ffd75e; font-weight: 700; text-decoration: underline; }

/* ===== Header ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo { width: 40px; height: 40px; }
.brand-text {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a { color: var(--text); }
.main-nav a:hover { color: var(--red); }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #123a6b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffd75e;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 3.4rem;
  line-height: 1.12;
  margin: 0 0 20px;
}
.hero h1 .accent { color: #ff6b81; }
.hero-sub {
  font-size: 1.1rem;
  color: #d7e2f2;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-fineprint { font-size: 0.75rem; color: #9fb1cc; }

.hero-media { position: relative; display: flex; justify-content: center; }
.portrait {
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,0.15);
}
.hero-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  padding: 12px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border: 3px dashed white;
}
.badge-tiny { font-size: 0.55rem; font-weight: 500; opacity: 0.75; }
.hero-wave {
  height: 60px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 60%, 50% 10%, 25% 60%, 0 0);
  margin-top: -1px;
}

/* ===== Ticker ===== */
.ticker {
  background: var(--red);
  color: white;
  overflow: hidden;
  padding: 10px 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: scroll-left 28s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-title { font-size: 2.1rem; color: var(--navy); margin: 0 0 12px; }
.section-title.center { text-align: center; }
.section-sub { color: var(--gray); margin-bottom: 40px; }
.section-sub.center { text-align: center; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.bio-facts { list-style: none; padding: 0; margin-top: 20px; display: grid; gap: 10px; }
.bio-facts li { font-weight: 600; }
.about-quote blockquote {
  background: var(--navy);
  color: white;
  padding: 34px;
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-style: italic;
  position: relative;
  box-shadow: var(--shadow);
}
.about-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: #ffd75e;
  font-size: 0.9rem;
}

/* Issues */
.issues { background: var(--white); }
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.issue-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid #e7e1d3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.issue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.issue-card-meta {
  grid-column: 1 / -1;
  background: var(--navy);
  border-color: var(--navy);
}
.issue-card-meta h3 { color: #ffd75e; }
.issue-card-meta p { color: #cdd9ec; }
.issue-icon { font-size: 2rem; margin-bottom: 12px; }
.issue-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.15rem; }
.issue-card p { margin: 0; color: var(--gray); font-size: 0.95rem; }

/* Stats bar */
.stats-bar { background: var(--navy-dark); color: white; padding: 46px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}
.stat-num { display: block; font-size: 2.1rem; font-weight: 800; color: #ffd75e; font-family: 'Merriweather', serif; }
.stat-label { font-size: 0.85rem; color: #b9c7dd; }
.stats-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #7488a8;
  margin: 30px auto 0;
  font-style: italic;
}

/* Endorsements */
.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.endorsement-card {
  background: white;
  border-left: 5px solid var(--red);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.endorsement-card p { font-style: italic; margin: 0 0 12px; }
.endorsement-card strong { color: var(--navy); font-size: 0.85rem; }

/* Events */
.events { background: var(--white); }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.event-date {
  background: var(--navy);
  color: white;
  border-radius: 8px;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-date .d { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.event-date .m { font-size: 0.75rem; letter-spacing: 1px; }
.event-info { flex: 1; }
.event-info h3 { margin: 0 0 4px; font-size: 1.05rem; color: var(--navy); }
.event-info p { margin: 0; color: var(--gray); font-size: 0.9rem; }

/* Donate CTA */
.donate-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}
.donate-inner h2 { font-size: 2.2rem; margin-bottom: 10px; font-family: 'Merriweather', serif; }
.donate-inner p { max-width: 500px; margin: 0 auto 30px; color: #ffe3e9; }
.donate-amounts { display: flex; justify-content: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.amount {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.amount:hover, .amount.other { background: white; color: var(--red); }
.donate-submit { background: white; color: var(--red); }
.donate-submit:hover { background: #ffe3e9; }
.disclaimer { font-size: 0.75rem; color: #ffd0da; margin-top: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Volunteer */
.volunteer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.signup-form {
  display: grid;
  gap: 14px;
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.signup-form input {
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.signup-form button { justify-self: start; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #c9d4e6; padding: 60px 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.footer-brand p { font-size: 0.85rem; margin: 0; }
.footer-links h4, .footer-social h4 { color: white; margin: 0 0 14px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.social-icons a:hover { background: var(--red); }
.footer-bottom { padding-top: 20px; font-size: 0.75rem; color: #8fa0bc; text-align: center; }
.footer-meta { margin-top: 8px; color: #5f7192; font-style: italic; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .volunteer-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .endorsement-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .hamburger { display: block; margin-left: auto; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.3rem; }
  .issues-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-row { flex-wrap: wrap; }
}
