/* ══════════════════════════════════════════════════════
   HARBOUR OF HOPE — Charity Website
   Aesthetic: Warm Hearth — Sage, Cream, Terracotta
   ══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Palette */
  --color-sage: #6B8F71;
  --color-sage-light: #8FB996;
  --color-sage-dark: #4A6B4F;
  --color-cream: #FAF7F2;
  --color-cream-dark: #F0EAE0;
  --color-terracotta: #C4704B;
  --color-terracotta-light: #D4896A;
  --color-amber: #D4A853;
  --color-amber-light: #E8C97A;
  --color-charcoal: #2C2C2C;
  --color-charcoal-light: #4A4A4A;
  --color-warm-gray: #8B8178;
  --color-warm-white: #FDFCFA;
  --color-deep-forest: #1B3A2A;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 44, 44, 0.06), 0 1px 2px rgba(44, 44, 44, 0.04);
  --shadow-md: 0 4px 16px rgba(44, 44, 44, 0.08), 0 2px 4px rgba(44, 44, 44, 0.04);
  --shadow-lg: 0 12px 40px rgba(44, 44, 44, 0.1), 0 4px 12px rgba(44, 44, 44, 0.05);
  --shadow-xl: 0 20px 60px rgba(44, 44, 44, 0.12), 0 8px 20px rgba(44, 44, 44, 0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.35s;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(107, 143, 113, 0.08);
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  box-shadow: 0 1px 12px rgba(44, 44, 44, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-deep-forest);
  letter-spacing: -0.01em;
}
.nav__logo-icon {
  width: 34px;
  height: 34px;
  color: var(--color-sage);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal-light);
  transition: color var(--duration) var(--ease-out);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  border-radius: 1px;
  transition: width var(--duration) var(--ease-out);
}
.nav__links a:hover { color: var(--color-sage-dark); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--color-sage);
  color: white !important;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: background var(--duration) var(--ease-out),
              transform 0.2s var(--ease-out) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--color-sage-dark) !important;
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out),
              opacity var(--duration) var(--ease-out);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(72px + var(--space-xl)) var(--space-md) var(--space-xl);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(107, 143, 113, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196, 112, 75, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    linear-gradient(175deg, var(--color-cream) 0%, rgba(240, 234, 224, 0.8) 50%, var(--color-cream) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
  position: relative;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--color-sage);
  opacity: 0.4;
}
.hero__eyebrow::before { right: calc(100% + 16px); }
.hero__eyebrow::after { left: calc(100% + 16px); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.12;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
.hero__title em {
  color: var(--color-terracotta);
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: var(--color-warm-gray);
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-xs);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-warm-gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.hero__scroll-dot {
  animation: scrollBounce 2s var(--ease-in-out) infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-sage);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 143, 113, 0.3);
}
.btn--primary:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 143, 113, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid rgba(44, 44, 44, 0.2);
}
.btn--outline:hover {
  border-color: var(--color-sage);
  color: var(--color-sage-dark);
  background: rgba(107, 143, 113, 0.05);
}
.btn--lg {
  padding: 14px 34px;
  font-size: 0.95rem;
}

/* ═══════════════════ SECTION HEADERS ═══════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--color-deep-forest);
  letter-spacing: -0.01em;
}
.section-header__desc {
  font-size: 1.05rem;
  color: var(--color-warm-gray);
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  line-height: 1.75;
}
.section-header--light .section-header__eyebrow { color: var(--color-amber-light); }
.section-header--light .section-header__title { color: var(--color-warm-white); }

/* ═══════════════════ ABOUT ═══════════════════ */
.about {
  padding: var(--space-3xl) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.about__card {
  background: var(--color-warm-white);
  border: 1px solid rgba(107, 143, 113, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  color: var(--color-sage);
}
.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-xs);
}
.about__card p {
  font-size: 0.92rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

/* ═══════════════════ IMPACT ═══════════════════ */
.impact {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--color-deep-forest);
  overflow: hidden;
}
.impact__bg {
  position: absolute;
  inset: 0;
}
.impact__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(107, 143, 113, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.impact__stat {
  position: relative;
}
.impact__stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.impact__stat:last-child::after { display: none; }
.impact__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--color-amber);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.impact__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.impact__label small {
  display: block;
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: 2px;
}

/* ═══════════════════ PROGRAMS ═══════════════════ */
.programs {
  padding: var(--space-3xl) 0;
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.programs__card {
  display: flex;
  background: var(--color-warm-white);
  border: 1px solid rgba(107, 143, 113, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.programs__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.programs__card-image {
  flex: 0 0 180px;
  min-height: 200px;
}
.programs__card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--hue, 140), 30%, 92%);
  color: hsl(var(--hue, 140), 25%, 55%);
}
.programs__card-image-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}
.programs__card-body {
  flex: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}
.programs__card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-sage);
  background: rgba(107, 143, 113, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  align-self: flex-start;
}
.programs__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-xs);
}
.programs__card p {
  font-size: 0.92rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
  flex: 1;
}
.programs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-terracotta);
  margin-top: var(--space-sm);
  transition: gap var(--duration) var(--ease-out);
}
.programs__card-link:hover { gap: 12px; }
.programs__card-link span {
  transition: transform var(--duration) var(--ease-out);
}
.programs__card-link:hover span { transform: translateX(4px); }

/* ═══════════════════ DONATION ═══════════════════ */
.donate {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--color-cream-dark);
  overflow: hidden;
}
.donate__bg {
  position: absolute;
  inset: 0;
}
.donate__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(107, 143, 113, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 30%, rgba(196, 112, 75, 0.05) 0%, transparent 50%);
}
.donate__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.donate__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-md);
}
.donate__desc {
  font-size: 1.05rem;
  color: var(--color-warm-gray);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.donate__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.donate__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-charcoal-light);
}
.donate__trust-item svg {
  color: var(--color-sage);
  flex-shrink: 0;
}
.donate__card {
  background: var(--color-warm-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(107, 143, 113, 0.08);
}
.donate__frequency {
  display: flex;
  background: var(--color-cream);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: var(--space-md);
}
.donate__freq-btn {
  flex: 1;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--color-warm-gray);
  transition: all var(--duration) var(--ease-out);
}
.donate__freq-btn.active {
  background: var(--color-sage);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 143, 113, 0.3);
}
.donate__amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: var(--space-sm);
}
.donate__amount-btn {
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(107, 143, 113, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-charcoal);
  transition: all var(--duration) var(--ease-out);
}
.donate__amount-btn:hover {
  border-color: var(--color-sage);
  background: rgba(107, 143, 113, 0.04);
}
.donate__amount-btn.active {
  border-color: var(--color-sage);
  background: rgba(107, 143, 113, 0.08);
  color: var(--color-sage-dark);
}
.donate__custom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  border: 2px solid rgba(107, 143, 113, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-out);
}
.donate__custom:focus-within {
  border-color: var(--color-sage);
}
.donate__custom-currency {
  padding: 10px 12px;
  font-weight: 600;
  color: var(--color-warm-gray);
  background: var(--color-cream);
  font-size: 0.95rem;
}
.donate__custom-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: transparent;
  color: var(--color-charcoal);
}
.donate__custom-input::placeholder {
  color: rgba(139, 129, 120, 0.5);
}
.donate__impact-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-warm-gray);
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-sm);
  border-top: 1px solid rgba(107, 143, 113, 0.08);
  border-bottom: 1px solid rgba(107, 143, 113, 0.08);
}
.donate__impact-note strong {
  color: var(--color-sage-dark);
}
#paypal-button-container {
  margin-top: var(--space-sm);
  min-height: 50px;
}
.donate__powered {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-warm-gray);
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.6;
}

/* ═══════════════════ STORIES / TESTIMONIALS ═══════════════════ */
.stories {
  padding: var(--space-3xl) 0;
}
.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.stories__card {
  background: var(--color-warm-white);
  border: 1px solid rgba(107, 143, 113, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}
.stories__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stories__card--featured {
  background: var(--color-deep-forest);
  border-color: transparent;
  transform: scale(1.03);
}
.stories__card--featured:hover {
  transform: scale(1.03) translateY(-3px);
}
.stories__card--featured .stories__quote-mark { color: var(--color-amber); }
.stories__card--featured .stories__text { color: rgba(255, 255, 255, 0.9); }
.stories__card--featured .stories__name { color: var(--color-warm-white); }
.stories__card--featured .stories__role { color: rgba(255, 255, 255, 0.5); }

.stories__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--color-sage-light);
  opacity: 0.4;
  margin-bottom: var(--space-xs);
}
.stories__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.stories__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stories__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(var(--hue, 140), 30%, 88%);
  color: hsl(var(--hue, 140), 25%, 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.stories__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-deep-forest);
  font-style: normal;
}
.stories__role {
  font-size: 0.78rem;
  color: var(--color-warm-gray);
}

/* ═══════════════════ VOLUNTEER ═══════════════════ */
.volunteer {
  padding: var(--space-3xl) 0;
  background: var(--color-cream-dark);
}
.volunteer__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.volunteer__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--color-deep-forest);
  margin-bottom: var(--space-md);
}
.volunteer__desc {
  font-size: 1.05rem;
  color: var(--color-warm-gray);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.volunteer__roles {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.volunteer__role {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--space-sm);
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 143, 113, 0.06);
  transition: transform var(--duration) var(--ease-out);
}
.volunteer__role:hover { transform: translateX(4px); }
.volunteer__role-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 143, 113, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-sage);
  flex-shrink: 0;
}
.volunteer__role strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-deep-forest);
}
.volunteer__role span {
  font-size: 0.82rem;
  color: var(--color-warm-gray);
}
.volunteer__visual {
  position: relative;
  height: 400px;
}
.volunteer__visual-card {
  position: absolute;
  background: var(--color-warm-white);
  border: 1px solid rgba(107, 143, 113, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: transform var(--duration) var(--ease-out);
}
.volunteer__visual-card:hover { transform: translateY(-6px) !important; }
.volunteer__visual-card svg {
  width: 56px;
  height: 56px;
  color: var(--color-sage);
}
.volunteer__visual-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-charcoal-light);
}
.volunteer__visual-card--1 { top: 10%; left: 5%; transform: rotate(-3deg); }
.volunteer__visual-card--2 { top: 5%; right: 5%; transform: rotate(4deg); }
.volunteer__visual-card--3 { bottom: 10%; left: 25%; transform: rotate(-1deg); }

/* ═══════════════════ NEWSLETTER ═══════════════════ */
.newsletter {
  padding: var(--space-xl) 0;
}
.newsletter__inner {
  background: var(--color-warm-white);
  border: 1px solid rgba(107, 143, 113, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.newsletter__text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-deep-forest);
  margin-bottom: 4px;
}
.newsletter__text p {
  font-size: 0.92rem;
  color: var(--color-warm-gray);
}
.newsletter__form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.newsletter__input {
  border: 1.5px solid rgba(107, 143, 113, 0.15);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  font-size: 0.9rem;
  width: 260px;
  outline: none;
  background: var(--color-cream);
  color: var(--color-charcoal);
  transition: border-color var(--duration) var(--ease-out);
}
.newsletter__input:focus { border-color: var(--color-sage); }
.newsletter__input::placeholder { color: rgba(139, 129, 120, 0.5); }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--color-deep-forest);
  padding: var(--space-2xl) 0 var(--space-lg);
  color: rgba(255, 255, 255, 0.7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer .nav__logo {
  color: var(--color-warm-white);
  margin-bottom: var(--space-sm);
}
.footer .nav__logo-icon { color: var(--color-sage-light); }
.footer__tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-md);
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: var(--space-sm);
}
.footer__socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease-out);
}
.footer__socials a:hover {
  background: var(--color-sage);
  color: white;
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col li,
.footer__col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration) var(--ease-out);
}
.footer__col a:hover { color: var(--color-sage-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer__legal {
  display: flex;
  gap: var(--space-md);
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--duration) var(--ease-out);
}
.footer__legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
  .impact__stat:nth-child(2)::after { display: none; }
  .programs__grid { grid-template-columns: 1fr; }
  .donate__wrapper { grid-template-columns: 1fr; }
  .volunteer__wrapper { grid-template-columns: 1fr; }
  .volunteer__visual { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    transform: translateY(-120%);
    transition: transform 0.5s var(--ease-out);
    border-bottom: 1px solid rgba(107, 143, 113, 0.1);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }

  .hero { min-height: 90vh; }
  .hero__eyebrow::before,
  .hero__eyebrow::after { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: 1fr 1fr; }
  .impact__stat::after { display: none; }

  .stories__grid { grid-template-columns: 1fr; }
  .stories__card--featured { transform: none; }
  .stories__card--featured:hover { transform: translateY(-3px); }

  .donate__amounts { grid-template-columns: repeat(2, 1fr); }

  .newsletter__inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter__form { width: 100%; }
  .newsletter__input { flex: 1; width: auto; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .impact__grid { grid-template-columns: 1fr; }
  .programs__card { flex-direction: column; }
  .programs__card-image { flex: 0 0 140px; }

  .donate__card { padding: var(--space-md); }
  .donate__amounts { grid-template-columns: 1fr 1fr; }

  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; justify-content: center; }
}
