:root {
  --red: #e02020;
  --red-dark: #b8141a;
  --blue: #204080;
  --blue-dark: #102650;
  --ink: #121826;
  --muted: #596273;
  --line: #d9deea;
  --paper: #ffffff;
  --soft: #f4f6fb;
  --gold: #c99a2e;
  --shadow: 0 18px 45px rgba(16, 38, 80, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--blue-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.55rem 0.75rem;
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--red);
}

.nav-links .nav-donate {
  padding: 0.62rem 0.95rem;
  border: 2px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  line-height: 1;
}

.nav-links .nav-donate:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  background: var(--blue-dark);
}

.hero-image {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 38, 80, 0) 55%, var(--blue-dark) 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}

.hero-content {
  align-self: center;
  padding: clamp(2.5rem, 6vw, 6rem);
  color: #fff;
}

.kicker,
.section-label {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker,
.page-hero .kicker {
  color: #ffd166;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 0.35rem;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.4rem;
  line-height: 1.15;
}

.slogan {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 800;
}

.intro {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(224, 32, 32, 0.24);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.statement-section,
.priorities-section,
.download-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.statement-section {
  background: var(--soft);
}

.about-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.bio-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bio-highlights div {
  min-height: 168px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.bio-highlights span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.bio-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.statement-heading {
  display: grid;
  gap: 0.85rem;
}

.statement-photo-panel {
  width: min(100%, 360px);
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.statement-headshot {
  width: 100%;
  aspect-ratio: 4 / 4.05;
  object-fit: cover;
  object-position: center 15%;
}

.statement-photo-caption {
  padding: 1rem;
  background: var(--red);
  color: #fff;
}

.statement-photo-caption p {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.statement-photo-caption h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
}

blockquote {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 6px solid var(--red);
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.22;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.priority,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(16, 38, 80, 0.08);
}

.priority {
  padding: 1.5rem;
}

.priority span {
  display: inline-block;
  margin-bottom: 1.75rem;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 900;
}

.priority p {
  color: var(--muted);
}

.media-preview {
  padding: 3rem 0;
  background: var(--blue-dark);
  color: #fff;
}

.media-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.media-band h2 {
  color: #fff;
}

.media-band p:not(.section-label) {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(110deg, rgba(16, 38, 80, 0.9), rgba(32, 64, 128, 0.7)), url("assets/media/idris-headshot-display.jpg") center 24% / cover;
  color: #fff;
}

.page-hero h1 {
  max-width: 10ch;
}

.page-hero p:not(.kicker) {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.policy-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #fff;
}

.policy-content {
  max-width: 820px;
}

.policy-content > p:first-child {
  color: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.policy-content h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-content p {
  color: var(--muted);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.sms-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.sms-form label {
  color: var(--blue-dark);
  font-weight: 800;
}

.sms-form input[type="text"],
.sms-form input[type="email"],
.sms-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.sms-form input:focus {
  outline: 3px solid rgba(32, 64, 128, 0.22);
  border-color: var(--blue);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin: 0.8rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.checkbox-row span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.checkbox-row a,
.policy-content a {
  color: var(--blue);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.compliance-note {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
  border-radius: 8px;
  background: var(--soft);
}

.compliance-note h2 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.compliance-note p {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.download-card {
  overflow: hidden;
}

.download-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.download-card:first-child img {
  object-position: center 22%;
}

.download-card img.transparent-preview {
  background: var(--soft);
  object-fit: contain;
  object-position: center bottom;
  padding: 1rem 1rem 0;
}

.download-card-wide {
  grid-column: 1 / -1;
}

.download-copy {
  padding: 1.4rem;
}

.download-copy p:not(.section-label) {
  color: var(--muted);
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

.disclaimer {
  margin-top: 0.25rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-inner a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 168px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 44vh;
  }

  .hero-image::after {
    background: linear-gradient(180deg, rgba(16, 38, 80, 0) 45%, var(--blue-dark) 100%);
  }

  .hero-content {
    padding: 2.2rem 1rem 3rem;
  }

  .split,
  .priority-grid,
  .download-grid,
  .about-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .media-band,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .bio-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 3.25rem;
  }

  .actions,
  .actions .button,
  .media-band .button,
  .download-copy .button {
    width: 100%;
  }
}
