/* ── Brand tokens ── */
:root {
  --olive:       #45503b;
  --tan:         #aa9366;
  --yellow:      #ffe81f;
  --mint:        #99ddc8;
  --blue:        #4281a4;

  --olive-dark:  #333d2a;
  --blue-dark:   #316080;
  --body-bg:     #f0f0eb;
  --card-bg:     #ffffff;
  --text:        #1a202c;
  --text-muted:  #5a6a4a;

  --display: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --sans:    system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--body-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */

.site-header {
  background: var(--olive);
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.site-brand-name {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .01em;
}

.site-brand-sub {
  font-size: .72rem;
  color: var(--mint);
  letter-spacing: .04em;
  margin-top: .1rem;
}

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

.nav-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  padding: .35rem .7rem;
  border-radius: 5px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-link.active { color: #fff; }

.nav-link-donate {
  background: transparent;
  color: var(--mint) !important;
  font-weight: 700;
  padding: .35rem .85rem;
  border: 1.5px solid rgba(153, 221, 200, .45);
  border-radius: 5px;
}
.nav-link-donate:hover {
  background: rgba(153, 221, 200, .12);
  border-color: var(--mint);
  color: var(--mint) !important;
}

.nav-link-cta {
  background: var(--yellow);
  color: var(--olive-dark) !important;
  font-weight: 700;
  padding: .35rem .85rem;
}
.nav-link-cta:hover { background: #ffd900; color: var(--olive-dark) !important; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 420px;
  background: url('grafiti_small.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(51, 61, 42, 0.88) 0%,
    rgba(69, 80, 59, 0.70) 45%,
    rgba(17, 17, 17, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp .55s ease forwards .1s;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp .55s ease forwards .25s;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .80);
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp .55s ease forwards .4s;
}

.btn-hero-donate {
  background: var(--mint);
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn-hero-donate:hover { background: #7fcfb8; transform: translateY(-2px); }

.btn-hero-primary {
  background: var(--yellow);
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn-hero-primary:hover { background: #ffd900; transform: translateY(-2px); }

.btn-hero-ghost {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: .8rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .15s, background .15s;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HERO CTA BAR
══════════════════════════════════════ */

.hero-cta-bar {
  background: var(--olive);
  border-top: 3px solid var(--yellow);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-cta-text {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.hero-cta-text a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
}
.hero-cta-text a:hover { text-decoration: underline; }

.hero-cta-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 600px) {
  .hero-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }
}

/* ══════════════════════════════════════
   IMPACT STRIP
══════════════════════════════════════ */

.impact-strip {
  background: var(--olive-dark);
  border-bottom: 3px solid rgba(153, 221, 200, .2);
}

.impact-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-stat {
  flex: 1;
  text-align: center;
  padding: .5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.impact-number {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -.02em;
}

.impact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mint);
}

.impact-divider {
  width: 1px;
  height: 52px;
  background: rgba(153, 221, 200, .22);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MISSION SECTION
══════════════════════════════════════ */

.mission-section {
  flex: 1;
  background-color: var(--body-bg);
  background-image:
    linear-gradient(rgba(69, 80, 59, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 80, 59, .035) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 5rem 1.5rem;
}

.mission-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.mission-heading {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  color: var(--olive-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 1.1rem;
}

.mission-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.mission-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3d4a35;
  margin-bottom: 2.5rem;
}

/* Support intro (Questions & Info Sessions page) */
.support-section {
  background-color: var(--body-bg);
  background-image:
    linear-gradient(rgba(69, 80, 59, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 80, 59, .035) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 4.5rem 1.5rem 3.5rem;
}

.support-inner {
  max-width: 760px;
  margin: 0 auto;
}

.support-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #3d4a35;
  margin-bottom: 2rem;
  max-width: 58ch;
}

.support-points {
  display: grid;
  gap: 1.25rem;
}

.support-point {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3d4a35;
  background: #fff;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 1.1rem 1.35rem;
  box-shadow: 0 1px 3px rgba(69, 80, 59, .08);
}

.support-point strong { color: var(--olive-dark); }
.support-point a { color: var(--blue); }

.mission-badge {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  background: var(--olive);
  border-radius: 8px;
  padding: .65rem 1.1rem;
  border-left: 4px solid var(--yellow);
}

.badge-year {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mint);
}

.badge-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.badge-tag {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */

.card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow:
    0 12px 48px rgba(51, 61, 42, .13),
    0 2px 8px rgba(0,0,0,.05);
  width: 100%;
  overflow: hidden;
}

.card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--tan) 50%, var(--mint) 100%);
}

.card-body {
  padding: 2.25rem 2rem;
  text-align: center;
}

.card-title {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--olive);
  margin-bottom: .45rem;
  line-height: 1.2;
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

label {
  display: block;
  text-align: left;
  font-size: .875rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: .4rem;
}

.input-row {
  display: flex;
  gap: .5rem;
}

input[type="email"] {
  flex: 1;
  padding: .65rem .85rem;
  border: 1.5px solid #cbd5e0;
  border-radius: 6px;
  font-size: .975rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(66, 129, 164, .12);
}

button {
  padding: .65rem 1.25rem;
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: .975rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
button:hover { background: var(--olive-dark); }

.apply-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecdf;
}
.apply-cta p {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.btn-apply {
  display: inline-block;
  background: var(--yellow);
  color: var(--olive-dark);
  font-weight: 700;
  font-size: .95rem;
  padding: .7rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn-apply:hover { background: #ffd900; transform: translateY(-2px); }

.message {
  margin-top: .75rem;
  font-size: .9rem;
  min-height: 1.25rem;
  text-align: left;
}
.message.success { color: #276749; }
.message.error   { color: #c53030; }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */

.faq-section {
  background: var(--olive-dark);
  padding: 4.5rem 1.5rem;
  border-top: 3px solid var(--yellow);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-heading {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.faq-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(153, 221, 200, .18);
}

.faq-item:first-child {
  border-top: 1px solid rgba(153, 221, 200, .18);
}

.faq-q {
  width: 100%;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  border: none;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 3rem 1.25rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .15s;
  position: relative;
}

.faq-q:hover { color: var(--mint); }

.faq-q[aria-expanded="true"] {
  color: var(--yellow);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  opacity: .7;
  transition: transform .25s ease, opacity .15s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 8px; height: 2px; }
.faq-icon::after  { width: 2px; height: 8px; transition: transform .25s ease; }

.faq-q[aria-expanded="true"] .faq-icon { opacity: 1; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  padding: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, .75);
  font-size: .975rem;
  line-height: 1.8;
}

.faq-a p + p  { margin-top: .85rem; }
.faq-a p + address { margin-top: .85rem; }

.faq-a address {
  font-style: normal;
  background: rgba(255, 255, 255, .06);
  border-left: 3px solid var(--tan);
  border-radius: 0 6px 6px 0;
  padding: .85rem 1.1rem;
  margin: .85rem 0;
  line-height: 1.9;
  color: rgba(255, 255, 255, .7);
  font-size: .925rem;
}

.faq-a a { color: var(--mint); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .faq-section { padding: 3rem 1.25rem; }
  .faq-q { font-size: .975rem; padding-right: 2.5rem; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

.site-footer {
  background: var(--olive-dark);
  border-top: 3px solid var(--yellow);
  padding: 2.25rem 1.5rem;
}

.site-footer-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.footer-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: .78rem;
  color: var(--mint);
  letter-spacing: .03em;
  font-style: italic;
}

.footer-contact {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-contact a { color: var(--tan); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

html { overflow-x: hidden; }

@media (max-width: 720px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .mission-section { padding: 3.5rem 1.25rem; }

  .impact-strip-inner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .impact-divider {
    width: 40px;
    height: 1px;
  }

  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

/* hero CTA bar: stack and center buttons at 600px */
@media (max-width: 600px) {
  .hero-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-donate,
  .btn-hero-primary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Nav: hide "Home" text link (logo already links home), keep Donate + Apply */
  .site-brand-sub { display: none; }
  .site-nav .nav-link:first-child { display: none; }

  /* Nav buttons: tighten so two fit alongside brand */
  .nav-link-donate {
    font-size: .78rem;
    padding: .3rem .6rem;
  }

  .hero { min-height: 360px; }
  .hero-content { padding: 3rem 1.25rem; }

  /* Email signup: stack input and button vertically */
  .input-row {
    flex-direction: column;
  }

  .input-row input[type="email"],
  .input-row button {
    width: 100%;
  }

  /* Card: tighten padding on small screens */
  .card-body {
    padding: 1.5rem 1.25rem;
  }
}
