/* =========================================================
   HUG YOUR HEAD FOUNDATION — style.css
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --blue:   #95d4e2;
  --peach:  #e7ac8f;
  --brown:  #a37058;
  --black:  #000000;
  --white:  #ffffff;
  --dark:   #0a1a1e;
  --light:  #f4faf7;

  --blue-dark:  #6bbdce;
  --peach-dark: #d4946f;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);

  --transition: all .3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; }

/* --- Layout Helpers --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- Backgrounds --- */
.bg-light  { background: var(--light); }
.bg-dark   { background: var(--dark); color: var(--white); }
.bg-blue   { background: var(--blue); }
.bg-white  { background: var(--white); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo { height: 55px; width: auto; object-fit: contain; }
.nav__brand-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  color: var(--black);
  max-width: 160px;
  line-height: 1.3;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--brown); background: rgba(149,212,226,.12); }
.nav__cta {
  background: var(--blue);
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  transition: var(--transition) !important;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav__overlay.open { opacity: 1; pointer-events: all; }
.nav__overlay a {
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav__overlay a:hover { color: var(--blue); }
.nav__overlay .nav__cta {
  background: var(--blue) !important;
  color: var(--black) !important;
  padding: 14px 36px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 1.1rem !important;
  margin-top: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  border-top: 4px solid var(--peach);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer__logo { height: 60px; margin-bottom: 16px; }
.footer__org  { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.footer__tagline { color: var(--blue); font-style: italic; font-size: .9rem; margin-bottom: 8px; }
.footer__501c3  { font-size: .78rem; opacity: .6; }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--peach); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .9rem; opacity: .8; transition: var(--transition); }
.footer__links a:hover { opacity: 1; color: var(--blue); }
.footer__social { display: flex; gap: 14px; margin-bottom: 24px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: .85rem;
  opacity: .8;
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--blue); color: var(--blue); opacity: 1; transform: translateY(-2px); }
.footer__newsletter-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--peach);
  color: var(--black);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}
.footer__newsletter-link:hover { background: var(--peach-dark); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: .8rem;
  opacity: .55;
  text-align: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-primary { background: var(--blue); color: var(--black); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-peach { background: var(--peach); color: var(--black); }
.btn-peach:hover { background: var(--peach-dark); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #132329; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--peach);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--blue  { border-top-color: var(--blue); }
.card--dark  { background: rgba(255,255,255,.06); border-top-color: var(--peach); color: var(--white); }
.card--dark:hover { background: rgba(255,255,255,.1); }
.card__icon {
  width: 52px; height: 52px;
  background: rgba(149,212,226,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p  { font-size: .93rem; opacity: .85; line-height: 1.7; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero--full { min-height: 100vh; }
.hero--lg   { min-height: 500px; }
.hero--md   { min-height: 450px; }
.hero--sm   { min-height: 400px; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 40px 24px;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(149,212,226,.25);
  border: 1px solid rgba(149,212,226,.5);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero h1  { margin-bottom: 20px; }
.hero p   { font-size: 1.15rem; opacity: .9; max-width: 640px; margin: 0 auto 32px; }
.hero__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__mantra  { font-style: italic; color: var(--peach); font-size: 1.1rem; margin-top: 24px; opacity: .9; }

/* =========================================================
   SECTION ACCENTS
   ========================================================= */
.section-header { margin-bottom: 48px; }
.accent-line {
  display: block;
  width: 56px; height: 4px;
  background: var(--peach);
  border-radius: 2px;
  margin-bottom: 16px;
}
.accent-line--blue  { background: var(--blue); }
.accent-line--center { margin: 0 auto 16px; }
.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brown);
  margin-bottom: 12px;
}

/* =========================================================
   IMPACT BAR
   ========================================================= */
.impact-bar {
  background: var(--blue);
  padding: 32px 0;
}
.impact-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.impact-stat__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.impact-stat__label { font-size: .85rem; font-weight: 600; color: var(--black); opacity: .75; margin-top: 4px; }

/* =========================================================
   CHECKLIST
   ========================================================= */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.checklist li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px;
  background: var(--blue);
  color: var(--black);
  border-radius: 50%;
  font-weight: 700;
  font-size: .8rem;
  margin-top: 2px;
}

/* =========================================================
   IMAGES
   ========================================================= */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.img-rounded { border-radius: var(--radius-md); }
.img-tall { height: 520px; object-fit: cover; border-radius: var(--radius-md); width: 100%; }
.img-medium { height: 380px; object-fit: cover; border-radius: var(--radius-md); width: 100%; }
.img-border { border: 4px solid var(--blue); }

/* =========================================================
   QUOTE / PULLQUOTE
   ========================================================= */
.pullquote {
  border-left: 4px solid var(--peach);
  padding: 16px 24px;
  margin-bottom: 24px;
}
.pullquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--peach);
  line-height: 1.5;
}
.pullquote cite { font-size: .85rem; opacity: .7; margin-top: 8px; display: block; }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--peach);
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.timeline-step__dot {
  width: 56px; height: 56px;
  background: var(--peach);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--white);
  font-size: .85rem;
}
.timeline-step h4 { margin-bottom: 8px; }
.timeline-step p  { font-size: .85rem; opacity: .75; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid #e2e8f0; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  color: var(--dark);
  transition: color .2s;
}
.faq-question:hover { color: var(--brown); }
.faq-icon {
  min-width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .93rem;
  line-height: 1.75;
  color: #374151;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 20px; }

/* =========================================================
   FORMS
   ========================================================= */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: inherit; opacity: .8; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(149,212,226,.2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: rgba(149,212,226,.15);
  border: 1px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--dark);
}
.form-success.show { display: block; }

/* =========================================================
   DONATION SELECTOR
   ========================================================= */
.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.donation-amount {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--white);
  font-family: var(--font-body);
  color: var(--dark);
}
.donation-amount:hover  { border-color: var(--blue); }
.donation-amount.active { border-color: var(--blue); background: rgba(149,212,226,.15); color: var(--dark); }
.donation-custom input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-family: var(--font-body);
  text-align: center;
}
.donation-custom input:focus { border-color: var(--blue); outline: none; }

/* =========================================================
   STAT BOX
   ========================================================= */
.stat-box {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.stat-box__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.stat-box__label { font-weight: 600; margin-top: 8px; }
.stat-box__sub   { font-size: .88rem; opacity: .65; margin-top: 6px; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
  cursor: pointer;
  border: none;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover   { background: var(--blue-dark); transform: translateY(-3px); }

/* =========================================================
   FADE IN ANIMATIONS
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* =========================================================
   PROGRAM / ALTERNATING SECTIONS
   ========================================================= */
.program-section { padding: 80px 0; }
.program-section:nth-child(even) { background: var(--light); }
.program-section .grid-2 { gap: 64px; }
.program-section.reverse .grid-2 { direction: rtl; }
.program-section.reverse .grid-2 > * { direction: ltr; }
.program-badge {
  display: inline-block;
  background: rgba(149,212,226,.2);
  color: var(--brown);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* =========================================================
   GET INVOLVED CARDS
   ========================================================= */
.involve-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.involve-card__header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid #e2e8f0;
}
.involve-card__body { padding: 24px; }
.involve-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.involve-card__icon--blue  { background: rgba(149,212,226,.2); }
.involve-card__icon--peach { background: rgba(231,172,143,.2); }
.involve-card__icon--brown { background: rgba(163,112,88,.2); }

/* =========================================================
   EVENT CARDS
   ========================================================= */
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card__img  { height: 200px; object-fit: cover; width: 100%; }
.event-card__body { padding: 24px; }
.event-card__date {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brown);
  margin-bottom: 8px;
}
.event-card h4 { margin-bottom: 10px; }
.event-card p  { font-size: .88rem; opacity: .75; }

/* =========================================================
   CONTACT INFO CARD
   ========================================================= */
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  height: 100%;
}
.contact-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-step__num {
  min-width: 36px; height: 36px;
  background: var(--peach);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: .9rem; }
.contact-detail a { opacity: .85; transition: color .2s; }
.contact-detail a:hover { color: var(--blue); opacity: 1; }

/* =========================================================
   SOCIAL SHARE
   ========================================================= */
.social-share { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
  text-decoration: none;
}
.share-btn--facebook { background: #1877f2; color: var(--white); }
.share-btn--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.share-btn--youtube   { background: #ff0000; color: var(--white); }
.share-btn:hover      { transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: .9; }

/* =========================================================
   RESOURCE CARDS
   ========================================================= */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--blue);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-card h4 { margin-bottom: 8px; }
.resource-card p  { font-size: .88rem; opacity: .75; margin-bottom: 16px; }

/* =========================================================
   SPEAKING TOPICS
   ========================================================= */
.topic-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--peach);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.topic-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-left-color: var(--blue); }
.topic-card h4 { margin-bottom: 8px; }
.topic-card p  { font-size: .88rem; opacity: .75; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4    { grid-template-columns: repeat(2, 1fr); }
  .timeline  { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .impact-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .donation-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .program-section.reverse .grid-2 { direction: ltr; }
  .hero h1 { font-size: 2rem; }
  .hero p  { font-size: 1rem; }
}

@media (max-width: 480px) {
  .impact-bar__grid { grid-template-columns: 1fr 1fr; }
  .donation-grid    { grid-template-columns: 1fr 1fr; } /* already default */
  .hero__buttons    { flex-direction: column; align-items: center; }
  .nav__brand-text  { display: none; }
  .container { padding: 0 16px; }
}
