/* =====================================================
   SKIP SHELTON FOR LT. GOVERNOR — Campaign Website
   Design: Cinematic Americana
   Palette: Navy / Gold / Warm White (from campaign logo)
   Type: Bebas Neue (display) / Cormorant Garamond (headings) / Outfit (body)
   ===================================================== */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #152B54;
  --navy-deep: #0A1628;
  --gold: #D4871C;
  --gold-light: #E8A63D;
  --red: #C4302B;
  --cream: #FAF7F2;
  --warm-white: #FFF9F2;
  --slate: #3A4A60;
  --body-color: #2A3444;

  --ff-display: 'Bebas Neue', 'Impact', sans-serif;
  --ff-heading: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body: 'Outfit', 'Segoe UI', sans-serif;

  --radius: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  color: var(--body-color);
  line-height: 1.7;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}


/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px;
  font-family: var(--ff-body);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.04em;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,135,28,0.35); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: #1a3668; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(21,43,84,0.3); }

.btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,0.04); }

.btn--full { width: 100%; }


/* ── Shared Section Helpers ── */
.section-label {
  font-family: var(--ff-body);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--light { color: var(--gold-light); }

.section-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.section-heading--center { text-align: center; }
.section-heading--light { color: #fff; }


/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }


/* ================================================================
   NAVBAR
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s var(--ease);
}
.nav--solid {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.nav__brand { display: flex; align-items: center; }

.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark-name {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.nav__brand:hover .nav__wordmark-name { color: var(--gold); }
.nav__wordmark-title {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-family: var(--ff-body);
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 10px 28px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.05) brightness(0.9);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,22,40,0.7) 0%,
      rgba(10,22,40,0.45) 40%,
      rgba(10,22,40,0.6) 70%,
      rgba(10,22,40,0.92) 100%
    ),
    linear-gradient(90deg,
      rgba(10,22,40,0.8) 0%,
      rgba(10,22,40,0.2) 50%,
      rgba(10,22,40,0.5) 100%
    );
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 32px 80px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.35em;
  color: var(--gold);
  border: 1px solid rgba(212,135,28,0.4);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title-line {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 14vw, 10rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero__title-line--accent {
  color: var(--gold);
  font-size: clamp(5rem, 16vw, 12rem);
}

.hero__pillars {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--ff-body);
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero__pillar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__sub {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 44px;
  opacity: 0; animation: fadeUp 0.8s 0.85s forwards;
}

.hero__actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
}
.hero__scroll span {
  font-family: var(--ff-body);
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(212,135,28,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ================================================================
   PILLARS (3-column strip)
   ================================================================ */
.pillars {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 56px 40px;
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: #1a3362; }
.pillar--accent { background: var(--navy-deep); }
.pillar--accent:hover { background: #0e1e38; }

.pillar__icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  color: var(--gold);
}
.pillar__icon svg { width: 100%; height: 100%; }

.pillar__title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}


/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: 120px 40px;
  background: var(--cream);
}
.about__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(21,43,84,0.18);
}
.about__photo {
  width: 100%; display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.02) saturate(1.05);
}
.about__photo-accent {
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--navy));
}

.about__bio p {
  font-size: 1.02rem;
  color: var(--body-color);
  margin-bottom: 20px;
  line-height: 1.85;
}
.about__bio p:first-child {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
}

.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(21,43,84,0.1);
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about__stat-label {
  font-size: 0.75rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}


/* ================================================================
   MISSION (full-width quote)
   ================================================================ */
.mission {
  padding: 100px 40px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212,135,28,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(196,48,43,0.04) 0%, transparent 70%);
}

.mission__inner {
  position: relative;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.mission__quote-mark {
  font-family: var(--ff-heading);
  font-size: 8rem;
  line-height: 1;
  color: rgba(212,135,28,0.2);
  margin-bottom: -48px;
}
.mission__text {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
}
.mission__cite {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}


/* ================================================================
   PLATFORM
   ================================================================ */
.platform {
  padding: 120px 40px;
  background: var(--cream);
}
.platform__inner { max-width: 1200px; margin: 0 auto; }

.platform__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.platform__card {
  background: #fff;
  border-radius: 12px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21,43,84,0.06);
  transition: all 0.4s var(--ease);
}
.platform__card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--navy));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.platform__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(21,43,84,0.1);
  border-color: rgba(21,43,84,0.12);
}
.platform__card:hover::before { opacity: 1; }

.platform__num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: rgba(21,43,84,0.06);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: color 0.4s;
}
.platform__card:hover .platform__num { color: rgba(212,135,28,0.15); }

.platform__card h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.platform__card > p {
  font-size: 0.95rem;
  color: var(--body-color);
  line-height: 1.75;
  margin-bottom: 20px;
}

.platform__points {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(21,43,84,0.06);
}
.platform__points li {
  font-size: 0.88rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
}
.platform__points li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}


/* ================================================================
   ENDORSEMENTS
   ================================================================ */
.endorsements {
  padding: 120px 40px;
  background: var(--navy);
  position: relative;
}
.endorsements::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--navy-deep));
}
.endorsements .section-label { color: var(--gold-light); }
.endorsements .section-heading { color: #fff; }

.endorsements__inner { max-width: 1200px; margin: 0 auto; }

.endorsements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.endorsement-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
}
.endorsement-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(212,135,28,0.25);
}

.endorsement-card__mark {
  font-family: var(--ff-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(212,135,28,0.3);
  margin-bottom: -20px;
}
.endorsement-card__text {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.endorsement-card__footer {
  display: flex; align-items: center; gap: 16px;
}
.endorsement-card__line {
  width: 32px; height: 2px;
  background: var(--gold);
}
.endorsement-card__footer cite {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ================================================================
   EVENTS
   ================================================================ */
.events {
  padding: 120px 40px;
  background: var(--cream);
}
.events__inner { max-width: 880px; margin: 0 auto; }

.events__list {
  display: flex; flex-direction: column; gap: 12px;
}

.event {
  display: flex; align-items: center; gap: 28px;
  background: #fff;
  border: 1px solid rgba(21,43,84,0.06);
  border-radius: 12px;
  padding: 24px 32px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.event:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(21,43,84,0.08);
}

.event__date {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
}
.event__month {
  font-family: var(--ff-body);
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  opacity: 0.7;
}
.event__day {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.event__details { flex: 1; }
.event__details h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.event__details p {
  font-size: 0.85rem;
  color: var(--slate);
}

.event__rsvp {
  font-family: var(--ff-body);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.3s;
}
.event:hover .event__rsvp { color: var(--navy); }


/* ================================================================
   DONATE
   ================================================================ */
.donate {
  padding: 120px 40px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.donate::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(212,135,28,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(196,48,43,0.05) 0%, transparent 70%);
}
.donate__inner {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.donate__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}
.donate__brand {
  display: flex; flex-direction: column;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.donate__brand-name {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.donate__brand-pillars {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(212,135,28,0.35);
  margin-top: 6px;
}

.donate__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

.donate__amounts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.donate__amt {
  padding: 14px;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.donate__amt:hover { border-color: var(--gold); color: var(--gold); }
.donate__amt--selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.donate__toggle {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; cursor: pointer;
}
.donate__toggle input { display: none; }
.donate__toggle-track {
  width: 44px; height: 24px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.donate__toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff; border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.donate__toggle input:checked ~ .donate__toggle-track {
  background: var(--gold);
}
.donate__toggle input:checked ~ .donate__toggle-track .donate__toggle-thumb {
  transform: translateX(20px);
}
.donate__toggle-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.donate__fields {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
}
.donate__field { display: flex; flex-direction: column; gap: 6px; }
.donate__field label {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(21,43,84,0.8);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.donate__field-hint {
  font-weight: 400;
  text-transform: none;
  color: rgba(21,43,84,0.5);
  font-size: 0.75rem;
}
.donate__fields input {
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.donate__fields input::placeholder { color: rgba(255,255,255,0.3); }
.donate__fields input:focus { border-color: var(--gold); }

.donate__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.donate__legal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 16px;
}


/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter {
  padding: 64px 40px;
  background: var(--navy);
}
.newsletter__inner {
  max-width: 700px; margin: 0 auto;
  text-align: center;
}
.newsletter h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem; font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.newsletter__form {
  display: flex; gap: 12px;
  max-width: 500px; margin: 0 auto;
}
.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__form input:focus { border-color: var(--gold); }


/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 120px 40px;
  background: var(--cream);
}
.contact__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 56px;
}
.contact__header { max-width: 720px; }
.contact__header .section-heading { margin-top: 12px; margin-bottom: 0; }
.contact__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
}
.contact__left, .contact__right { display: flex; flex-direction: column; }

.contact__cards {
  display: flex; flex-direction: column; gap: 20px;
  height: 100%;
}
.contact__info-card { flex: 1; display: flex; flex-direction: column; }
.contact__info-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid rgba(21,43,84,0.06);
  border-left: 4px solid var(--gold);
}
.contact__info-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact__info-card p {
  font-size: 0.92rem;
  color: var(--body-color);
  line-height: 1.7;
}
.contact__link {
  display: inline-block; margin-top: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold);
  transition: color 0.3s;
}
.contact__link:hover { color: var(--navy); }

.contact__form {
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.contact__form .btn { margin-top: auto; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(21,43,84,0.1);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(21,43,84,0.3); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { border-color: var(--gold); }
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form select { color: rgba(21,43,84,0.5); cursor: pointer; }


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 48px 40px 40px;
  background: var(--navy-deep);
}
.footer__inner { max-width: 1200px; margin: 0 auto; }

.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.footer__wordmark { display: flex; flex-direction: column; line-height: 1; }
.footer__wordmark-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__wordmark-title {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(212,135,28,0.4);
  margin-top: 3px;
}

.footer__social {
  display: flex; gap: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  background: rgba(212,135,28,0.15);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom-links {
  display: flex; gap: 24px;
}
.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }


/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.8; transform: scaleY(1.2); }
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-frame { max-width: 500px; margin: 0 auto; }
  .platform__grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .endorsements__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .donate__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__body { grid-template-columns: 1fr; gap: 40px; }
  .contact__inner { gap: 40px; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute; top: 80px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 40px 32px;
    gap: 16px;
    border-bottom: 2px solid var(--gold);
  }
  .nav__links.open { display: flex; }
  .nav__links a { color: rgba(255,255,255,0.8); font-size: 1rem; }
  .nav__links a::after { display: none; }
  .nav__cta { align-self: flex-start; }

  .hero__content { padding: 140px 24px 100px; }
  .hero__pillars {
    flex-direction: column; gap: 8px;
  }
  .hero__pillar-dot { display: none; }

  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pillar:last-child { border-bottom: none; }

  .about { padding: 80px 24px; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .mission { padding: 64px 24px; }
  .mission__quote-mark { font-size: 5rem; margin-bottom: -32px; }

  .platform { padding: 80px 24px; }
  .endorsements { padding: 80px 24px; }
  .events { padding: 80px 24px; }
  .donate { padding: 80px 24px; }
  .contact { padding: 80px 24px; }

  .event { flex-direction: column; align-items: flex-start; gap: 16px; }
  .event:hover { transform: translateX(0) translateY(-4px); }

  .newsletter__form { flex-direction: column; }

  .footer__top { flex-direction: column; gap: 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { flex-direction: column; gap: 8px; align-items: center; }
}

@media (max-width: 480px) {
  .hero__title-line { font-size: 3.5rem; }
  .hero__title-line--accent { font-size: 4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .donate__amounts { grid-template-columns: repeat(2, 1fr); }
  .donate__row { grid-template-columns: 1fr; }
  .donate__card { padding: 28px 24px; }

  .about__stats { grid-template-columns: 1fr; }
}


/* =====================================================
   LIGHT THEME OVERRIDES (2026-04 — per client feedback)
   Flips navy-dominant sections to cream/white
   ===================================================== */

/* Hero: softer overlay, no photo darkening */
.hero__photo { filter: contrast(1.02) brightness(1.02) !important; }
.hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(250,247,242,0.45) 0%,
      rgba(250,247,242,0.10) 35%,
      rgba(250,247,242,0.25) 70%,
      rgba(250,247,242,0.80) 100%) !important;
}
.hero__title, .hero__sub, .hero__pillars, .hero__badge, .hero__scroll {
  color: var(--navy-deep) !important;
  text-shadow: 0 1px 18px rgba(255,249,242,0.9), 0 0 2px rgba(255,249,242,0.6);
}
.hero__badge {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(21,43,84,0.2);
  color: var(--navy) !important;
  backdrop-filter: blur(4px);
}
.hero__title-line--accent { color: var(--red) !important; }
.hero__scroll-line { background: var(--navy) !important; }

/* Pillars: white cards with navy headings */
.pillars { background: var(--cream); }
.pillar {
  background: #ffffff !important;
  border-right: 1px solid rgba(21,43,84,0.08) !important;
  border-bottom: 1px solid rgba(21,43,84,0.08);
}
.pillar:hover { background: #fdfaf3 !important; }
.pillar--accent { background: var(--cream) !important; }
.pillar--accent:hover { background: #f4eede !important; }
.pillar__title { color: var(--navy-deep) !important; }
.pillar__text { color: var(--body-color) !important; }
.pillar__icon { color: var(--red) !important; }

/* Mission section: light with navy text */
.mission { background: var(--warm-white) !important; }
.mission__text, .mission__cite, .mission__quote-mark {
  color: var(--navy-deep) !important;
}
.mission__quote-mark { opacity: 0.35; }

/* Endorsements (hidden but styled safely) */
.endorsements { background: var(--cream) !important; }
.endorsements .section-heading,
.endorsements .section-label { color: var(--navy-deep) !important; }
.endorsement-card {
  background: #fff !important;
  color: var(--body-color) !important;
  border: 1px solid rgba(21,43,84,0.1);
}
.endorsement-card__text, .endorsement-card cite { color: var(--body-color) !important; }

/* Donate: keep navy as feature but soften */
.donate { background: var(--warm-white) !important; }
.donate .section-heading--light,
.donate .section-label--light { color: var(--navy-deep) !important; }
.donate__desc, .donate__brand, .donate__brand-name, .donate__brand-pillars {
  color: var(--slate) !important;
}
.donate__card {
  background: #fff !important;
  border: 1px solid rgba(21,43,84,0.1);
  box-shadow: 0 20px 60px rgba(21,43,84,0.08);
}
.donate__card input,
.donate__card .donate__amt,
.donate__card .donate__toggle-text,
.donate__card .donate__legal {
  color: var(--body-color) !important;
}
.donate__card .donate__field label { color: var(--navy-deep) !important; }
.donate__card .donate__field-hint { color: rgba(21,43,84,0.55) !important; }
.donate__amt {
  background: #fff !important;
  border: 1px solid rgba(21,43,84,0.15) !important;
}
.donate__amt--selected {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}
.donate__card input {
  background: #faf7f2 !important;
  border: 1px solid rgba(21,43,84,0.15) !important;
}

/* Newsletter */
.newsletter { background: var(--cream) !important; }
.newsletter h3, .newsletter p { color: var(--navy-deep) !important; }
.newsletter__form input {
  background: #fff !important;
  color: var(--body-color) !important;
  border: 1px solid rgba(21,43,84,0.15) !important;
}

/* Contact section — keep light (was already) */
.contact { background: var(--warm-white) !important; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: #fff !important;
  color: var(--body-color) !important;
  border: 1px solid rgba(21,43,84,0.15) !important;
}

/* Footer: light with dark text */
.footer { background: var(--navy) !important; color: #fff; }
/* ^ keep footer navy for contrast, as dark footers are common; change to cream if client objects */

/* Navbar: translucent light */
.nav { background: rgba(255,249,242,0.92) !important; backdrop-filter: blur(10px); }
.nav__wordmark-name, .nav__wordmark-title { color: var(--navy-deep) !important; }
.nav__links a { color: var(--navy-deep) !important; }
.nav__links a:hover { color: var(--red) !important; }
.nav__toggle span { background: var(--navy-deep) !important; }

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */
.about-page__header {
  padding: 140px 32px 60px;
  background: var(--cream);
  text-align: center;
}
.about-page__header-inner { max-width: 900px; margin: 0 auto; }
.about-page__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--navy-deep);
  margin-top: 16px;
}
.about-page__bio-section {
  padding: 60px 32px;
  background: var(--warm-white);
}
.about-page__bio-inner {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--body-color);
}
.about-page__bio-inner p { margin-bottom: 22px; }
.about-page__gallery-section {
  padding: 80px 32px;
  background: var(--cream);
}
.about-page__gallery-inner { max-width: 1200px; margin: 0 auto; }
.about-page__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.about-page__gallery-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(21,43,84,0.08);
  border: 1px solid rgba(21,43,84,0.08);
}
.about-page__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.about-page__gallery-item img[src*="about-ct-deployment"] {
  object-fit: contain;
  object-position: center;
  background: var(--cream);
}
.about-page__gallery-item img[src*="about-innovation"] {
  object-position: center 30%;
}
.about-page__gallery-item figcaption {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--navy-deep);
  text-align: center;
  font-weight: 500;
}
.about-page__cta {
  padding: 80px 32px;
  background: var(--warm-white);
  text-align: center;
}
.about-page__cta h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy-deep);
  margin-bottom: 28px;
}
.about-page__cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* =====================================================
   HERO FIX (2026-04 — crit)
   Reworks hero to a two-column split: text card + framed photo
   ===================================================== */
.hero {
  min-height: auto !important;
  padding: 120px 32px 100px !important;
  background: linear-gradient(135deg, #faf7f2 0%, #fff9f2 50%, #f5ecda 100%) !important;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 56px !important;
  align-items: center !important;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__bg {
  position: relative !important;
  inset: auto !important;
  order: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(21, 43, 84, 0.18), 0 0 0 1px rgba(21,43,84,0.08);
}
.hero__photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  filter: none !important;
}
.hero__overlay, .hero__grain { display: none !important; }

.hero__content {
  order: 1;
  text-align: left !important;
  max-width: none !important;
  padding: 0 !important;
  position: static !important;
}
.hero__badge {
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(21, 43, 84, 0.2) !important;
  color: var(--navy-deep) !important;
  text-shadow: none !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 24px;
}
.hero__title {
  color: var(--navy-deep) !important;
  text-shadow: none !important;
  font-size: clamp(3.2rem, 7vw, 6rem) !important;
  line-height: 0.95 !important;
  margin-bottom: 24px;
}
.hero__title-line {
  color: var(--navy-deep) !important;
  text-shadow: none !important;
  display: block !important;
}
.hero__title-line--accent {
  color: var(--red) !important;
  text-shadow: none !important;
}
.hero__pillars {
  color: var(--slate) !important;
  text-shadow: none !important;
  justify-content: flex-start !important;
  margin-bottom: 24px;
  gap: 14px;
}
.hero__pillar-dot {
  background: var(--red) !important;
}
.hero__sub {
  color: var(--body-color) !important;
  text-shadow: none !important;
  font-size: 1.1rem !important;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions {
  justify-content: flex-start !important;
}
.hero__scroll { display: none !important; }

/* Mobile: stack */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr !important;
    padding: 100px 24px 60px !important;
    gap: 40px !important;
    text-align: center !important;
  }
  .hero__content { text-align: center !important; }
  .hero__pillars { justify-content: center !important; }
  .hero__actions { justify-content: center !important; }
  .hero__bg { order: 1; max-width: 360px; }
  .hero__content { order: 2; }
}

/* Honor EXIF orientation on gallery images (safety net) */
.about-page__gallery-item img { image-orientation: from-image; }

/* Fix: ensure reveal animations never leave elements invisible.
   Screenshot / no-JS contexts + slow observers were hiding content. */
.reveal { opacity: 1 !important; transform: none !important; }

/* Mobile nav fix: light menu panel so navy links are readable */
@media (max-width: 768px) {
  .nav__links {
    background: rgba(255, 249, 242, 0.98) !important;
    border-bottom: 2px solid var(--red) !important;
    box-shadow: 0 20px 40px rgba(21, 43, 84, 0.12);
  }
  .nav__links a {
    color: var(--navy-deep) !important;
    font-weight: 600;
  }
  .nav__links a:hover { color: var(--red) !important; }
}

/* Meet Skip / outline button on light hero */
.hero .btn--outline {
  color: var(--navy-deep) !important;
  border: 2px solid var(--navy-deep) !important;
  background: transparent !important;
}
.hero .btn--outline:hover {
  background: var(--navy-deep) !important;
  color: #fff !important;
}

/* Hero subtitle: remove italic (use body font, not Cormorant Garamond) */
.hero__sub {
  font-family: var(--ff-body) !important;
  font-style: normal !important;
}

/* Section headings: use Bebas Neue (impact style) to match SKIP SHELTON */
.section-heading {
  font-family: var(--ff-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-style: normal !important;
}
