/* ============================================
   Charity Food Ministry — Advanced Components
   Loaded after style.css
   ============================================ */

/* ---------- Scroll reveal ----------
   Gated behind html.js so content stays visible if scripts never run. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js [data-reveal].revealed { opacity: 1; transform: none; }
html.js [data-reveal-delay="1"] { transition-delay: 0.1s; }
html.js [data-reveal-delay="2"] { transition-delay: 0.2s; }
html.js [data-reveal-delay="3"] { transition-delay: 0.3s; }
html.js [data-reveal-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Marquee banner ---------- */
.marquee {
  background: var(--orange-500);
  color: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.marquee--teal { background: var(--teal-800); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.marquee__item::after {
  content: "\2726";
  font-size: 0.8em;
  opacity: 0.7;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Floating basket button ---------- */
.basket-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.25s, background 0.25s;
}
.basket-fab:hover { background: var(--teal-900); transform: scale(1.06); }
.basket-fab__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid var(--white);
}
.basket-fab__count[hidden] { display: none; }

/* ---------- Basket drawer ---------- */
.basket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 74, 80, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1300;
}
.basket-overlay.open { opacity: 1; pointer-events: auto; }

.basket-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 1400;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(15, 74, 80, 0.2);
}
.basket-drawer.open { transform: none; }
.basket-drawer__head {
  padding: 1.25rem 1.5rem;
  background: var(--teal-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.basket-drawer__head h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--white);
}
.basket-drawer__close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s;
}
.basket-drawer__close:hover { background: rgba(255,255,255,0.3); }
.basket-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.basket-drawer__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream-100);
}
.basket-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.basket-total span:first-child {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.basket-total strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--teal-800);
}

.basket-empty { text-align: center; padding: 2rem 0; }
.basket-empty__icon {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}
.basket-empty p { color: var(--text-muted); margin-bottom: 1.25rem; }

.basket-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.basket-item__name { font-weight: 700; font-size: 0.95rem; }
.basket-item__meta { font-size: 0.8rem; color: var(--text-muted); }
.basket-item__price { font-weight: 700; color: var(--teal-800); }
.basket-item__controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-800);
  transition: 0.2s;
}
.qty-btn:hover { background: var(--cream-100); border-color: var(--teal-700); }
.basket-item__qty { min-width: 28px; text-align: center; font-weight: 700; }
.basket-item__remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}
.basket-item__remove:hover { color: var(--orange-600); }

/* Upsell inside drawer */
.basket-upsell { margin-top: 1.75rem; }
.basket-upsell h4 {
  font-family: var(--font);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.upsell-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  background: var(--cream-100);
}
.upsell-item__info { flex: 1; min-width: 0; }
.upsell-item__name { font-size: 0.88rem; font-weight: 700; line-height: 1.3; }
.upsell-item__price { font-size: 0.82rem; color: var(--teal-700); font-weight: 700; }
.upsell-item__add {
  flex-shrink: 0;
  background: var(--teal-700);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.upsell-item__add:hover { background: var(--teal-900); }

/* Toast */
.toast {
  position: fixed;
  bottom: 6rem;
  right: 1.25rem;
  z-index: 1500;
  background: var(--teal-900);
  color: var(--white);
  padding: 0.9rem 1.35rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
  max-width: 320px;
}
.toast.show { transform: none; opacity: 1; }

/* ---------- Enhanced donate widget ---------- */
.donate-widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.donate-widget__select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
}
.donate-widget__select:focus { outline: none; border-color: var(--teal-700); }
.donate-widget__actions { display: grid; gap: 0.6rem; }
.donate-widget__impact {
  background: var(--cream-100);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-800);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 52px;
}
.donate-widget__impact strong { color: var(--orange-600); }
.donate-widget--sticky {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

/* ---------- Dropdown navigation ---------- */
.nav-item { position: relative; }
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.nav-item > button::after {
  content: "\25BE";
  font-size: 0.7em;
  opacity: 0.6;
}
.nav-item > button:hover,
.nav-item.open > button { color: var(--teal-700); background: var(--cream-100); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.22s;
  border: 1px solid var(--border);
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 0.85rem !important;
  font-size: 0.875rem;
  border-radius: 6px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .nav-item { width: 100%; }
  .nav-item > button { width: 100%; justify-content: center; padding: 0.85rem; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--cream-100);
    display: none;
    margin-top: 0.25rem;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown a { text-align: center; }
}

/* ---------- Hero variants ---------- */
.hero--multi .hero__slide {
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero--multi .hero__slide.active { pointer-events: auto; }
.hero--multi .hero__slide > .container {
  position: relative;
  z-index: 2;
  padding-block: 4.5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero--appeal { min-height: 460px; }
.hero__price {
  font-family: var(--font-display);
  color: var(--cream-200);
}

/* ---------- Numbered values list ---------- */
.values-list { display: grid; gap: 1.25rem; }
.value-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange-500);
}
.value-row__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-300);
  line-height: 1;
}
.value-row__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.35rem;
}
.value-row h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--teal-800); }
.value-row p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ---------- USP grid ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal-600);
  transition: transform 0.3s, box-shadow 0.3s;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-card__icon { font-size: 2rem; margin-bottom: 0.85rem; }
.usp-card h3 { font-size: 1.1rem; color: var(--teal-800); }
.usp-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Nutrition / did-you-know cards ---------- */
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.nutrition-card {
  background: linear-gradient(160deg, var(--white), var(--cream-100));
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.nutrition-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cream-200);
  opacity: 0.5;
}
.nutrition-card__icon { font-size: 2.25rem; margin-bottom: 1rem; position: relative; }
.nutrition-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.4rem;
  position: relative;
}
.nutrition-card h3 { position: relative; font-size: 1.15rem; color: var(--teal-800); }
.nutrition-card p { position: relative; color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* ---------- Quote / testimonial ---------- */
.quote-block {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.quote-block__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--cream-200);
  display: block;
  margin-bottom: 1rem;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-block__author {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Milestone grid ---------- */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.milestone {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-600);
}
.milestone h3 { font-size: 1.02rem; color: var(--teal-800); margin-bottom: 0.4rem; }
.milestone p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- Progress bar ---------- */
.progress-item { margin-bottom: 1.5rem; }
.progress-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.progress-item__head strong { color: var(--teal-800); }
.progress-track {
  height: 10px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-600), var(--orange-500));
  border-radius: 999px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Ways to give ---------- */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.way-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.way-card h3 { font-size: 1.05rem; color: var(--teal-800); }
.way-card p, .way-card address {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
  margin: 0;
  line-height: 1.8;
}
.way-card dl { font-size: 0.88rem; margin: 0; }
.way-card dt {
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
}
.way-card dd { color: var(--text-muted); margin: 0; }

/* ---------- Accordion / FAQ ---------- */
.accordion { max-width: 820px; margin-inline: auto; }
.accordion__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--teal-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.accordion__trigger:hover { background: var(--cream-100); }
.accordion__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s, background 0.3s;
}
.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: var(--white);
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion__panel > div { padding: 0 1.35rem 1.35rem; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Appeal card ---------- */
.appeal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.appeal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.appeal-card__media { position: relative; }
.appeal-card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.appeal-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.appeal-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.appeal-card__body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.appeal-card__body h3 a { color: var(--text); }
.appeal-card__body h3 a:hover { color: var(--teal-700); }
.appeal-card__body p { color: var(--text-muted); font-size: 0.93rem; flex: 1; margin-bottom: 1rem; }
.appeal-card__price {
  font-size: 0.85rem;
  color: var(--teal-700);
  font-weight: 700;
  margin-bottom: 1rem;
}
.appeal-card__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ---------- Video block ---------- */
.video-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-block img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-block__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 74, 80, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.video-block__play:hover { background: rgba(15, 74, 80, 0.5); }
.video-block__play span {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 6px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}
.video-block__play:hover span { transform: scale(1.08); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(15,74,80,0.9));
  color: var(--white);
  padding: 1.5rem 1rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-grid figure.span-2 { grid-column: span 2; }
@media (max-width: 640px) {
  .gallery-grid figure.span-2 { grid-column: span 1; }
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
}
.newsletter h2 { color: var(--white); }
.newsletter p { opacity: 0.9; max-width: 520px; margin: 0 auto 1.75rem; }
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin-inline: auto;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1 1 240px;
  padding: 0.9rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
}
.newsletter__form input:focus { outline: none; border-color: var(--cream-200); }

/* ---------- Sticky mobile donate bar ---------- */
.sticky-give {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1150;
  background: var(--white);
  box-shadow: 0 -6px 24px rgba(15, 74, 80, 0.16);
  padding: 0.7rem 1rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(110%);
  transition: transform 0.35s;
}
.sticky-give.visible { transform: none; }
.sticky-give__text { flex: 1; font-size: 0.82rem; font-weight: 600; line-height: 1.35; }
.sticky-give__text strong { color: var(--teal-800); display: block; }
@media (max-width: 768px) {
  .sticky-give { display: flex; }
  .basket-fab { bottom: 5.5rem; }
  .toast { bottom: 10rem; }
}

/* ---------- Impact band ---------- */
.impact-band {
  background: var(--teal-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}
.impact-band .stats { gap: 1.5rem; }
.impact-band .stat__number { color: var(--cream-200); }
.impact-band .stat__label { color: rgba(255,255,255,0.8); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2rem; max-width: 780px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline__item { position: relative; padding-bottom: 2rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal-600);
}
.timeline__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.3rem;
}
.timeline__item h3 { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--teal-800); }
.timeline__item p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* ---------- Small helpers ---------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream-200);
  color: var(--teal-800);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
  border: none;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.sticky-col { position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-col { position: static; }
  .value-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .donate-widget__row { grid-template-columns: 1fr; }
}
