/* ─────────────────────────────────────────
   Variables & Reset
───────────────────────────────────────── */
:root {
  --gold:      #F6B800;
  --gold-dark: #D99E00;
  --purple:    #7B5CFA;
  --navy:      #0B1F4A;
  --dark:      #111827;
  --gray:      #6B7280;
  --light:     #F4F4F0;
  --white:     #FFFFFF;
  --max-w:     1200px;
  --nav-h:     72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─────────────────────────────────────────
   Utilities
───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

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

/* ─────────────────────────────────────────
   Header / Nav
───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 75px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--purple); }

.btn-nav-donate {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 3px;
  font-weight: 700 !important;
}

.btn-nav-donate:hover {
  background: var(--gold-dark);
  color: var(--navy) !important;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─────────────────────────────────────────
   Hero
───────────────────────────────────────── */
.hero {
  background: var(--navy);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: calc(100vh - var(--nav-h));
}

.hero-text {
  flex: 1;
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin-bottom: 1.75rem;
  line-height: 1;
}

.hero-elect {
  display: block;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--purple);
  margin-bottom: 0.3rem;
}

.hero-name {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  border-left: 3px solid var(--purple);
  padding-left: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-photo {
  flex-shrink: 0;
  width: min(420px, 44%);
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--purple);
  border-radius: 4px;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────
   Issues
───────────────────────────────────────── */
.issues {
  background: var(--light);
  padding: 6rem 0;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.issue-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.issue-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.issue-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.issue-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.issue-card p {
  font-size: 0.91rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   About
───────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-text .eyebrow {
  margin-bottom: 0.4rem;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-size: 0.96rem;
  line-height: 1.8;
}

.signature-img {
  margin-top: 1.5rem;
  max-width: 220px;
  opacity: 0.8;
}

/* ─────────────────────────────────────────
   Join
───────────────────────────────────────── */
.join {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
}

.join-inner {
  max-width: 680px;
}

.join-inner .eyebrow {
  color: var(--gold);
}

.join-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.join-inner > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.join-form .form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.join-form input {
  flex: 1;
  min-width: 190px;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.join-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.join-form input:focus { border-color: var(--gold); }

.join-thanks {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.join-contact {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.join-contact a {
  color: var(--gold);
  font-weight: 600;
}

.join-contact a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.site-footer {
  background: #060F28;
  padding: 3rem 0;
  border-top: 3px solid var(--purple);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
}

.footer-title {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.footer-meta p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.2rem;
}

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 960px) {
  .issues-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--light);
  }

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

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-photo {
    width: min(340px, 85%);
  }

  .hero-photo::before { display: none; }

  .hero-tagline { text-align: left; }

  .hero-ctas { justify-content: center; }

  .join-form .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .join-form input { min-width: unset; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
}
