/* ============================================================
   CUT WITH PURPOSE — style.css
   Palette: green-dark, green-mid, yellow, cream, white, charcoal
   ============================================================ */

:root {
  --green-dark:  #2D6A4F;
  --green-mid:   #52B788;
  --green-light: #95D5B2;
  --yellow:      #F9C74F;
  --yellow-dark: #E8A800;
  --cream:       #FEFAE0;
  --white:       #FFFFFF;
  --charcoal:    #1B1B1E;
  --text-muted:  #555;
  --border:      #e0e0d0;
  --shadow:      0 2px 16px rgba(0,0,0,.08);
  --radius:      12px;
  --radius-sm:   8px;
  --font:        'Nunito', sans-serif;
  --max-width:   1140px;
  --nav-height:  68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Container ---- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ---- Text utility ---- */
.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45,106,79,.3);
}
.btn--primary:hover { background: #235a40; box-shadow: 0 6px 18px rgba(45,106,79,.4); }

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn--outline:hover { background: var(--green-dark); color: var(--white); }

.btn--yellow {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(249,199,79,.4);
}
.btn--yellow:hover { background: var(--yellow-dark); box-shadow: 0 6px 18px rgba(249,199,79,.5); }

.btn--nav {
  background: var(--yellow);
  color: var(--charcoal);
  padding: .5rem 1.2rem;
  font-size: .9rem;
}
.btn--nav:hover { background: var(--yellow-dark); transform: none; }

.btn--sm { padding: .55rem 1.2rem; font-size: .88rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.3px;
}
.nav__logo-inner { display: flex; align-items: center; gap: .55rem; }
.nav__motto {
  font-size: .6rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  font-style: italic;
  padding-left: 2px;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: .4rem .7rem;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.nav__links li:last-child a { /* Book Now btn style overrides above */ }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--green-dark);
  padding: 6rem 0 3rem;
  overflow: hidden;
}

/* Animated photo background */
.hero__bg {
  position: absolute;
  inset: -8%;
  background: url('../image/lawn_sign_right.png') 0% 35% / cover no-repeat;
  transform-origin: center center;
  animation: hero-zoom 14s linear infinite alternate;
  z-index: 0;
}

@keyframes hero-zoom {
  from { transform: scale(0.92); }
  to   { transform: scale(1.12); }
}

/* Dark green overlay — keeps text readable over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 38, 28, 0.72) 0%,
    rgba(27, 46, 36, 0.58) 50%,
    rgba(27, 46, 36, 0.68) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  max-width: var(--max-width);
  margin-inline: auto;
}
.hero__text { text-align: left; }
.hero__art  { display: none; }
.hero__eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .75rem;
}
.hero__heading {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-inline: auto;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 0 2rem;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art-svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,.18));
}
.hero__ctas .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.hero__ctas .btn--outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.hero__counter {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.campaign-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.counter-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: .5rem 1rem;
}
.counter-stat__num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.counter-stat__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}
.counter-stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .counter-stat__divider { display: none; }
  .counter-stat { flex-basis: 100%; border-top: 1px solid rgba(255,255,255,.12); }
  .counter-stat:first-child { border-top: none; }
}

.hero__wave {
  margin-top: 3rem;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: 5rem 0; }
.section--green { background: var(--green-dark); color: var(--white); }
.section--green .section__label { color: var(--green-light); }
.section--green .section__title { color: var(--white); }
.section--green .section__intro { color: rgba(255,255,255,.8); }
.section--cream { background: var(--cream); }

.section__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .5rem;
}
.section__title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .section__intro {
    max-width: 100%;
  }
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.highlight-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.highlight-card p { font-size: .95rem; color: var(--text-muted); }

/* ============================================================
   OUR STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.story-subheading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.story-main p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.story-main strong { color: var(--white); }
.story-inline-link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.story-inline-link:hover { color: #fff; }
.story-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}
.story-links .btn--outline-white {
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  border-radius: var(--radius);
  padding: .7rem 1.5rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.story-links .btn--outline-white:hover { background: rgba(255,255,255,.15); }

.story-milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  margin: 1.5rem 0 1rem;
}
.story-milestone__badge {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  white-space: nowrap;
}
.story-milestone__label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

.story-quote {
  border-left: 3px solid var(--yellow);
  padding-left: 1.2rem;
  font-size: .95rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 1.5rem 0;
}
.story-quote cite {
  display: block;
  margin-top: .6rem;
  font-style: normal;
  font-weight: 700;
  color: var(--green-light);
  font-size: .88rem;
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0,0,0,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.carousel__track-wrap {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
}
.carousel__track {
  display: flex;
  width: 300%; /* 3 slides */
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel__slide {
  width: calc(100% / 3); /* 1 slide = 1/3 of track = full wrap width */
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.carousel__caption {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  padding: .55rem .75rem .4rem;
  margin: 0;
  background: rgba(0,0,0,.25);
}
.carousel__btn {
  position: absolute;
  top: calc(140px - 22px);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.carousel__btn:hover { background: rgba(0,0,0,.7); }
.carousel__btn--prev { left: .6rem; }
.carousel__btn--next { right: .6rem; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  padding: .55rem 0 .7rem;
  background: rgba(0,0,0,.2);
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.carousel__dot--active {
  background: var(--yellow);
  transform: scale(1.3);
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 800; color: var(--green-dark); margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--text-muted); }
.step__arrow {
  font-size: 1.8rem;
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   WHERE YOUR MONEY GOES — GIVE SCENARIOS
   ============================================================ */
.give-recipients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.give-recipient {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.give-recipient__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.give-recipient--student .give-recipient__dot { background: var(--green-dark); }
.give-recipient--ops     .give-recipient__dot { background: var(--green-mid); }
.give-recipient--rdla    .give-recipient__dot { background: var(--yellow); }
.give-recipient--rgh     .give-recipient__dot { background: var(--yellow-dark); }
.give-recipient strong { display: block; font-size: .88rem; font-weight: 800; color: var(--charcoal); margin-bottom: .15rem; }
.give-recipient span { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

.scenarios-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: .35rem;
}
.scenarios-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---- Scenarios 3-up carousel ---- */
.sc-carousel {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 0 2.75rem;
}
.sc-wrap {
  overflow: hidden;
  width: 100%;
  /* Give room for the active card's raised shadow */
  padding: .5rem 0 .75rem;
}
.sc-track {
  display: flex;
  align-items: center;
  /* width & slide widths set by JS based on total clone count */
}
.sc-slide {
  flex-shrink: 0;
  padding: 0 .5rem;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
  transform: scale(0.85);
  opacity: 0.6;
  pointer-events: none;
}
.sc-slide.is-prev,
.sc-slide.is-next {
  transform: scale(0.88);
  opacity: 0.8;
  pointer-events: auto;
}
.sc-slide.is-active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
.sc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 2;
}
.sc-btn:hover { background: var(--green-light); color: var(--white); }
.sc-btn--prev { left: 0; }
.sc-btn--next { right: 0; }
.sc-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 0 0;
}
.sc-dots .carousel__dot { background: var(--border); }
.sc-dots .carousel__dot--active { background: var(--green-mid); transform: scale(1.3); }

.scenario-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.scenario-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.scenario-card--highlight {
  border-color: var(--green-mid);
  box-shadow: 0 4px 22px rgba(82,183,136,.18);
}

.scenario-header {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.scenario-avatar {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.scenario-persona {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: .2rem;
  line-height: 1.4;
}
.scenario-type {
  font-size: .95rem;
  font-weight: 800;
  color: var(--green-dark);
}

.scenario-quote {
  font-size: .88rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--green-light);
  padding-left: .85rem;
  line-height: 1.65;
  margin: 0;
}

.scenario-chart-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.scenario-pie {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(
    var(--green-dark)  0%                                              calc(var(--pct-s, 0) * 1%),
    var(--green-mid)   calc(var(--pct-s, 0) * 1%)                     calc((var(--pct-s, 0) + var(--pct-c, 0)) * 1%),
    var(--yellow)      calc((var(--pct-s, 0) + var(--pct-c, 0)) * 1%) calc((var(--pct-s, 0) + var(--pct-c, 0) + var(--pct-r, 0)) * 1%),
    var(--yellow-dark) calc((var(--pct-s, 0) + var(--pct-c, 0) + var(--pct-r, 0)) * 1%) 100%
  );
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.scenario-chart-legend {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.scl-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.scl-item.scl-zero { opacity: .3; }
.scl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.scl-student .scl-dot { background: var(--green-dark); }
.scl-ops     .scl-dot { background: var(--green-mid); }
.scl-rdla    .scl-dot { background: var(--yellow); }
.scl-rgh     .scl-dot { background: var(--yellow-dark); }

.give-note {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(82,183,136,.08);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.give-note strong { color: var(--charcoal); }
.give-note__icon { font-size: 1.05rem; flex-shrink: 0; color: var(--green-mid); margin-top: .1rem; }

/* ============================================================
   IMPACT TRACKER
   ============================================================ */
.impact-tracker { max-width: 680px; margin-inline: auto; }
.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.impact-stat {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow);
}
.impact-stat--total { grid-column: span 1; border-color: var(--green-mid); }
.impact-stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: .4rem;
}
.impact-stat__label { font-size: .8rem; font-weight: 700; color: var(--text-muted); }

.progress-wrap { margin-bottom: 1.5rem; }
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.progress-bar-outer {
  height: 18px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar-inner {
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
  border-radius: 50px;
  transition: width .6s ease;
}
.progress-note { font-size: .88rem; color: var(--text-muted); margin-top: .5rem; }

.previous-milestone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.milestone-pill {
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 700;
  font-size: .88rem;
  padding: .4rem 1rem;
  border-radius: 50px;
}
.previous-milestone a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: underline;
}
.section--green .previous-milestone a {
  color: var(--white);
}

/* ============================================================
   BOOK SECTION
   ============================================================ */
#book {
  position: relative;
  background-image: url('../image/bookamow.webp');
  background-size: cover;
  background-position: center;
}
#book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 38, 28, 0.72);
  z-index: 0;
}
#book .container {
  position: relative;
  z-index: 1;
}
.book-price {
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  margin: 1rem 0 .5rem;
  line-height: 1;
}
.book-note {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
}
.book-extra {
  margin-top: 1.2rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.book-extra a { color: var(--yellow); font-weight: 700; }

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involve-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.involve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
}
.involve-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.involve-card__img {
  position: relative;
  width: calc(100% + 3rem);
  margin: -2rem -1.5rem 0;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
}
.involve-card__icon {
  position: absolute;
  top: .75rem;
  left: .75rem;
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.involve-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--green-dark); }
.involve-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: .25rem; }

/* Expandable details inside involve cards */
.involve-details {
  width: 100%;
  text-align: left;
}
.involve-details summary {
  font-size: .85rem;
  font-weight: 700;
  color: var(--green-mid);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem 0;
  transition: color .15s;
  user-select: none;
}
.involve-details summary::-webkit-details-marker { display: none; }
.involve-details summary:hover { color: var(--green-dark); }
.involve-details[open] summary { color: var(--green-dark); }
.involve-detail-list {
  list-style: none;
  padding: .75rem 0 .25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border-top: 1px solid var(--border);
  margin-top: .4rem;
}
.involve-detail-list li {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.involve-detail-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: .8rem;
  top: .06rem;
}
.involve-detail-list strong { color: var(--charcoal); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 960px;
  margin-inline: auto;
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 640px) {
  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    align-items: start;
  }
  /* Each column's last item needs a bottom border */
  .faq-item:last-child,
  .faq-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--border); }
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: .75rem 2rem .75rem 0;
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  position: relative;
  line-height: 1.4;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color .15s;
}
.faq-q:hover { color: var(--green-dark); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green-mid);
  transition: transform .25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] { color: var(--green-dark); }
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-a.open { max-height: 400px; padding-bottom: 1rem; }
.faq-a p, .faq-a ul { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.faq-a ul { padding-left: 1.4rem; list-style: disc; margin-top: .4rem; }
.faq-a ul li { margin-bottom: .2rem; }
.faq-a a { color: var(--green-dark); font-weight: 700; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-email {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
  margin: .5rem 0 2rem;
  transition: color .15s;
}
.contact-email:hover { color: var(--green-mid); }
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 700;
  transition: color .15s, transform .15s;
}
.social-link:hover { color: var(--green-dark); transform: translateY(-3px); }
.social-link svg { width: 40px; height: 40px; color: var(--green-dark); }
.social-link--placeholder { opacity: .5; cursor: default; }
.social-link--placeholder:hover { transform: none; color: var(--charcoal); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.footer__logo {
  display: block;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer__brand p { font-size: .9rem; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: flex-start;
}
.footer__links a {
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
}
.footer__version {
  font-size: .68rem;
  color: rgba(255,255,255,.22);
  margin-left: .4rem;
}

/* ============================================================
   HERO ILLUSTRATION ANIMATIONS
   ============================================================ */

/* Sun glow breathes */
.anim-sun-glow {
  animation: sunPulse 5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes sunPulse {
  0%, 100% { opacity: 0.10; transform: scale(1); }
  50%       { opacity: 0.22; transform: scale(1.06); }
}

/* Clouds drift in opposite directions */
.anim-cloud-1 { animation: cloudRight 14s ease-in-out infinite; }
.anim-cloud-2 { animation: cloudLeft  18s ease-in-out infinite 4s; }
@keyframes cloudRight {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(12px); }
}
@keyframes cloudLeft {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-10px); }
}

/* Tree sways gently from its base */
.anim-tree {
  animation: treeSway 7s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: bottom center;
}
@keyframes treeSway {
  0%, 100% { transform: rotate(0deg); }
  30%       { transform: rotate(1.6deg); }
  70%       { transform: rotate(-1.4deg); }
}

/* Grass blades shift with the breeze */
.anim-grass {
  animation: grassBreeze 5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: bottom center;
}
@keyframes grassBreeze {
  0%, 100% { transform: skewX(0deg); }
  40%       { transform: skewX(2deg); }
  75%       { transform: skewX(-1.5deg); }
}

/* Lawn mower bobs up and down */
.anim-mower {
  animation: floatBob 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Heart badge floats — phase A */
.anim-float-a {
  animation: floatBob 4.2s ease-in-out infinite 0.6s;
  transform-box: fill-box;
  transform-origin: center;
}

/* Leaf badge floats — phase B (longer period, later start) */
.anim-float-b {
  animation: floatBob 5.5s ease-in-out infinite 2s;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* Sparkles twinkle at two different rates */
.anim-sparkle-a { animation: twinkle 2.8s ease-in-out infinite; }
.anim-sparkle-b { animation: twinkle 3.6s ease-in-out infinite 1.3s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.4); }
}

/* Honour prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-sun-glow, .anim-cloud-1, .anim-cloud-2,
  .anim-tree, .anim-grass, .anim-mower,
  .anim-float-a, .anim-float-b,
  .anim-sparkle-a, .anim-sparkle-b {
    animation: none;
  }
}

/* ============================================================
   RESPONSIVE — mobile first breakpoint 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .75rem 1rem; font-size: 1rem; }
  .nav__links li:last-child { margin-top: .5rem; }
  .nav__links li:last-child .btn--nav { width: 100%; text-align: center; border-radius: 8px; padding: .85rem; }

  /* Nav toggle open state */
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { padding: 3.5rem 0 1.5rem; }
  .hero__ctas { justify-content: flex-start; }

  /* Story grid */
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { display: flex; flex-direction: column; gap: 1rem; }
  .carousel__slide img { height: 220px; }

  /* Steps */
  .steps { flex-direction: column; }
  .step { max-width: 100%; }
  .step__arrow { transform: rotate(90deg); }

  /* Impact stats */
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .impact-stat--total { grid-column: 1 / -1; }

  /* Footer */
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: .25rem; }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 2rem; }
  .impact-stats { grid-template-columns: 1fr; }
  .impact-stat--total { grid-column: 1; }
  .scenario-pie { width: 88px; height: 88px; }
  .scenarios-carousel { padding: 0 2.25rem; }
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-banner {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}
.success-banner__icon { font-size: 3rem; margin-bottom: .75rem; }
.success-banner__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: .5rem;
}
.success-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
}

.alloc-section {
  background: var(--cream);
  padding: 4rem 0;
}
.alloc-wrap {
  max-width: 720px;
  margin-inline: auto;
}
.alloc-intro {
  margin-bottom: 2rem;
}
.alloc-intro h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: .4rem;
}
.alloc-intro p {
  font-size: .95rem;
  color: var(--text-muted);
}

/* Name / email fields */
.alloc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.alloc-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.alloc-field label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--charcoal);
}
.alloc-field input {
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color .2s;
}
.alloc-field input:focus {
  outline: none;
  border-color: var(--green-mid);
}

/* Picker card */
.alloc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.alloc-pie-wrap { flex-shrink: 0; }
.alloc-pie {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(
    var(--green-dark)  0%                                              calc(var(--pct-s,  60) * 1%),
    var(--green-mid)   calc(var(--pct-s,  60) * 1%)                   calc((var(--pct-s, 60) + var(--pct-c, 10)) * 1%),
    var(--yellow)      calc((var(--pct-s, 60) + var(--pct-c, 10)) * 1%) calc((var(--pct-s, 60) + var(--pct-c, 10) + var(--pct-r, 0)) * 1%),
    var(--yellow-dark) calc((var(--pct-s, 60) + var(--pct-c, 10) + var(--pct-r, 0)) * 1%) 100%
  );
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.alloc-rows { flex: 1; display: flex; flex-direction: column; gap: .85rem; }
.alloc-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.alloc-row__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.alloc-row__dot--student  { background: var(--green-dark); }
.alloc-row__dot--campaign { background: var(--green-mid); }
.alloc-row__dot--rdla     { background: var(--yellow); }
.alloc-row__dot--rgh      { background: var(--yellow-dark); }
.alloc-row__label {
  flex: 1;
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal);
}
.alloc-row__label small {
  display: block;
  font-size: .76rem;
  font-weight: 400;
  color: var(--text-muted);
}
.alloc-row__controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.alloc-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
  line-height: 1;
}
.alloc-btn:hover:not(:disabled) { background: var(--green-dark); color: var(--white); }
.alloc-btn:disabled { opacity: .3; cursor: default; }
.alloc-row__value {
  min-width: 68px;
  text-align: right;
  font-size: .9rem;
  font-weight: 800;
  color: var(--charcoal);
}
.alloc-row__value span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .82rem;
  margin-left: .3rem;
}
.alloc-row--fixed .alloc-row__label { opacity: .75; }

.alloc-hint {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Submit */
.alloc-submit-wrap { text-align: center; }
#allocSubmit {
  min-width: 220px;
}
.alloc-error {
  color: #c0392b;
  font-size: .88rem;
  font-weight: 700;
  margin-top: .75rem;
  display: none;
}
.alloc-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.alloc-success__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.alloc-success__title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.alloc-success__sub { font-size: .95rem; color: var(--text-muted); }

/* Setup instructions box */
.setup-instructions {
  background: #fff8e1;
  border: 1px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: .88rem;
  line-height: 1.7;
}
.setup-instructions h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.setup-instructions ol { padding-left: 1.2rem; }
.setup-instructions li { margin-bottom: .4rem; }
.setup-instructions code {
  background: rgba(0,0,0,.07);
  padding: .1rem .35rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: .85em;
}
.setup-instructions pre {
  background: var(--charcoal);
  color: #f8f8f8;
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow-x: auto;
  font-size: .82rem;
  margin: .75rem 0;
  white-space: pre;
}

@media (max-width: 600px) {
  .alloc-fields { grid-template-columns: 1fr; }
  .alloc-card { flex-direction: column; align-items: center; }
  .alloc-pie { width: 110px; height: 110px; }
}

/* ---- Font-size dropdown (shares .nav__lang-btn / .nav__lang-menu styles) ---- */
.nav__font-item { position: relative; }

/* Options inside the font dropdown are <button> elements, not <a> */
.nav__lang-menu .nav__font-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: .5rem 1rem;
  white-space: nowrap;
  transition: background .12s;
}
.nav__lang-menu .nav__font-opt:hover { background: var(--cream); color: var(--charcoal); }
.nav__lang-menu .nav__font-opt--active { color: var(--green-dark); font-weight: 800; }
.nav__lang-menu .nav__font-opt--active::before { content: '✓\00a0'; }

@media (prefers-color-scheme: dark) {
  .nav__lang-menu .nav__font-opt { background: #1e2a23; color: #d4e8d8; }
  .nav__lang-menu .nav__font-opt:hover { background: #2a3d30; color: #fff; }
  .nav__lang-menu .nav__font-opt--active { color: var(--green-light); }
}

.nav__a11y-sep {
  font-size: .65rem;
  color: var(--border);
  user-select: none;
}

/* ---- Language dropdown ---- */
.nav__lang-item { position: relative; }
.nav__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .25rem .35rem;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav__lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav__lang-arrow {
  font-size: .55rem;
  opacity: .6;
  transition: transform .2s;
}
.nav__lang-btn[aria-expanded="true"] .nav__lang-arrow { transform: rotate(180deg); }
.nav__lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + .4rem);
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  list-style: none;
  min-width: 148px;
  z-index: 300;
  padding: .3rem 0;
}
.nav__lang-menu.open { display: block; }

/* Higher specificity than .nav__links a to override its white color */
.nav__lang-menu .nav__lang-opt {
  display: block;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s;
}
.nav__lang-menu .nav__lang-opt:hover {
  background: var(--cream);
  color: var(--charcoal);
}
.nav__lang-menu .nav__lang-opt--active {
  color: var(--green-dark);
  font-weight: 800;
}
.nav__lang-menu .nav__lang-opt--active::before { content: '✓\00a0'; }

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .nav__lang-menu {
    background: #1e2a23;
    border-color: #3a4a40;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
  }
  .nav__lang-menu .nav__lang-opt {
    color: #d4e8d8;
    background: #1e2a23;
  }
  .nav__lang-menu .nav__lang-opt:hover {
    background: #2a3d30;
    color: #fff;
  }
  .nav__lang-menu .nav__lang-opt--active { color: var(--green-light); }
}

/* ============================================================
   PRESS BAR
   ============================================================ */
.press-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}

.press-bar .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.press-bar__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: .6;
}

.press-bar__outlets {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.press-bar__item {
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  opacity: .25;
  letter-spacing: .02em;
  font-style: italic;
}

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.partner-strip {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.partner-strip__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.partner-strip__cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1.4rem;
  min-width: 220px;
}

.partner-card__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
}

.partner-card__info strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--charcoal);
}

.partner-card__info span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ============================================================
   BOOK IMAGE
   ============================================================ */
.book-img-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 680px;
  margin-inline: auto;
  border: 3px solid rgba(255,255,255,.25);
}
.book-img {
  width: 100%;
  display: block;
  max-width: none;
}

/* ============================================================
   SERVICE MAP
   ============================================================ */
.service-map {
  margin-top: 2.5rem;
  text-align: center;
}

.service-map__label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: .75rem;
  opacity: .85;
}

.service-map__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.25);
  max-width: 680px;
  margin: 0 auto;
}

.service-map__frame iframe {
  display: block;
  width: 100%;
}

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
.hero__schedule-hint {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 1rem;
  font-weight: 600;
}
.hero__schedule-hint a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}
.hero__schedule-hint a:hover { text-decoration: underline; }

.schedule-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.zone-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.zone-card__img {
  position: relative;
  width: calc(100% + 3rem);
  margin: -1.4rem -1.5rem 0;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
}
.zone-card__letter {
  position: absolute;
  top: .75rem;
  left: .75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-card__meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: .75rem; }
.zone-card__dates { font-size: .82rem; font-weight: 800; color: var(--green-dark); }
.zone-card__hoods { font-size: .85rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.btn--xs { padding: .35rem .85rem; font-size: .75rem; }

.schedule-note {
  font-size: .82rem;
  color: var(--text-muted);
  border-left: 3px solid var(--green-mid);
  padding-left: .85rem;
  margin: .5rem 0 2.5rem;
  font-style: italic;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.why-item { color: var(--white); }
.why-item__icon { font-size: 1.3rem; margin-bottom: .4rem; display: block; }
.why-item__text { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.88); line-height: 1.45; }

/* ===== WHY CUT WITH PURPOSE section ===== */
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
}
.purpose-photo {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.purpose-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.purpose-text .section__title { margin-bottom: 1.25rem; }
.purpose-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-mid);
}
.purpose-icon-pair {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--green-dark);
}
.purpose-icon-vis, .purpose-icon-hid { display: flex; align-items: center; gap: .3rem; }
.purpose-icon-arrow { color: var(--green-mid); font-size: 1rem; flex-shrink: 0; }
.purpose-motto {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  font-style: italic;
  margin-top: .5rem !important;
}
@media (max-width: 767px) {
  .purpose-grid { grid-template-columns: 1fr; }
  .nav__motto { display: none; }
}

/* Hero purpose sub-line */
.hero__sub--purpose { font-size: .92rem; color: rgba(255,255,255,.7); margin-top: .5rem; }

/* RDLA note */
.give-recipient__note {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .2rem;
  font-style: italic;
  line-height: 1.4;
}

/* Footer motto */
.footer__motto { font-size: .78rem; color: rgba(255,255,255,.4); font-style: italic; margin-top: .2rem; }

/* Community free-service waitlist form */
.community-form-wrap { max-width: 560px; }
.community-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.25rem;
  margin-bottom: .85rem;
}
.community-form__field { display: flex; flex-direction: column; gap: .3rem; }
.community-form__field--full { grid-column: 1 / -1; }
.community-form__label { font-size: .8rem; font-weight: 700; color: var(--green-dark); }
.community-form__input,
.community-form__select,
.community-form__textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.community-form__input:focus,
.community-form__select:focus,
.community-form__textarea:focus { outline: none; border-color: var(--green-mid); }
.community-form__textarea { resize: vertical; min-height: 80px; }
.community-form__footer { display: flex; flex-direction: column; gap: .6rem; margin-top: .85rem; }
.community-form__privacy { font-size: .78rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.community-form__success {
  display: none;
  padding: 2rem 1.5rem;
  background: #f0f7f2;
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius);
  text-align: center;
}
.community-form__success-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.community-form__success-title { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); margin: 0 0 .4rem; }
.community-form__success-sub { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
@media (max-width: 560px) { .community-form__grid { grid-template-columns: 1fr; } }

/* Book section — donation secondary CTA */
.book-donate-line { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: .75rem; }
.book-donate-link { color: var(--yellow); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.book-donate-link:hover { color: #fff; }
