@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Inter:wght@400&display=swap');

/* =============================================
   WARFIGHTER FOUNDATION — styles.css
   ============================================= */

/* Custom Properties */
:root {
  --near-black:  #161412;
  --deep-red:    #8B1A1A;
  --action-red:  #C0392B;
  --off-white:   #F0EDE8;
  --mid-gray:    #B8B4AF;
  --charcoal:    #222220;
  --font-heading: 'Oswald', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h:        76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--near-black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--off-white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { line-height: 1.7; }

/* =============================================
   UTILITIES
   ============================================= */
.container       { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm   { max-width: 800px;  margin: 0 auto; padding: 0 1.5rem; }
.container--xs   { max-width: 700px;  margin: 0 auto; padding: 0 1.5rem; }
.text-center     { text-align: center; }

.overline {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action-red);
  display: block;
  margin-bottom: 0.75rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--red {
  background: var(--deep-red);
  color: var(--off-white);
  border-color: var(--deep-red);
}
.btn--red:hover {
  background: var(--action-red);
  border-color: var(--action-red);
}
.btn--outline-white {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}
.btn--outline-white:hover {
  background: var(--off-white);
  color: var(--near-black);
}
.btn--white {
  background: var(--off-white);
  color: var(--near-black);
  border-color: var(--off-white);
}
.btn--white:hover {
  background: #dedad4;
}
.btn--lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--near-black);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.65);
}
.nav__inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 62px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--action-red);
  transition: width 0.22s;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}
/* Donate CTA in nav */
.nav__donate {
  background: var(--deep-red);
  color: var(--off-white) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav__donate::after { display: none !important; }
.nav__donate:hover { background: var(--action-red) !important; }

/* Hamburger button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin: -6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--near-black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  padding: var(--nav-h) 2rem 2rem;
}
.nav__overlay.is-open {
  display: flex;
}
.nav__overlay a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s;
}
.nav__overlay a:hover {
  color: var(--action-red);
}

/* =============================================
   HERO — full viewport (home)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 18vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 8%;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,20,18,0.82) 0%, rgba(22,20,18,0.35) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.hero__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--action-red);
  display: block;
  margin: 1.5rem 0 1.5rem;
}
.hero__h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2.25rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE HERO — 60vh / 50vh variants
   ============================================= */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
}
.page-hero--60 { min-height: 60vh; }
.page-hero--50 { min-height: 50vh; }
.page-hero--dark  { background: var(--near-black); }
.page-hero--red   { background: var(--deep-red); }

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,20,18,0.65);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 720px;
}
.page-hero__content h1 {
  margin-bottom: 0.75rem;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(240,237,232,0.8);
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* =============================================
   SECTIONS
   ============================================= */
.section        { padding: 5rem 0; }
.section--sm    { padding: 3.5rem 0; }
.section--charcoal   { background: var(--charcoal); }
.section--near-black { background: var(--near-black); }
.section--red        { background: var(--deep-red); }

.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { margin-bottom: 0.75rem; }
.section__header p { color: var(--mid-gray); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* =============================================
   THREE-COLUMN GRID
   ============================================= */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.three-col__item { text-align: center; }
.three-col__icon {
  font-size: 2.2rem;
  display: block;
  margin: 0 auto 1rem;
  color: var(--action-red);
}
.three-col__icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--action-red);
}
.three-col__headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.three-col__body {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* =============================================
   SPLIT — photo + text
   ============================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split__img {
  overflow: hidden;
}
.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split__text {
  background: var(--near-black);
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
}
.split__text-inner {
  max-width: 480px;
}
.split__text h2 { margin-bottom: 1.25rem; }
.split__text p {
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.02rem;
}
.split__link {
  color: var(--action-red);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--action-red);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.split__link:hover {
  color: var(--off-white);
  border-color: var(--off-white);
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--deep-red);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p {
  color: rgba(240,237,232,0.82);
  max-width: 580px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  background: var(--charcoal);
  padding: 4rem 0;
  text-align: center;
}
.newsletter h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.newsletter__sub {
  color: var(--mid-gray);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: rgba(240,237,232,0.07);
  border: 1px solid rgba(240,237,232,0.2);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: var(--mid-gray); }
.newsletter__input:focus { border-color: var(--action-red); }
.newsletter__success {
  color: var(--off-white);
  font-size: 0.95rem;
  padding: 0.75rem 0;
}

/* =============================================
   PULL QUOTE
   ============================================= */
.pull-quote {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
}
.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--off-white);
  max-width: 680px;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}
.pull-quote__text::before { content: '\201C'; }
.pull-quote__text::after  { content: '\201D'; }
.pull-quote__attr {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* =============================================
   MISSION STEPS
   ============================================= */
.step {
  padding: 4rem 0;
}
.steps .step:first-child { padding-top: 1.75rem; }
.step--charcoal   { background: var(--charcoal); }
.step--near-black { background: var(--near-black); }

.step__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: start;
}
.step__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--deep-red);
  line-height: 1;
}
.step__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--off-white);
}
.step__body {
  color: var(--mid-gray);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* =============================================
   EMBED PLACEHOLDER
   ============================================= */
.embed-placeholder {
  border: 2px dashed rgba(240,237,232,0.18);
  border-radius: 3px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.88rem;
  font-style: italic;
  margin: 2rem 0;
}

/* =============================================
   DONATE PAGE
   ============================================= */
.donate-block {
  background: var(--near-black);
  padding: 5rem 0;
}
.donate-block__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.donate-block h2 { margin-bottom: 1rem; }
.donate-block__lead {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.donate-block__legal {
  color: var(--mid-gray);
  font-size: 0.76rem;
  line-height: 1.65;
  margin-top: 2rem;
}

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-intro {
  background: var(--near-black);
  padding: 4.5rem 0;
  text-align: center;
}
.shop-intro p {
  color: var(--mid-gray);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.shop-strip {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.shop-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--near-black);
  padding: 5rem 0;
}
.contact-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-form-wrap h2 {
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(240,237,232,0.05);
  border: 1px solid rgba(240,237,232,0.15);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--action-red);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-gray);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-address {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(240,237,232,0.08);
}
.contact-address__label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.6rem;
}
.contact-address p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.9;
}
.contact-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--mid-gray);
  transition: color 0.2s;
}
.contact-ig:hover { color: var(--off-white); }

/* =============================================
   ABOUT — PROSE
   ============================================= */
.prose {
  background: var(--near-black);
  padding: 5rem 0 2rem;
}
.prose__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.prose h2 { margin-bottom: 1.5rem; }
.prose p {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Nonprofit notice */
.nonprofit-notice {
  background: var(--near-black);
  padding: 1.5rem 0 3rem;
  text-align: center;
}
.nonprofit-notice p {
  font-size: 0.8rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Impact placeholder */
.impact-placeholder {
  background: var(--near-black);
  padding: 5rem 0;
  text-align: center;
}
.impact-placeholder__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.impact-placeholder h2 { margin-bottom: 1.25rem; }
.impact-placeholder p {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Future programs */
.future-programs {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
}
.future-programs__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.future-programs h2 { margin-bottom: 1rem; }
.future-programs p {
  color: var(--mid-gray);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.future-programs__note {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--near-black);
  border-top: 1px solid rgba(240,237,232,0.07);
  padding: 3.5rem 0 1.5rem;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer__logo img {
  height: 64px;
  width: auto;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.75rem;
}
.footer__nav a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid-gray);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--off-white); }
.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__nonprofit {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer__socials a {
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer__socials a:hover { color: var(--off-white); }
.footer__bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(240,237,232,0.07);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.76rem;
  color: var(--mid-gray);
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
/* =============================================
   TIMELINE
   ============================================= */
.timeline-section {
  background: var(--charcoal);
  padding: 2rem 0 5rem;
}
.timeline-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.timeline-section__header h2 { margin-bottom: 0; }
.timeline {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.timeline__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0 1.25rem;
  padding-bottom: 2.75rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--deep-red);
  flex-shrink: 0;
}
.timeline__line {
  width: 2px;
  flex: 1;
  background: var(--deep-red);
  margin-top: 6px;
  opacity: 0.5;
}
.timeline__item:last-child .timeline__line { display: none; }
.timeline__date {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--action-red);
  display: block;
  margin-bottom: 0.3rem;
}
.timeline__location {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.3rem;
}
.timeline__desc {
  color: var(--mid-gray);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   DEPLOYMENT UPDATES GRID
   ============================================= */
.deployment-updates {
  background: var(--charcoal);
  padding: 4.5rem 0;
}
.deployment-updates__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.deployment-updates h3 {
  margin-bottom: 0.75rem;
}
.deployment-updates > .deployment-updates__inner > p {
  color: var(--mid-gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.deployment-card {
  background: var(--near-black);
  border: 1px dashed rgba(240,237,232,0.16);
  border-radius: 3px;
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.85rem;
  font-style: italic;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   DONATE SUBSECTIONS
   ============================================= */
.donate-subsection {
  margin: 2.25rem 0;
  text-align: left;
  border-top: 1px solid rgba(240,237,232,0.08);
  padding-top: 2rem;
}
.donate-subsection h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--off-white);
}
.donate-subsection p {
  color: var(--mid-gray);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero {
    padding-bottom: 6vh;
    min-height: 100vh;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  /* Three col */
  .three-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Split */
  .split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .split__img { height: 280px; }
  .split__text { padding: 3rem 1.5rem; }
  .split__text-inner { max-width: 100%; }

  /* Deployment grid */
  .deployment-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step__inner {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
  }
  .step__number { font-size: 2.5rem; }

  /* Newsletter */
  .newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Page hero */
  .page-hero--60 { min-height: 52vh; }
  .page-hero--50 { min-height: 44vh; }
}
