:root {
  --ink: #12343b;
  --charcoal: #172427;
  --teal: #0f5d64;
  --forest: #24483d;
  --rust: #b85f34;
  --gold: #e4aa24;
  --paper: #fbfbf7;
  --soft: #f1f4ef;
  --white: #ffffff;
  --muted: #5e6762;
  --line: rgba(18, 52, 59, 0.16);
  --shadow: 0 20px 48px rgba(18, 36, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background: var(--paper);
}

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 247, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(18, 36, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 64px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(18, 36, 39, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.8rem, 6.6vw, 6.5rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-text,
.values-copy p,
.cta-card > p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
}

.button.ghost {
  background: var(--white);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), var(--charcoal));
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--rust), var(--teal));
}

.hero-logo-wrap {
  display: grid;
  width: min(300px, 100%);
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: breathe 4.5s ease-in-out infinite;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
}

.card-kicker {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 430px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.hero-card li {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: var(--forest);
}

.intro-strip p {
  padding: clamp(1.25rem, 3vw, 2rem);
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 900;
  text-align: center;
}

.intro-strip p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.split-section,
.values-section,
.cta-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-heading {
  max-width: 760px;
}

.centered {
  margin: 0 auto 2.75rem;
  text-align: center;
}

.support-grid,
.program-grid {
  display: grid;
  gap: 1rem;
}

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

.support-card,
.program-card,
.cta-card,
.values-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 36, 39, 0.08);
}

.support-card {
  min-height: 300px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.support-card p,
.program-card p,
.values-list span,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
}

.icon-badge {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 2.4rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--rust);
  font-weight: 900;
}

.program-band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  color: var(--white);
  background: var(--charcoal);
}

.program-band .eyebrow {
  color: var(--gold);
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  min-height: 260px;
  padding: 1.25rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.program-card p {
  color: rgba(255, 255, 255, 0.76);
}

.values-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.values-list {
  display: grid;
  overflow: hidden;
  padding: 0;
}

.values-list div {
  padding: 1.25rem;
  background: var(--white);
}

.values-list div + div {
  border-top: 1px solid var(--line);
}

.values-list strong,
.values-list span {
  display: block;
}

.values-list strong {
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
}

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

.cta-card {
  padding: clamp(1.35rem, 4vw, 2.75rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .values-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-card {
    min-height: auto;
  }

  .support-grid,
  .program-grid,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .program-card,
  .support-card {
    min-height: auto;
  }

}
