:root {
  --navy-950: #08142c;
  --navy-900: #0f2144;
  --navy-800: #163160;
  --navy-700: #224781;
  --red-700: #c61f32;
  --red-600: #d7263d;
  --red-500: #ea394f;
  --white: #ffffff;
  --ink: #111827;
  --muted: #2f466f;
  --muted-soft: #6a7fa6;
  --line: rgba(15, 33, 68, 0.12);
  --panel: #f7f8fb;
  --shadow: 0 18px 50px rgba(8, 20, 44, 0.14);
  --radius: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* =========================
   Header
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    padding 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 20, 44, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 250px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.primary-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px auto;
  border-radius: 99px;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  background: var(--navy-950);
}

.hero-media,
.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback { z-index: 0; }
.hero-video { z-index: 1; }

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,20,44,0.88) 0%, rgba(8,20,44,0.72) 40%, rgba(8,20,44,0.42) 100%),
    linear-gradient(180deg, rgba(8,20,44,0.25) 0%, rgba(8,20,44,0.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 9rem 0 5rem;
}

.hero-copy-wrap {
  max-width: 720px;
  color: white;
}

.eyebrow,
.section-label,
.point-kicker,
.event-day {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.point-kicker {
  color: #8ea8d8;
}

.hero h1,
.section h2,
.point-card h2,
.issue-card h3,
.about-panel h3,
.event-card h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 0;
}

.hero h1 {
  margin-top: 0.65rem;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.1rem;
  margin: 1.25rem 0 0;
  color: rgba(240,245,255,0.96);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-note {
  margin-top: 1.15rem;
  color: rgba(232,240,255,0.9);
}

/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red-600);
  color: white;
}

.btn-primary:hover {
  background: var(--red-500);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.55);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-donate-nav {
  background: white;
  color: var(--navy-950) !important;
  padding-inline: 1rem;
}

.btn-block { width: 100%; }

/* =========================
   Quick Points
========================= */

.quick-points {
  position: relative;
  margin-top: -3rem;
  z-index: 4;
}

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

.point-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.4);
}

.point-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  margin-top: 0.35rem;
}

.point-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

/* =========================
   General Sections
========================= */

.section { padding: 6rem 0; }

.section-heading {
  margin-bottom: 2rem;
  max-width: 780px;
}

.section-heading--centered {
  text-align: center;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-top: 0.4rem;
}

.section-heading p:last-child {
  color: var(--muted);
  margin-top: 0.6rem;
}

/* =========================
   Issues
========================= */

.section-issues {
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

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

.issue-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(8,20,44,0.06);
}

.issue-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red-600);
  letter-spacing: 0.16em;
}

.issue-card h3 {
  font-size: 2.05rem;
  margin: 0.35rem 0 0.75rem;
}

.issue-card p,
.issue-card li {
  color: var(--muted);
}

.issue-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

/* =========================
   Shared Grids
========================= */

.about-grid,
.endorsement-grid,
.events-grid,
.volunteer-grid,
.donate-wrap,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.about-grid { grid-template-columns: 1.1fr 0.9fr; }

/* =========================
   About
========================= */

.about-panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-panel--intro {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: white;
}

.about-panel--intro .section-label { color: #b8caea; }
.about-panel--intro p { color: #e5edf9; }

.about-panel h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-top: 0.4rem;
}

.about-panel h3 {
  font-size: 2rem;
  margin: 0 0 0.45rem;
}

.about-panel ul { padding-left: 1.2rem; }

.about-panel li,
.about-panel p {
  color: var(--muted);
}

/* =========================
   Original Priorities Section
========================= */

.section-priorities {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.priority-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.priority-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(8,20,44,0.05);
}

/* =========================
   Cards
========================= */

.endorsement-grid,
.events-grid,
.volunteer-grid,
.donate-wrap,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.endorsement-card,
.event-card,
.volunteer-list,
.donate-actions,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(8,20,44,0.06);
}

.endorsement-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.endorsement-role,
.event-meta,
.disclaimer,
.contact-list,
.contact-form label {
  color: var(--muted);
}

.event-day { color: var(--navy-700); }

.event-card h3 {
  font-size: 2.3rem;
  margin: 0.45rem 0;
}

/* =========================
   Volunteer
========================= */

.volunteer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.volunteer-list div {
  background: var(--panel);
  border-radius: 14px;
  padding: 1rem;
  font-weight: 700;
}

/* =========================
   Donate
========================= */

.section-donate {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: white;
}

.section-donate .section-label,
.section-donate p {
  color: rgba(255,255,255,0.84);
}

.section-donate h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  margin-top: 0.35rem;
}

.donate-actions {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
  display: grid;
  align-content: center;
  gap: 1rem;
}

/* =========================
   Contact
========================= */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li + li { margin-top: 0.6rem; }

.contact-list a { color: var(--navy-800); }

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(15,33,68,0.18);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(215,38,61,0.18);
  border-color: var(--red-600);
}

/* =========================
   Footer
========================= */

.site-footer {
  background: #050d1f;
  color: rgba(255,255,255,0.75);
  padding: 2.25rem 0;
}

.footer-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.65rem;
}

.footer-logo { width: 180px; }

.footer-inner p { margin: 0; }

/* =========================
   Testimonials Slider
========================= */

.section-testimonials {
  overflow: hidden;
}

.testimonials-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 min(78vw, 980px);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(15,33,68,0.08);
  box-shadow: none;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.testimonial-name {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.testimonial-role {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17,24,39,0.72);
}

.testimonial-quote {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.85rem, 1.7vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

/* =========================
   Priorities Split Section
========================= */

.section-priorities-split {
  padding: 0;
}

.priorities-split {
  display: grid;
  grid-template-columns: minmax(180px, 30%) 1fr;
  min-height: 520px;
}

.priorities-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.priorities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.priorities-content {
  background: var(--red-600);
  color: #fff;
  display: flex;
  align-items: center;
}

.priorities-inner {
  max-width: 900px;
  padding: clamp(2rem, 4vw, 4rem);
}

.priorities-content .section-label {
  color: rgba(255,255,255,0.78);
}

.priorities-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.priority-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  max-width: 900px;
}

.priority-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: #888;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  box-shadow: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .issues-grid,
  .quick-points-grid,
  .about-grid,
  .endorsement-grid,
  .events-grid,
  .volunteer-grid,
  .donate-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-points {
    margin-top: -1.4rem;
  }
}

@media (max-width: 900px) {
  .testimonial-card {
    flex-basis: 88vw;
  }

  .testimonial-person {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-avatar {
    width: 76px;
    height: 76px;
  }

  .testimonial-role,
  .testimonial-name {
    font-size: 0.82rem;
  }

  .testimonial-quote {
    font-size: clamp(0.9rem, 3.2vw, 1.4rem);
    line-height: 1.2;
  }

  .priorities-split {
    grid-template-columns: 1fr;
  }

  .priorities-image {
    height: 240px;
  }

  .priorities-inner {
    padding: 2rem 1.5rem;
  }

  .priority-cloud span {
    min-height: 42px;
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-block; }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: rgba(8,20,44,0.98);
    backdrop-filter: blur(10px);
    padding: 6rem 1.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  }

  .primary-nav.is-open { transform: translateX(0); }

  .primary-nav a { font-size: 1rem; }

  .btn-donate-nav { margin-top: 0.5rem; }

  .brand img { width: 215px; }
}

@media (max-width: 640px) {
  .hero-inner { padding: 8rem 0 4rem; }

  .section { padding: 4.5rem 0; }

  .point-card,
  .issue-card,
  .about-panel,
  .endorsement-card,
  .event-card,
  .volunteer-list,
  .donate-actions,
  .contact-form {
    padding: 1.25rem;
  }

  .volunteer-list {
    grid-template-columns: 1fr;
  }
}

.events-grid > .section-heading {
  grid-column: 1 / -1;
}

.section-social {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.social-copy,
.social-feed-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 12px 36px rgba(8,20,44,0.06);
}

.social-copy p:last-of-type {
  color: var(--muted);
}

.social-actions {
  margin-top: 1.25rem;
}

.social-feed-card {
  padding: 0.85rem;
}

.social-feed-card iframe {
  width: 100%;
  min-height: 640px;
  border-radius: calc(var(--radius) - 8px);
  background: #fff;
}

@media (max-width: 900px) {
  .social-grid,
  .about-grid,
  .issues-grid,
  .quick-points-grid,
  .endorsement-grid,
  .events-grid,
  .volunteer-grid,
  .donate-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-card iframe {
    min-height: 560px;
  }
}

.about-intro-copy {
  color: #e5edf9;
}
