/* ============================================
   Center For Tomorrow - Main Stylesheet
   ============================================ */

/* Google Fonts - add Cormorant Garamond for hero/quote typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700;800&family=Pacifico&display=swap');

:root {
  --primary: #FF6C0C;
  --primary-dark: #e55d00;
  --primary-light: #FFA500;
  --dark: #333;
  --dark-soft: #444;
  --white: #fff;
  --bg-light: #f8f6f3;
  --bg-beige: #f5f0eb;
  --gray-100: #f9f9f9;
  --gray-200: #eee;
  --gray-300: #ddd;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(255, 108, 12, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-hero: 'Cormorant Garamond', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ========== Sticky Navigation ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #fff7f0 0%, #ffffff 40%, #fff7f0 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark);
  padding: 4px 0;
  border-radius: var(--radius);
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.9;
  color: var(--dark);
}

.logo-img-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.logo-img-wrap img {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-accent {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu .nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(255, 108, 12, 0.08);
}

.nav-link.has-dropdown::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 4px;
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  padding: 8px 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

/* Dropdown always visible (e.g. Our Work programs, Sponsorship sections) */
.dropdown.dropdown-expanded {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
@media (max-width: 768px) {
  .dropdown.dropdown-expanded {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown a:hover {
  background: rgba(255, 108, 12, 0.1);
  color: var(--primary);
  padding-left: 24px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Hero Carousel ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 420px;
    max-height: 55vh;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 360px;
    max-height: 48vh;
  }
}
@media (max-width: 380px) {
  .hero {
    min-height: 320px;
    max-height: 45vh;
  }
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Wrapper for hero bg image so Ken Burns (scale/translate) doesn't affect overlay or text */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 5vw;
}
@media (max-width: 576px) {
  .hero-overlay {
    padding: 20px 20px 88px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  }
}
@media (max-width: 380px) {
  .hero-overlay {
    padding: 16px 16px 84px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.28));
  }
}

.hero-text-wrap {
  max-width: 75%;
  margin: 0 auto;
  text-align: center;
  perspective: 1200px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .hero-text-wrap {
    max-width: 92%;
  }
}
@media (max-width: 576px) {
  .hero-text-wrap {
    max-width: 100%;
    padding: 0 4px;
  }
}
@media (max-width: 380px) {
  .hero-text-wrap {
    padding: 0 2px;
  }
}

/* Hero heading: Playfair Display for readability and impact at all sizes */
.hero-typewriter {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 4rem);
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 1px rgba(0, 0, 0, 0.8);
  min-height: 1.3em;
  display: inline-block;
  transform-style: preserve-3d;
  letter-spacing: -0.02em;
}

/* No extra animation for hero heading; keep it static */

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot:hover,
.hero-dot.active {
  background: var(--primary);
  transform: scale(1.15);
}

/* === HOME HERO ANIMATIONS === */
/* Hero height: 100svh mobile, 100vh desktop; text container constrained */
.hero {
  min-height: 100vh;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }
}
.hero-text-wrap {
  max-width: 700px;
}

/* Eyebrow label above heading - small uppercase, readable minimum size */
.hero-eyebrow {
  font-family: var(--font-hero);
  font-size: clamp(0.6875rem, 1.5vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7), 0 0 1px rgba(0, 0, 0, 0.8);
}

/* Responsive type: H1 and subtext with clamp — minimum sizes for small screens */
.hero-typewriter {
  font-size: clamp(1.75rem, 5vw, 4rem);
}
.hero-tagline {
  font-size: clamp(0.9375rem, 2.5vw, 1.35rem);
  line-height: 1.5;
}

/* Ken Burns: zoom + horizontal drift on background layer only; transform/opacity only, no CLS */
@media (prefers-reduced-motion: no-preference) {
  .hero-slide-bg {
    will-change: transform;
  }
  .hero-slide.active .hero-slide-bg {
    animation: hero-kenburns 10s ease-in-out infinite alternate;
  }
}
@keyframes hero-kenburns {
  from { transform: scale(1) translateX(-10px); }
  to   { transform: scale(1.08) translateX(10px); }
}

/* Mobile: less aggressive zoom (1.0–1.05) and shorter drift */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero-slide.active .hero-slide-bg {
    animation: hero-kenburns-mobile 10s ease-in-out infinite alternate;
  }
}
@keyframes hero-kenburns-mobile {
  from { transform: scale(1) translateX(-8px); }
  to   { transform: scale(1.05) translateX(8px); }
}

/* Text entrance: staggered fade-in + slide up, one-time, ease-out.
   Default: visible (opacity 1) so text shows on devices where animation doesn't run (e.g. mobile). */
.hero-entrance-eyebrow,
.hero-entrance-heading,
.hero-entrance-sub,
.hero-entrance-cta {
  opacity: 1;
}
/* When reduced motion: no animation, ensure transform reset */
@media (prefers-reduced-motion: reduce) {
  .hero-entrance-eyebrow,
  .hero-entrance-heading,
  .hero-entrance-sub,
  .hero-entrance-cta {
    transform: none;
    animation: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-entrance-eyebrow {
    animation: hero-entrance-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  }
  .hero-entrance-heading {
    animation: hero-entrance-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
  }
  .hero-entrance-sub {
    animation: hero-entrance-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
  }
  .hero-entrance-cta {
    animation: hero-entrance-cta-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.35s forwards;
  }
}
@keyframes hero-entrance-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-entrance-cta-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  @keyframes hero-entrance-up {
    from { transform: translateY(12px); }
    to  { transform: translateY(0); }
  }
}

/* Small screens: ensure hero text is always visible (some devices don't run CSS animations) */
@media (max-width: 768px) {
  .hero-entrance-eyebrow,
  .hero-entrance-heading,
  .hero-entrance-sub,
  .hero-entrance-cta {
    opacity: 1;
    transform: none;
  }
}

/* CTA micro-interactions: hover lift + shadow, active press */
.hero .hero-cta-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.hero .hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hero .btn-primary.hero-cta-btn:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 24px rgba(255, 108, 12, 0.45);
}
.hero .hero-cta-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Scroll indicator: bouncing chevron at bottom center, fades when past hero (JS adds .hero-scroll-hidden) */
.hero-scroll-indicator {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: opacity 0.4s ease;
}
.hero-scroll-indicator.hero-scroll-hidden {
  opacity: 0;
  pointer-events: none;
}
.hero-scroll-indicator-inner {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-indicator-inner {
    animation: none;
  }
  .hero-scroll-indicator {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes hero-scroll-bounce {
  from, to { transform: rotate(45deg) translateY(0); }
  50%     { transform: rotate(45deg) translateY(6px); }
}

/* Hero responsive: ensure text stays visible and readable on small viewports */
@media (max-width: 576px) {
  .hero-typewriter {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.01em;
  }
  .hero-tagline {
    font-size: clamp(0.875rem, 2.2vw, 1.15rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8), 0 0 1px rgba(0, 0, 0, 0.9);
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.98);
  }
  .hero-eyebrow {
    font-size: clamp(0.625rem, 2vw, 0.8rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  }
  .hero-buttons {
    margin-top: 20px;
    gap: 12px;
    justify-content: center;
  }
  .hero .hero-cta-btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 380px) {
  .hero-typewriter {
    font-size: clamp(1.375rem, 7vw, 2.25rem);
  }
  .hero-tagline {
    font-size: 0.875rem;
  }
}

/* ========== Sections ========== */
.section {
  padding: 52px 5vw;
}
@media (max-width: 768px) {
  .section {
    padding: 36px 5vw;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 28px 4vw;
  }
}

.section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 8px;
  text-align: left;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark-soft);
  text-align: left;
  max-width: 600px;
  margin: 0 0 24px;
}

/* Section headings always visible (no clip-path hide) - About, Our Work, News, Get Involved, Contact, Sponsorship */
.about-mission-title,
.about-objectives-title,
.about-values-title,
.about-team-title,
.about-team-subtitle,
.our-work-overview-title,
.news-stories-title,
.get-involved-donate-title,
.get-involved-volunteer-title,
.contact-map-heading,
.sponsorship-about-heading,
.sponsorship-subheading,
.sponsorship-write-heading,
.sponsorship-children-title {
  clip-path: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Cards grid - at least 4 per row on large screens */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  background: rgba(255, 108, 12, 0.06);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--white);
}

/* Our Work cards with image on top */
.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-with-image .card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-with-image .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-with-image h3,
.card-with-image p,
.card-with-image .btn {
  padding-left: 24px;
  padding-right: 24px;
}

.card-with-image h3 {
  padding-top: 20px;
  margin-bottom: 10px;
}

.card-with-image p {
  padding-bottom: 4px;
}

.card-with-image .btn {
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 24px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(255, 108, 12, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.card p {
  color: var(--dark-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About snippet */
.about-snippet {
  background: var(--bg-beige);
}

.about-snippet .section-title {
  text-align: left;
}

.about-snippet .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-bottom: 18px;
}

.quote-text {
  font-family: var(--font-hero);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--dark-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}

.quote-attribution {
  font-size: 0.95rem;
  color: var(--dark-soft);
  margin-top: -12px;
  margin-bottom: 0;
}

.quote-block {
  padding: 32px 5vw;
  background: var(--bg-beige);
  border-left: 4px solid var(--primary);
}
@media (max-width: 768px) {
  .quote-block {
    padding: 24px 5vw;
  }
}
@media (max-width: 480px) {
  .quote-block {
    padding: 20px 4vw;
  }
}

.quote-block .quote-text {
  margin-bottom: 8px;
  color: var(--dark);
}

.quote-block .quote-attribution {
  font-style: italic;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: left;
}

.cta-section .section-title,
.cta-section .section-subtitle {
  color: var(--white);
  text-align: center;
}

.cta-section .section-subtitle {
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 93, 0, 0.4);
}

/* On orange CTA/hero sections, keep primary button visible with inverted style */
.cta-section .btn-primary,
.page-hero .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.cta-section .btn-primary:hover,
.page-hero .btn-primary:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.hero-tagline {
  margin-top: 16px;
  font-family: var(--font-hero);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

.page-hero-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 0 1px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-hero-subtitle {
  font-family: var(--font-hero);
  font-size: clamp(0.9375rem, 2.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.98);
  max-width: 40rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75), 0 0 1px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Page headers (inner pages) - single bg image, gradient overlay, aligned with home hero */
.page-hero {
  position: relative;
  color: var(--white);
  padding: 48px 5vw 56px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 769px) {
  .page-hero {
    min-height: 100vh;
  }
}

/* Gradient overlay: darker at bottom for text contrast (same as home hero) */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-text {
  text-align: left;
}

.page-hero-text h1,
.page-hero-text .page-hero-title {
  font-size: clamp(1.75rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero-text p,
.page-hero-text .page-hero-subtitle {
  font-size: clamp(0.9375rem, 2.5vw, 1.2rem);
  opacity: 1;
  max-width: 42rem;
}

/* Page hero entrance: visible by default; animate when motion is allowed */
.page-hero-entrance-title,
.page-hero-entrance-sub {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-entrance-title,
  .page-hero-entrance-sub {
    transform: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero-entrance-title {
    animation: page-hero-entrance-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .page-hero-entrance-sub {
    animation: page-hero-entrance-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
  }
}

/* Breadcrumb link above title (e.g. news story) */
.page-hero-breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Compact sub-page heroes: smaller height and headings */
.page-hero-compact {
  min-height: 38vh;
  padding: 32px 5vw 40px;
}
@media (max-width: 768px) {
  .page-hero-compact {
    min-height: 32vh;
    padding: 24px 5vw 28px;
  }
}
@media (max-width: 480px) {
  .page-hero-compact {
    min-height: 28vh;
    padding: 20px 4vw 24px;
  }
}
.page-hero-compact .page-hero-text h1,
.page-hero-compact .page-hero-text .page-hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 8px;
}
.page-hero-compact .page-hero-text p.page-hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  max-width: 36rem;
}
.page-hero-verse {
  font-family: var(--font-hero);
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 12px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  max-width: 32rem;
}
.page-hero-compact.our-work-hero { min-height: 38vh; }
.page-hero-compact.our-work-hero .page-hero-title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
@media (max-width: 768px) {
  .page-hero-compact.our-work-hero { min-height: 32vh; }
}
@media (max-width: 480px) {
  .page-hero-compact.our-work-hero { min-height: 28vh; }
}
.page-hero-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero-breadcrumb a:hover {
  color: var(--white);
}

@keyframes page-hero-entrance-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page hero responsive: smaller height on small screens so content is visible */
@media (max-width: 768px) {
  .page-hero {
    min-height: 42vh;
    padding: 28px 20px 36px;
  }
  .page-hero::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.22));
  }
  .page-hero-text h1,
  .page-hero-text .page-hero-title {
    font-size: clamp(1.35rem, 5vw, 2rem);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.9);
  }
  .page-hero-text p,
  .page-hero-text .page-hero-subtitle {
    font-size: clamp(0.8125rem, 2.2vw, 1rem);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  }
  .page-hero-entrance-title,
  .page-hero-entrance-sub {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 576px) {
  .page-hero {
    min-height: 38vh;
    padding: 20px 16px 28px;
  }
  .page-hero::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  }
}

@media (max-width: 380px) {
  .page-hero {
    min-height: 35vh;
    padding: 16px 12px 24px;
  }
  .page-hero::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.28));
  }
  .page-hero-text h1,
  .page-hero-text .page-hero-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }
}

/* Legacy - no longer used */
.page-hero-photo {
  display: none;
}

/* Content blocks */
.content-block {
  margin-bottom: 28px;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--primary);
}

.content-block p {
  color: var(--dark-soft);
  margin-bottom: 12px;
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ========== Donate / Checkout page ========== */
.donate-checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.donate-amount-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.donate-amount-btn {
  padding: 12px 20px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.donate-amount-btn:hover,
.donate-amount-btn.active {
  border-color: var(--primary);
  background: rgba(255, 108, 12, 0.1);
  color: var(--primary);
}

.donate-other-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.donate-other-wrap input {
  max-width: 140px;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
}

.donate-summary {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: var(--bg-beige);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.donate-summary h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.donate-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.donate-summary-row strong {
  font-size: 1.25rem;
  color: var(--primary);
}

.donate-bank {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-300);
  font-size: 0.9rem;
  color: var(--dark-soft);
}

.donate-bank p {
  margin-bottom: 8px;
}

.donate-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 20px 0 12px;
  color: var(--dark);
}

.donate-section-title:first-child {
  margin-top: 0;
}

@media (max-width: 992px) {
  .donate-checkout {
    grid-template-columns: 1fr;
  }
  .donate-summary {
    position: static;
  }
}

/* Get Involved donate: keep summary card fully visible with no inner scroll */
.get-involved-donate-section .donate-summary {
  position: static;
  max-height: none;
  overflow: visible;
}

.donate-form-column { max-width: 100%; }
.donate-amount-options { margin-bottom: 20px; }
.donate-amount-options .donate-other-wrap { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.donate-amount-options .donate-other-wrap label { font-weight: 500; color: var(--dark); }
.donate-currency { font-weight: 600; color: var(--dark); }
.donate-amount-options .donate-other-wrap input { max-width: 160px; }
.required { color: var(--primary); }
.donate-privacy { font-size: 0.9rem; color: var(--dark-soft); margin: 24px 0 20px; line-height: 1.5; }
.btn-donate-submit {
  margin-top: 0;
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 2px solid var(--primary-dark) !important;
  font-weight: 600;
  padding: 14px 32px;
}
.btn-donate-submit:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}
.form-row { display: grid; gap: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 576px) { .form-row-2 { grid-template-columns: 1fr; } }
.donate-summary-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.donate-summary-table td { padding: 6px 0; border-bottom: 1px solid var(--gray-200); color: var(--dark-soft); }
.donate-summary-table td:last-child { text-align: right; }
.donate-summary-table strong { color: var(--primary); font-size: 1.1rem; }
.donate-bank-details { margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--primary); }
.donate-bank-title { font-size: 1.05rem; margin-bottom: 10px; padding-bottom: 0; border-bottom: none; }
.donate-bank-card { background: var(--white); border-radius: var(--radius); padding: 14px; border: 2px solid var(--gray-200); margin-top: 10px; }
.donate-bank-card p { margin-bottom: 10px; }
.donate-bank-card p:last-child { margin-bottom: 0; }
.donate-bank-dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; align-items: baseline; max-width: 100%; }
.donate-bank-dl dt { font-weight: 600; color: var(--dark); font-size: 0.85rem; }
.donate-bank-dl dd { margin: 0; color: var(--dark-soft); font-size: 0.9rem; }
.donate-bank-account-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.donate-bank-account-row .donate-account-number { font-family: monospace; font-size: 0.95rem; letter-spacing: 0.04em; background: var(--bg-light); padding: 5px 8px; border-radius: 6px; }
.donate-bank-note { font-size: 0.8rem; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--gray-200); }
.donate-account-number { font-family: monospace; font-size: 1.05rem; letter-spacing: 0.05em; }
.donate-swift { font-family: monospace; font-size: 1.05rem; letter-spacing: 0.05em; }

.donate-payment-choices { margin-top: 8px; padding-top: 8px; border-top: 2px solid var(--primary); }
.donate-payment-intro { font-size: 1rem; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.donate-payment-option { margin-bottom: 14px; padding: 14px; border-radius: var(--radius); border: 2px solid var(--gray-200); background: var(--white); }
.donate-payment-option:last-child { margin-bottom: 0; }
.donate-payment-option h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.donate-payment-option h4 i { color: var(--primary); }
.donate-payment-option p { margin-bottom: 10px; font-size: 0.95rem; color: var(--dark-soft); line-height: 1.5; }
.donate-payment-option .donate-bank-card { margin-top: 12px; }
.donate-payment-cta { margin-top: 12px; margin-bottom: 0; }
.donate-option-bank .donate-bank-card { margin-top: 12px; }

@media (max-width: 480px) {
  .donate-bank-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .donate-bank-dl dt { margin-top: 12px; }
  .donate-bank-dl dt:first-child { margin-top: 0; }
  .donate-bank-account-row { margin-top: 4px; }
}

.payment-form-wrap { max-width: 520px; margin: 0 auto; }
.payment-summary-box { background: var(--bg-beige); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 28px; border: 2px solid var(--gray-200); text-align: center; }
.payment-amount-label { font-size: 0.9rem; color: var(--dark-soft); margin-bottom: 4px; }
.payment-amount-value { font-size: 2rem; font-weight: 800; color: var(--primary); margin: 0; }
.payment-card-form { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 2px solid var(--gray-200); }
.payment-secure-note { font-size: 0.9rem; color: var(--dark-soft); margin: -8px 0 20px; display: flex; align-items: center; gap: 8px; }
.payment-secure-note i { color: var(--primary); }
.form-hint { font-size: 0.8rem; color: var(--dark-soft); margin-top: 4px; }
.payment-success-box { text-align: center; padding: 48px 24px; background: var(--bg-beige); border-radius: var(--radius-lg); border: 2px solid var(--primary); }
.payment-success-icon { font-size: 4rem; color: var(--primary); margin-bottom: 16px; }
.payment-success-box h2 { font-size: 1.5rem; margin-bottom: 12px; color: var(--dark); }
.payment-success-box p { margin-bottom: 12px; color: var(--dark-soft); max-width: 480px; margin-left: auto; margin-right: auto; }
.payment-success-box p:last-of-type { margin-top: 24px; margin-bottom: 0; }
.btn-pay-submit { width: 100%; padding: 16px; font-size: 1.05rem; margin-top: 8px; }

.footer {
  background: var(--dark);
  color: var(--gray-200);
  padding: 24px 5vw 14px;
}

.footer-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 48px;
  margin-bottom: 16px;
  align-items: start;
}

.footer-social {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start; /* sit directly under left-aligned text */
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: flex-start;    /* keep icon pushed down */
  justify-content: flex-start;/* BIG change: push icon left */
  padding-top: 6px;           /* visible gap from top */
  padding-left: 8px;          /* move icon slightly further right */
  line-height: 1;
  overflow: hidden; /* keep icon inside the circle */
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
}

.footer-social-link i {
  font-size: 1.1rem; /* BIG change: clearer icon size */
  line-height: 1;
  display: inline-block;
}

.footer-social-link:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.footer-social-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 15%, #fd5949 40%, #d6249f 65%, #285AEB 100%);
  box-shadow: 0 0 0 1px rgba(214, 36, 159, 0.75), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.footer-social-linkedin {
  background: #0a66c2;
  box-shadow: 0 0 0 1px rgba(10, 102, 194, 0.7), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.footer-social-x {
  background: #000000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 4px 12px rgba(0, 0, 0, 0.55);
}

.footer-social-tiktok {
  background: linear-gradient(135deg, #25f4ee, #000000 52%, #fe2c55);
  box-shadow: 0 0 0 1px rgba(254, 44, 85, 0.7), 0 4px 14px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer a {
  color: var(--gray-200);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* Fade-in on scroll (simple CSS) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-image {
  margin: 24px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Image with caption - same height/width for all */
.image-with-caption {
  margin: 24px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-100);
}

.image-with-caption .img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.image-with-caption .img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-with-caption .image-caption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--dark-soft);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

/* Team card - image placeholder, name and description at bottom */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  background: rgba(255, 108, 12, 0.04);
}

.team-card .team-card-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-soft);
  font-size: 0.85rem;
}

.team-card .team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .team-card-body {
  padding: 20px;
}

.team-card .team-card-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-card .team-card-role {
  font-size: 0.9rem;
  color: var(--dark-soft);
  line-height: 1.4;
}

.team-cards .team-card .team-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-cards .team-card .team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image grid - 4 images per row */
.images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0 32px;
}

.images-grid .content-image,
.images-grid .image-with-caption {
  margin: 0;
}

.images-grid .image-with-caption .img-wrap {
  aspect-ratio: 4 / 3;
}

.images-grid .content-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.images-grid .content-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 40px 0;
  align-items: stretch;
}

.impact-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  padding: 22px 20px 20px;
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.impact-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #fb923c);
}

.impact-stat-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--dark-soft);
  margin-bottom: 6px;
}

.impact-stat .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 10px;
}

.impact-stat .label {
  font-size: 0.9rem;
  color: var(--dark-soft);
  line-height: 1.5;
}

.section-full {
  padding: 80px 5vw;
  width: 100%;
}

/* Contact page grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards-wrap { grid-template-columns: 1fr; }
}

/* === CONTACT — QUOTE BLOCK === */
.contact-quote { position: relative; opacity: 0; border-left: none; }
.contact-quote:not(.contact-hero-quote)::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s ease-out;
}
.contact-quote.in-view { opacity: 1; }
.contact-quote.in-view:not(.contact-hero-quote)::before { transform: scaleY(1); }
.contact-quote .quote-text { opacity: 0; transform: translateX(-18px); }
.contact-quote.in-view .quote-text { animation: contact-quote-text 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards; }
.contact-quote .contact-quote-attribution { opacity: 0; transform: translateY(10px); }
.contact-quote.in-view .contact-quote-attribution { animation: contact-quote-attribution 0.5s ease 0.5s forwards; }
@keyframes contact-quote-text { to { opacity: 1; transform: translateX(0); } }
@keyframes contact-quote-attribution { to { opacity: 1; transform: translateY(0); } }

/* Contact page: quote as top section — centered, no orange line, clear text, natural background */
.contact-hero-quote {
  padding: clamp(2.25rem, 6vw, 3.5rem) 5vw;
  text-align: center;
  border-left: none;
  background: #fafaf8;
  color: var(--dark);
}
.contact-hero-quote::before {
  display: none;
}
.contact-hero-quote-inner {
  max-width: 36rem;
  margin: 0 auto;
}
.contact-hero-quote-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--dark);
  font-weight: 700;
}
.contact-hero-quote .quote-text {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}
.contact-hero-quote .contact-quote-attribution {
  color: var(--dark-soft);
  font-style: italic;
}
.contact-hero-quote-lead {
  font-size: 1rem;
  color: var(--dark-soft);
  margin: 1rem 0 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* === CONTACT — CARDS === */
.contact-cards-wrap { grid-template-columns: repeat(3, 1fr); }
.contact-cards-wrap .contact-card {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: none;
}
.contact-cards-wrap.in-view .contact-card {
  animation: contact-card-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.12s);
}
.contact-card .card-icon {
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-cards-wrap.in-view .contact-card .card-icon {
  animation: contact-icon-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.12s + 0.15s);
}
@keyframes contact-card-in { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes contact-icon-in { to { transform: scale(1); } }

/* === CONTACT — FORM & MAP === */
.contact-section { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.contact-page-header { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: 0.5rem; text-align: center; }
.contact-page-title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin: 0 0 0.5rem; color: var(--dark); }
.contact-page-lead { font-size: 1rem; color: var(--gray-300); margin: 0; max-width: 32rem; margin-left: auto; margin-right: auto; }
.donate-pay-page-title { font-size: clamp(1.35rem, 3vw, 2rem); margin: 0 0 0.35rem; color: var(--dark); }
.donate-pay-page-lead { font-size: 0.95rem; color: var(--gray-300); margin: 0 0 1.5rem; }
.contact-message { margin-bottom: 24px; padding: 1rem 1.25rem; border-radius: var(--radius); }
.contact-message.contact-success { background: rgba(34, 197, 94, 0.15); color: var(--gray-100); border: 1px solid rgba(34, 197, 94, 0.4); }
.contact-message.contact-error { background: rgba(239, 68, 68, 0.15); color: var(--gray-100); border: 1px solid rgba(239, 68, 68, 0.4); }
.contact-cards-wrap { margin-bottom: 32px; }
.contact-form-heading,
.contact-map-heading { clip-path: inset(0 100% 0 0); transition: clip-path 0.65s cubic-bezier(0.22, 1, 0.36, 1); }
.contact-form-grid.in-view .contact-form-heading,
.contact-form-grid.in-view .contact-map-heading { clip-path: inset(0 0% 0 0); }
.contact-form-block,
.contact-map-wrap { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.contact-form-block { transition-delay: 0.1s; }
.contact-map-wrap { transition-delay: calc(var(--i, 2) * 0.1s); }
.contact-form-grid.in-view .contact-form-block,
.contact-form-grid.in-view .contact-map-wrap { opacity: 1; transform: translateY(0); }
.contact-map-heading { margin-top: 0; }
.contact-map-embed { margin-bottom: 12px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.contact-map-note { margin-top: 4px; color: var(--dark-soft); font-size: 0.9rem; }
.contact-form-grid .form-group input:focus,
.contact-form-grid .form-group textarea:focus,
.contact-form-grid .form-group select:focus { border-color: #FF6C0C; box-shadow: 0 0 0 3px rgba(255,108,12,0.15); outline: none; }

/* === CONTACT — FOOTER === */
.contact-footer-col { opacity: 0; transform: translateY(22px); }
.contact-footer.in-view .contact-footer-col { animation: contact-footer-col-in 0.7s ease-out forwards; animation-delay: calc(var(--i, 1) * 0.15s); }
@keyframes contact-footer-col-in { to { opacity: 1; transform: translateY(0); } }
.contact-footer-col a:hover { color: #FF6C0C; transform: translateX(3px); text-decoration: underline; transition: color 0.2s ease, transform 0.2s ease; }
.contact-footer-form { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-footer-form input { flex: 1; min-width: 180px; padding: 10px 14px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--white); font-family: var(--font-body); }
#contact-footer-email:focus,
.contact-footer-form input:focus { border-color: #FF6C0C; box-shadow: 0 0 0 3px rgba(255,108,12,0.15); outline: none; }
.contact-footer-p { color: var(--gray-200); font-size: 0.9rem; margin-bottom: 10px; }
.contact-footer-p-sm { margin-bottom: 12px; }
.contact-footer-mt { margin-top: 24px; }
.contact-footer-bottom { opacity: 0; }
.contact-footer.in-view .contact-footer-bottom { animation: contact-footer-col-in 0.5s ease 0.45s forwards; }

/* === CONTACT — NO-JS FALLBACK === */
body.page-contact:not(.contact-js) .contact-quote,
body.page-contact:not(.contact-js) .contact-quote .quote-text,
body.page-contact:not(.contact-js) .contact-quote .contact-quote-attribution,
body.page-contact:not(.contact-js) .contact-cards-wrap .contact-card,
body.page-contact:not(.contact-js) .contact-card .card-icon,
body.page-contact:not(.contact-js) .contact-form-heading,
body.page-contact:not(.contact-js) .contact-map-heading,
body.page-contact:not(.contact-js) .contact-form-block,
body.page-contact:not(.contact-js) .contact-map-wrap,
body.page-contact:not(.contact-js) .contact-footer-col,
body.page-contact:not(.contact-js) .contact-footer-bottom {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 0 0 0) !important;
  animation: none !important;
}
body.page-contact:not(.contact-js) .contact-quote::before { transform: scaleY(1); }

/* === CONTACT — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .contact-quote .quote-text,
  .contact-quote .contact-quote-attribution { opacity: 1; transform: none; }
  .contact-quote.in-view .quote-text,
  .contact-quote.in-view .contact-quote-attribution { animation: none; }
  .contact-cards-wrap .contact-card,
  .contact-form-block,
  .contact-map-wrap,
  .contact-footer-col { opacity: 1; transform: none; }
  .contact-cards-wrap.in-view .contact-card,
  .contact-form-grid.in-view .contact-form-block,
  .contact-form-grid.in-view .contact-map-wrap,
  .contact-footer.in-view .contact-footer-col { animation: none; }
  .contact-footer-bottom { opacity: 1; }
  .contact-footer.in-view .contact-footer-bottom { animation: none; }
}

/* === NEWS STORY (READ MORE) PAGE === */
.page-news-story .news-story-hero .page-hero-subtitle { margin-bottom: 0; }
.news-story-meta { font-size: clamp(0.9rem, 1.8vw, 1rem); opacity: 0.95; }

.news-story-article {
  padding: clamp(2.5rem, 6vw, 4.5rem) 5vw;
}

.news-story-article-inner {
  max-width: 720px;
  margin: 0 auto;
}

.news-story-featured-image {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-story-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.news-story-body {
  font-family: var(--font-body);
  color: var(--dark-soft);
  line-height: 1.75;
}

.news-story-body-p {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
}

.news-story-body-p:last-child {
  margin-bottom: 0;
}

.news-story-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-story-body a:hover {
  color: var(--primary-dark);
}

.news-story-cta-block {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.news-story-cta {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--dark-soft);
}

.news-story-cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-story-cta a:hover {
  color: var(--primary-dark);
}

.news-story-back-wrap {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.news-story-back-wrap-hero { margin-top: 1rem; }

.news-story-back:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* News story footer */
.news-story-footer-p {
  color: var(--gray-200);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-story-footer-p-sm { margin-bottom: 12px; }

.news-story-footer-mt { margin-top: 24px; }

.news-story-footer-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-story-footer-form input {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
}

.news-story-footer-form input:focus {
  border-color: #FF6C0C;
  box-shadow: 0 0 0 3px rgba(255,108,12,0.15);
  outline: none;
}

@media (max-width: 768px) {
  .news-story-article { padding-left: 4vw; padding-right: 4vw; }
  .news-story-featured-image img { aspect-ratio: 4 / 3; }
}

/* ========== Responsive: Tablet & below ========== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    gap: 0;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 14px 0;
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--gray-100);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }

  .nav-item .dropdown.dropdown-expanded {
    max-height: 400px;
    padding: 8px 0 8px 16px;
  }

  .nav-item.dropdown-open .dropdown {
    max-height: 400px;
    padding: 8px 0 8px 16px;
  }

  .dropdown a {
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-typewriter {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
  }

  .section {
    padding: 44px 20px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

/* ========== Responsive: Mobile ========== */
@media (max-width: 576px) {
  .nav-inner {
    padding: 0 16px;
    min-height: 64px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img-wrap img {
    height: 34px;
  }

  .logo {
    gap: 8px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-dots {
    bottom: 24px;
  }

  .section {
    padding: 36px 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .images-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 24px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Logo: extra-small screens */
@media (max-width: 380px) {
  .logo-text {
    font-size: 0.9rem;
  }

  .logo-img-wrap img {
    height: 32px;
  }

  .logo {
    gap: 6px;
  }
}

/* Sponsorship sub-nav */
.sponsorship-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 24px;
  padding: 0 5vw;
}

.sponsorship-subnav .btn { padding: 10px 20px; font-size: 0.95rem; }

.sponsorship-subnav .btn-outline-dark {
  background: var(--gray-100);
  color: var(--dark);
  border: 2px solid var(--gray-300);
}

.sponsorship-subnav .btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 108, 12, 0.08);
}

.sponsorship-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}

.sponsorship-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.sponsorship-info-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }

.sponsorship-info-card p { font-size: 0.9rem; color: var(--dark-soft); margin: 0; line-height: 1.5; }

.sponsor-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--bg-beige);
  border-radius: var(--radius);
}

.sponsor-filters select {
  padding: 8px 12px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 120px;
}

.children-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.child-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.child-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.child-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-200);
}

.child-card-image img { width: 100%; height: 100%; object-fit: cover; }

.child-card-body { padding: 14px 16px; }

.child-card-body .name { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.child-card-body .meta { font-size: 0.8rem; color: var(--dark-soft); }

.child-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.child-modal-overlay.open { opacity: 1; visibility: visible; }

.child-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.95);
  transition: transform 0.25s ease;
  position: relative;
}

.child-modal-overlay.open .child-modal { transform: scale(1); }

.child-modal-image { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--gray-200); position: relative; }

.child-modal-image img { width: 100%; height: 100%; object-fit: cover; }

.child-modal-body { padding: 24px; }

.child-modal-body h3 { font-size: 1.35rem; margin-bottom: 8px; color: var(--dark); }

.child-modal-body .detail-row { font-size: 0.9rem; color: var(--dark-soft); margin-bottom: 6px; }

.child-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  z-index: 1;
}

.child-modal-close:hover { background: var(--primary); }

.write-letter-cta .btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.write-letter-cta .btn-email:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

/* === SPONSORSHIP — SUBNAV === */
#sponsorship-subnav-sentinel { height: 0; pointer-events: none; }
.sponsorship-subnav-spacer { margin-top: 0; margin-bottom: 0; }
.sponsorship-subnav {
  gap: clamp(0.6rem, 2vw, 1.1rem);
  padding-left: 5vw;
  padding-right: 5vw;
}
.sponsorship-subnav.sticky {
  position: sticky;
  top: var(--navbar-height, 60px);
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
}
.sponsorship-subnav-btn {
  opacity: 0;
  transform: scale(0.88);
  animation: sponsorship-subnav-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.12s);
  animation-play-state: paused;
}
.sponsorship-subnav.in-view .sponsorship-subnav-btn { animation-play-state: running; }
.sponsorship-subnav-btn.active {
  background: #FF6C0C !important;
  color: #fff !important;
  border-color: #FF6C0C !important;
}
.sponsorship-subnav .btn-primary:hover { transform: translateY(-2px); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.sponsorship-subnav .btn-outline-dark:hover { background: #FF6C0C; color: #fff; border-color: #FF6C0C; transform: translateY(-2px); transition: transform 0.25s ease; }
.sponsorship-subnav .btn:active { transform: scale(0.97); transition: transform 0.15s ease; }
@keyframes sponsorship-subnav-in {
  to { opacity: 1; transform: scale(1); }
}

/* === SPONSORSHIP — QUOTE BLOCK === */
.sponsorship-quote { position: relative; opacity: 0; }
.sponsorship-quote { border-left: none; }
.sponsorship-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s ease-out;
}
.sponsorship-quote.in-view::before { transform: scaleY(1); }
.sponsorship-quote .quote-text { position: relative; }
.sponsorship-quote .quote-text::before {
  content: '"';
  position: absolute;
  left: -0.25em;
  top: 0;
  font-family: var(--font-heading);
  font-size: 1.5em;
  color: var(--primary);
  opacity: 0;
  transform: scale(0) rotate(-15deg);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.sponsorship-quote.in-view .quote-text::before { opacity: 1; transform: scale(1) rotate(0deg); }
.sponsorship-quote.in-view { opacity: 1; }
.sponsorship-quote.in-view .quote-text { animation: sponsorship-quote-text 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards; }
.sponsorship-quote.in-view .sponsorship-quote-attribution { animation: sponsorship-quote-attribution 0.5s ease 0.5s forwards; opacity: 0; transform: translateY(10px); }
.sponsorship-quote.in-view .sponsorship-quote-attribution::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), transparent);
  animation: sponsorship-quote-underline 0.4s ease 0.85s forwards;
}
@keyframes sponsorship-quote-underline { to { width: 45%; } }
@keyframes sponsorship-quote-text { to { opacity: 1; transform: translateX(0); } }
@keyframes sponsorship-quote-attribution { to { opacity: 1; transform: translateY(0); } }

/* === SPONSORSHIP — ABOUT SECTION === */
.sponsorship-about-section,
.sponsorship-write-section,
.sponsorship-children-section { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.sponsorship-about-heading { clip-path: inset(0 100% 0 0); transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.sponsorship-about-section.in-view .sponsorship-about-heading { clip-path: inset(0 0% 0 0); }
.sponsorship-about-intro { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease 0.2s, transform 0.65s ease 0.2s; }
.sponsorship-about-section.in-view .sponsorship-about-intro { opacity: 1; transform: translateY(0); }
.sponsorship-subheading { clip-path: inset(0 100% 0 0); transition: clip-path 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s; }
.sponsorship-about-block.in-view .sponsorship-subheading { clip-path: inset(0 0% 0 0); }
.sponsorship-about-outro { margin-top: 1rem; }
.sponsorship-about-cta-wrap { margin-top: 1.5rem; margin-bottom: 0; }

/* === SPONSORSHIP — INFO CARDS === */
.sponsorship-different-grid .sponsorship-info-card {
  opacity: 0;
  transform: translateY(22px) scale(0.92);
  transition: none;
}
.sponsorship-different-grid.in-view .sponsorship-info-card {
  animation: sponsorship-card-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.12s);
}
.sponsorship-info-card { position: relative; overflow: hidden; }
.sponsorship-info-card::after { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: #FF6C0C; transition: width 0.3s ease; }
.sponsorship-info-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); transition: transform 0.28s ease, box-shadow 0.28s ease; }
.sponsorship-info-card:hover::after { width: 100%; }
.sponsorship-info-card:hover h3 { color: #FF6C0C; transition: color 0.2s ease; }
@keyframes sponsorship-card-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === SPONSORSHIP — STEP CARDS === */
.sponsorship-steps-grid .sponsorship-step-card { opacity: 0; }
.sponsorship-steps-grid .sponsorship-step-card:nth-child(odd) { transform: translateX(-30px); }
.sponsorship-steps-grid .sponsorship-step-card:nth-child(even) { transform: translateX(30px); }
.sponsorship-steps-grid.in-view .sponsorship-step-card:nth-child(odd) { animation: sponsorship-step-odd 0.65s ease-out forwards; animation-delay: calc(var(--i, 1) * 0.15s); }
.sponsorship-steps-grid.in-view .sponsorship-step-card:nth-child(even) { animation: sponsorship-step-even 0.65s ease-out forwards; animation-delay: calc(var(--i, 1) * 0.15s); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-200); color: var(--dark);
  font-weight: 700; font-size: 0.9rem; margin-bottom: 10px;
  transform: scale(0);
  animation: sponsorship-step-badge 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.15s + 0.25s);
}
.sponsorship-steps-grid.in-view .step-number { animation-play-state: running; }
.sponsorship-step-card:hover .step-number { background: #FF6C0C; color: #fff; transform: scale(1.08); transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease; }
.sponsorship-step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 24px rgba(0,0,0,0.1); transition: transform 0.25s ease, box-shadow 0.25s ease; }
@keyframes sponsorship-step-odd { to { opacity: 1; transform: translateX(0); } }
@keyframes sponsorship-step-even { to { opacity: 1; transform: translateX(0); } }
@keyframes sponsorship-step-badge { to { transform: scale(1); } }
#sponsorship-find-child-btn { position: relative; overflow: hidden; }
#sponsorship-find-child-btn { opacity: 0; transform: scale(0.88); }
.sponsorship-about-block.in-view #sponsorship-find-child-btn { animation: sponsorship-cta-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards; }
#sponsorship-find-child-btn:hover { transform: translateY(-2px); }
#sponsorship-find-child-btn:active { transform: scale(0.97); }
@keyframes sponsorship-cta-in { to { opacity: 1; transform: scale(1); } }
@keyframes sponsorship-ripple { to { transform: scale(3); } }

/* No-JS fallback: show all sponsorship content when script has not run */
body.page-sponsorship:not(.sponsorship-js) .sponsorship-subnav-btn,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-quote,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-quote .quote-text,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-quote .sponsorship-quote-attribution,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-about-heading,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-about-intro,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-subheading,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-different-grid .sponsorship-info-card,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-steps-grid .sponsorship-step-card,
body.page-sponsorship:not(.sponsorship-js) .step-number,
body.page-sponsorship:not(.sponsorship-js) #sponsorship-find-child-btn,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-write-heading,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-write-block,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-write-p,
body.page-sponsorship:not(.sponsorship-js) #sponsorship-email-cta,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-write-note,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-filter-item,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-children-title,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-children-subtitle,
body.page-sponsorship:not(.sponsorship-js) .children-grid .child-card,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-footer-col,
body.page-sponsorship:not(.sponsorship-js) .sponsorship-footer-bottom {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 0 0 0) !important;
  animation: none !important;
  animation-play-state: running !important;
}
body.page-sponsorship:not(.sponsorship-js) .sponsorship-quote::before { transform: scaleY(1); }
body.page-sponsorship:not(.sponsorship-js) .sponsorship-quote .quote-text::before { opacity: 1; transform: scale(1) rotate(0deg); }

/* === SPONSORSHIP — WRITE A LETTER === */
.sponsorship-write-block {
  background: rgba(255,108,12,0.04);
  border: 1px solid rgba(255,108,12,0.12);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.sponsorship-write-envelope {
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: clamp(4rem, 8vw, 7rem);
  color: rgba(255,108,12,0.08);
  pointer-events: none;
}
.sponsorship-write-heading { clip-path: inset(0 100% 0 0); transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.sponsorship-write-section.in-view .sponsorship-write-heading { clip-path: inset(0 0% 0 0); }
.sponsorship-write-block { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s; }
.sponsorship-write-section.in-view .sponsorship-write-block { opacity: 1; transform: translateY(0); }
.sponsorship-write-p { opacity: 0; }
.sponsorship-write-section.in-view .sponsorship-write-p { animation: sponsorship-write-p 0.6s ease forwards; animation-delay: calc(var(--i, 1) * 0.15s); }
@keyframes sponsorship-write-p { to { opacity: 1; } }
.write-letter-cta .btn-email { border-radius: 99px; }
#sponsorship-email-cta { opacity: 0; transform: scale(0.88); }
.sponsorship-write-section.in-view #sponsorship-email-cta { animation: sponsorship-cta-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards; }
#sponsorship-email-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,108,12,0.35); }
#sponsorship-email-cta:hover i { margin-left: 3px; transition: margin 0.25s ease; }
#sponsorship-email-cta:active { transform: scale(0.97); }
.sponsorship-write-section.in-view #sponsorship-email-cta:not(.clicked) {
  animation: sponsorship-cta-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards,
             sponsorship-email-pulse 2.5s ease-in-out 1.5s infinite;
}
.sponsorship-write-section.in-view #sponsorship-email-cta.clicked {
  animation: sponsorship-cta-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards;
}
@keyframes sponsorship-email-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,108,12,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,108,12,0); }
}
.sponsorship-write-note { font-size: 0.8rem; color: #888; font-style: italic; font-family: var(--font-body); opacity: 0; }
.sponsorship-write-section.in-view .sponsorship-write-note { animation: sponsorship-write-p 0.5s ease 0.5s forwards; }

/* === SPONSORSHIP — FILTERS === */
.sponsorship-filters-wrap { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sponsorship-filter-item {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--i, 1) * 0.1s);
}
.sponsorship-filters-wrap.in-view .sponsorship-filter-item { opacity: 1; transform: translateY(0); }
.sponsorship-filter-item select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 120px;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 99px;
  background: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.825rem, 1.6vw, 0.95rem);
}
.sponsorship-filter-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--dark-soft); }
.sponsorship-filter-item select:focus { border-color: #FF6C0C; box-shadow: 0 0 0 3px rgba(255,108,12,0.15); outline: none; transition: border 0.2s ease, box-shadow 0.2s ease; }
.sponsorship-filter-item select:hover { border-color: #ccc; transform: translateY(-1px); transition: border 0.2s ease, transform 0.2s ease; }
.sponsorship-filter-item.has-value select { border-color: #FF6C0C; background: rgba(255,108,12,0.06); color: #FF6C0C; }
#reset-filters { display: none; }
.sponsorship-filters-wrap.filters-active #reset-filters { display: inline-flex; }
.no-results-message {
  text-align: center; padding: 2rem; color: var(--dark-soft);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.no-results-message:not([hidden]) { opacity: 1; transform: translateY(0); }
.no-results-message i { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; display: block; }
.no-results-message p { margin: 0; }

/* === SPONSORSHIP — CHILD CARDS === */
.sponsorship-children-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); clip-path: inset(0 100% 0 0); transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.sponsorship-children-section.in-view .sponsorship-children-title { clip-path: inset(0 0% 0 0); }
.sponsorship-children-subtitle { font-size: clamp(0.875rem, 2vw, 1.05rem); opacity: 0; transform: translateY(var(--slide-dist, 26px)); transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s; }
.sponsorship-children-section.in-view .sponsorship-children-subtitle { opacity: 1; transform: translateY(0); }
.children-grid .child-card {
  opacity: 0;
  transform: translateY(20px) scale(0.93);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.children-grid.in-view .child-card { animation: sponsorship-child-card-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: calc(var(--i, 1) * 0.1s); }
.child-card { transition: opacity 0.25s ease, transform 0.25s ease; }
.child-card.card-hiding { opacity: 0; transform: scale(0.97); pointer-events: none; }
.child-card.card-showing { opacity: 0; transform: scale(0.97); }
.child-card.card-showing.card-showing-visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .child-card { transition: none; }
}
.child-card-body { display: flex; flex-direction: column; flex-grow: 1; }
.child-card-cta { margin-top: auto; min-height: 44px; }
.child-card-image { aspect-ratio: 3 / 4; }
.child-card-image img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.child-card:hover { transform: translateY(-7px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.child-card:hover .name { color: #FF6C0C; transition: color 0.2s ease; }
.child-card-image { overflow: hidden; }
.child-card:hover .child-card-image img { transform: scale(1.06); }
.child-card-image img { transition: transform 0.4s ease; }
.child-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,108,12,0.12);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.child-card:hover .child-card-image::after { opacity: 1; }
.child-card-image { position: relative; }
.child-card .btn-outline-dark:hover { background: #FF6C0C; color: #fff; border-color: #FF6C0C; transform: translateY(-1px); transition: transform 0.22s ease; }
.child-card .btn-outline-dark:active { transform: scale(0.97); }

/* === SPONSORSHIP — MODAL === */
.child-modal-overlay.modal-open {
  opacity: 1;
  visibility: visible;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
}
.child-modal-overlay.modal-open .child-modal.sponsorship-modal-visible {
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.child-modal {
  transform: scale(0.88) translateY(20px);
  opacity: 0;
  max-width: clamp(320px, 90vw, 680px);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.child-modal-body { padding: clamp(1.25rem, 3vw, 2rem); display: flex; flex-direction: column; }
.child-modal-image img { aspect-ratio: 3 / 4; object-fit: cover; height: 100%; }
.sponsorship-modal-name { font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.5rem; }
.sponsorship-modal-detail { opacity: 0; }
.child-modal-overlay.modal-open .sponsorship-modal-detail { animation: sponsorship-modal-detail 0.4s ease forwards; animation-delay: calc(var(--i, 1) * 0.08s); }
@keyframes sponsorship-modal-detail { to { opacity: 1; } }
.child-modal-overlay.modal-open .child-modal-image img { animation: sponsorship-modal-img-settle 0.5s ease-out forwards; }
@keyframes sponsorship-modal-img-settle { to { transform: scale(1); } }
.child-modal-image img { transform: scale(1.06); }
.sponsorship-modal-cta-wrap .btn { width: 100%; border-radius: 99px; margin-top: auto; }
.sponsorship-modal-cta-wrap .btn { opacity: 0; transform: scale(0.88); }
.child-modal-overlay.modal-open .sponsorship-modal-cta-wrap .btn { animation: sponsorship-cta-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards; }
.child-modal-close { width: 36px; height: 36px; background: rgba(0,0,0,0.08); color: var(--dark); }
.child-modal-close:hover { background: rgba(255,108,12,0.12); color: #FF6C0C; transform: rotate(90deg); transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.child-modal-close:focus-visible { outline: 2px solid #FF6C0C; outline-offset: 2px; }

/* === SPONSORSHIP — FOOTER === */
.sponsorship-footer-col { opacity: 0; transform: translateY(22px); }
.sponsorship-footer.in-view .sponsorship-footer-col { animation: sponsorship-footer-col-in 0.7s ease-out forwards; animation-delay: calc(var(--i, 1) * 0.15s); }
@keyframes sponsorship-footer-col-in { to { opacity: 1; transform: translateY(0); } }
.sponsorship-footer-col a:hover { color: #FF6C0C; transform: translateX(3px); text-decoration: underline; transition: color 0.2s ease, transform 0.2s ease; }
.sponsorship-footer-form { display: flex; gap: 8px; flex-wrap: wrap; }
.sponsorship-footer-form input { flex: 1; min-width: 180px; padding: 10px 14px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--white); font-family: var(--font-body); }
.sponsorship-footer-col .sponsorship-footer-p { color: var(--gray-200); font-size: 0.9rem; margin-bottom: 10px; }
.sponsorship-footer-col .sponsorship-footer-p.mb-sm { margin-bottom: 8px; }
.sponsorship-footer-col .sponsorship-footer-mt { margin-top: 16px; }
#sponsorship-footer-email:focus { border-color: #FF6C0C; box-shadow: 0 0 0 3px rgba(255,108,12,0.15); outline: none; }
.sponsorship-footer-bottom { opacity: 0; }
.sponsorship-footer.in-view .sponsorship-footer-bottom { animation: sponsorship-footer-col-in 0.5s ease 0.45s forwards; }

/* === SPONSORSHIP — RESPONSIVE === */
@media (max-width: 480px) {
  .sponsorship-subnav { flex-direction: column; }
  .sponsorship-subnav-btn { width: 100%; }
  .sponsorship-steps-grid .sponsorship-step-card:nth-child(odd),
  .sponsorship-steps-grid .sponsorship-step-card:nth-child(even) { transform: translateY(20px); }
  .sponsorship-steps-grid.in-view .sponsorship-step-card { animation: sponsorship-step-mobile 0.65s ease-out forwards; animation-delay: calc(var(--i, 1) * 0.07s); }
  .children-grid { grid-template-columns: 1fr; }
  .sponsorship-filters-wrap { flex-direction: column; }
  .sponsorship-filter-item select { width: 100%; }
  .child-modal { grid-template-columns: 1fr; width: 100vw; max-width: none; height: 100dvh; border-radius: 0; overflow-y: auto; }
  .child-modal-image { height: 220px; }
  .child-modal-image img { height: 100%; aspect-ratio: auto; }
}
@keyframes sponsorship-step-mobile { to { opacity: 1; transform: translateY(0); } }

/* === SPONSORSHIP — REDUCED MOTION === */
@media (prefers-reduced-motion: no-preference) {
  .sponsorship-subnav-btn { animation: sponsorship-subnav-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .sponsorship-quote.in-view .quote-text { animation: sponsorship-quote-text 0.7s ease 0.2s forwards; }
  .sponsorship-quote.in-view .sponsorship-quote-attribution { animation: sponsorship-quote-attribution 0.5s ease 0.5s forwards; }
  .sponsorship-different-grid.in-view .sponsorship-info-card { animation: sponsorship-card-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .sponsorship-steps-grid.in-view .sponsorship-step-card { animation-duration: 0.65s; }
  .sponsorship-steps-grid.in-view .step-number { animation: sponsorship-step-badge 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .children-grid.in-view .child-card { animation: sponsorship-child-card-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .child-modal-overlay.modal-open .child-modal.sponsorship-modal-visible { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; }
}
@media (prefers-reduced-motion: reduce) {
  .sponsorship-subnav-btn { animation: none; opacity: 1; transform: scale(1); }
  .sponsorship-quote .quote-text, .sponsorship-quote .sponsorship-quote-attribution { opacity: 1; transform: none; }
  .sponsorship-quote.in-view .quote-text, .sponsorship-quote.in-view .sponsorship-quote-attribution { animation: none; }
  .sponsorship-different-grid .sponsorship-info-card, .sponsorship-steps-grid .sponsorship-step-card { opacity: 1; transform: none; }
  .children-grid .child-card { opacity: 1; transform: none; }
  .child-modal-overlay.modal-open { backdrop-filter: none; }
  .sponsorship-footer-col { opacity: 1; transform: none; }
  .sponsorship-footer.in-view .sponsorship-footer-col { animation: none; }
}

/* Program responsibility cards - two rectangle cards per program page */
.program-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.program-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-200);
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-card-body {
  padding: 20px 24px 24px;
  flex: 1;
}

.program-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.program-card-body p {
  font-size: 0.95rem;
  color: var(--dark-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .program-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0 32px;
  }
}

/* ==================== OUR WORK PAGE ==================== */

/* === OUR WORK — HERO === */
.our-work-hero {
  background-image: none;
  min-height: 90vh;
  overflow: hidden;
}

.our-work-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../image/New4.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.our-work-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.10) 100%);
}

.our-work-hero .page-hero-inner {
  z-index: 2;
}

@media (prefers-reduced-motion: no-preference) {
  .our-work-hero .hero-bg {
    will-change: transform;
    animation: our-work-kenburns 10s ease-in-out infinite alternate;
  }
}

@keyframes our-work-kenburns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.08) translateX(15px); }
}

.our-work-hero-title,
.our-work-hero-subtitle {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .our-work-hero-title {
    animation: our-work-hero-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  }
  .our-work-hero-subtitle {
    animation: our-work-hero-in-sub 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
  }
}

@keyframes our-work-hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes our-work-hero-in-sub {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.our-work-hero .page-hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

/* === OUR WORK — QUOTE === */
.our-work-quote .quote-text {
  position: relative;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.our-work-quote .quote-text::before,
.our-work-quote .quote-text::after {
  content: '"';
  position: absolute;
  font-size: 2.5em;
  opacity: 0;
  transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.3s;
  color: var(--primary);
}

.our-work-quote .quote-text::before {
  left: -0.3em;
  transform: translateX(-20px);
}

.our-work-quote .quote-text::after {
  right: -0.3em;
  transform: translateX(20px);
}

.our-work-quote.our-work-quote-animated .quote-text {
  opacity: 1;
  transform: scale(1);
}

.our-work-quote.our-work-quote-animated .quote-text::before,
.our-work-quote.our-work-quote-animated .quote-text::after {
  opacity: 0.6;
  transform: translateX(0);
}

.our-work-quote-attribution {
  position: relative;
  display: inline-block;
}

.our-work-quote-attribution::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.5s ease-out 0.3s;
}

.our-work-quote.our-work-quote-animated .our-work-quote-attribution::after {
  width: 60%;
}

.our-work-quote .quote-text {
  opacity: 0;
  transform: scale(0.97);
}

/* === OUR WORK — SUBNAV === */
.our-work-subnav {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-top: 0;
  padding: 12px 5vw;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: auto;
  overflow-y: hidden;
}

.our-work-subnav::-webkit-scrollbar {
  display: none;
}

.our-work-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.our-work-pill:hover,
.our-work-pill:focus-visible {
  background: rgba(255, 108, 12, 0.12);
  color: var(--primary);
  transform: translateY(-2px);
}

.our-work-pill.active,
.our-work-pill[aria-current="true"] {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(255, 108, 12, 0.35);
}

@media (min-width: 1024px) {
  .our-work-subnav {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }
}

/* === OUR WORK — OVERVIEW CARDS === */
.our-work-overview-title {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.our-work-overview-section.our-work-overview-animated .our-work-overview-title {
  clip-path: inset(0 0% 0 0);
}

.our-work-jump-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
  clip-path: none;
}
.our-work-jump-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.our-work-program-jump {
  min-width: 240px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: auto;
  -webkit-appearance: menulist;
}
.our-work-program-jump:hover,
.our-work-program-jump:focus {
  border-color: var(--primary-dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.2);
}

.our-work-overview-card {
  opacity: 0;
  transform: translateY(30px);
}

.our-work-overview-card .card-image {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.our-work-overview-card .card-image img {
  transition: transform 0.5s ease;
}

.our-work-overview-card:hover .card-image img,
.our-work-overview-card:focus-visible .card-image img {
  transform: scale(1.07);
}

.our-work-overview-card .card-image::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.our-work-overview-card:hover .card-image::after,
.our-work-overview-card:focus-visible .card-image::after {
  transform: translateY(0);
}

.our-work-overview-card:hover,
.our-work-overview-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.our-work-learn-more {
  display: inline-block;
  transition: transform 0.2s ease;
}

.our-work-overview-card:hover .our-work-learn-more,
.our-work-overview-card:focus-visible .our-work-learn-more {
  transform: translateX(4px);
}

.our-work-overview-section.our-work-overview-animated .our-work-overview-card {
  animation: our-work-card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes our-work-card-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.our-work-cta-btn:hover,
.our-work-cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 93, 0, 0.4);
}

.our-work-cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cards-grid-work .card h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.cards-grid-work .card p {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}

/* === OUR WORK — PROGRAM SECTIONS === */
.our-work-program-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s ease-out;
}

.our-work-program-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.15s, transform 0.6s ease-out 0.15s;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}

.section.our-work-program-section.our-work-program-visible .our-work-program-h2 {
  clip-path: inset(0 0% 0 0);
}
.section.our-work-program-section {
  scroll-margin-top: 100px;
}

/* Reduce spacing between Our Work program sections */
.our-work-overview-section.section {
  padding-bottom: 28px;
}
.section.our-work-program-section {
  padding-top: 28px;
  padding-bottom: 28px;
}
@media (max-width: 768px) {
  .section.our-work-program-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

.section.our-work-program-section.our-work-program-visible .our-work-program-intro {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  main > .section.our-work-program-section:nth-child(odd) .program-card {
    flex-direction: row;
  }

  main > .section.our-work-program-section:nth-child(even) .program-card {
    flex-direction: row-reverse;
  }

  .our-work-program-section .program-card-image {
    flex: 0 0 45%;
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }
}

@media (max-width: 1023px) {
  .our-work-program-section .program-card {
    flex-direction: column;
  }
}

.our-work-program-section .program-card {
  opacity: 0;
  transform: translateX(-40px);
}

.our-work-program-section .program-card:nth-child(2) {
  transform: translateX(40px);
}

.our-work-program-section.our-work-program-visible .program-card:nth-child(1) {
  animation: our-work-program-card-left 0.7s ease-out 0.1s forwards;
}

.our-work-program-section.our-work-program-visible .program-card:nth-child(2) {
  animation: our-work-program-card-right 0.7s ease-out 0.25s forwards;
}

@keyframes our-work-program-card-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes our-work-program-card-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.our-work-program-section .program-card-image {
  position: relative;
  overflow: hidden;
}

.our-work-program-section .program-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 108, 12, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.our-work-program-section .program-card:hover .program-card-image::after,
.our-work-program-section .program-card:focus-visible .program-card-image::after {
  opacity: 1;
}

.our-work-program-section .program-card-image img {
  transition: transform 0.4s ease;
}

.our-work-program-section .program-card:hover .program-card-image img,
.our-work-program-section .program-card:focus-visible .program-card-image img {
  transform: scale(1.06);
}

.our-work-program-section .program-card-body {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-work-program-section .program-card:hover .program-card-body,
.our-work-program-section .program-card:focus-visible .program-card-body {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.our-work-program-cta {
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
  text-decoration: none;
  color: var(--primary);
}

.our-work-program-cta:hover,
.our-work-program-cta:focus-visible {
  background-size: 100% 2px;
}

.our-work-program-section .program-card-body h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* === OUR WORK — RESPONSIVE === */
@media (max-width: 1023px) {
  .our-work-hero {
    min-height: 100svh;
  }
}

@media (max-width: 480px) {
  .our-work-overview-section.section,
  .our-work-program-section.section {
    padding: clamp(24px, 6vw, 48px) clamp(16px, 4vw, 24px);
  }

  .our-work-overview-card:active {
    transform: scale(0.98);
  }
}

.cards-grid.cards-grid-work {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
  .cards-grid.cards-grid-work {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cards-grid.cards-grid-work {
    grid-template-columns: 1fr;
  }

  .our-work-program-section .program-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* === OUR WORK — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .our-work-hero .hero-bg,
  .our-work-hero-title,
  .our-work-hero-subtitle {
    animation: none !important;
  }

  .our-work-hero-title,
  .our-work-hero-subtitle {
    opacity: 1;
    transform: none;
  }

  .our-work-overview-title,
  .our-work-overview-card,
  .our-work-program-h2,
  .our-work-program-intro,
  .our-work-program-section .program-card {
    animation: none !important;
    transition: opacity 0.4s ease !important;
  }

  .our-work-overview-section.our-work-overview-animated .our-work-overview-title {
    clip-path: none;
  }

  .our-work-overview-card {
    opacity: 0;
  }

  .our-work-overview-section.our-work-overview-animated .our-work-overview-card {
    opacity: 1;
    transform: none;
  }

  .our-work-program-h2 {
    clip-path: none;
  }

  .our-work-program-intro {
    opacity: 0;
  }

  .our-work-program-section.our-work-program-visible .our-work-program-h2,
  .our-work-program-section.our-work-program-visible .our-work-program-intro {
    opacity: 1;
    transform: none;
  }

  .our-work-program-section .program-card {
    opacity: 0;
    transform: none;
  }

  .our-work-program-section.our-work-program-visible .program-card {
    opacity: 1;
  }
}

/* ==================== HOME PAGE (non-hero sections) ==================== */

/* Initial state: animatable elements start hidden; .in-view triggers keyframes */
.home-quote,
.home-quote .quote-text,
.home-quote .quote-attribution,
.home-programs-title,
.home-programs-subtitle,
.home-program-card,
.home-programs-cta,
.home-impact-title,
.home-impact-subtitle,
.home-impact-stat,
.home-news-subtitle,
.home-news-card,
.home-news-date,
.home-news-cta,
.home-newsletter-title,
.home-newsletter-subtitle,
.home-newsletter-form,
.home-cta-section .section-title,
.home-cta-section .section-subtitle,
.home-cta-btn,
.home-footer-col,
.home-footer-bottom {
  opacity: 0;
  transform: translateY(var(--slide-dist, 30px));
}
/* News heading stays visible - not in the fade-in list */
.home-news-section .home-news-title-visible { opacity: 1 !important; visibility: visible !important; transform: none !important; }

/* === HOME — QUOTE BLOCK === */
.home-quote { --slide-dist: 30px; position: relative; }
.home-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: none;
}
.home-quote.in-view::before {
  transition: transform 0.6s ease-out;
  transform: scaleY(1);
}
@media (prefers-reduced-motion: no-preference) {
  .home-quote.in-view .quote-text {
    animation: home-quote-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .home-quote.in-view .quote-attribution {
    animation: home-quote-attribution-in 0.5s ease-out 0.55s forwards;
  }
}
.home-quote .quote-text { transform: translateX(-20px); }
@keyframes home-quote-text-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes home-quote-attribution-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-quote-attribution { position: relative; display: inline-block; }
.home-quote-attribution::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: none;
}
.home-quote.in-view .home-quote-attribution::after {
  transition: background-size 0.4s ease 0.9s;
  background-size: 50% 100%;
}
/* Parent must become visible when in view so children can show */
.home-quote.in-view { opacity: 1; }
.home-quote.quote-block .quote-text { font-size: clamp(1rem, 2.5vw, 1.4rem); }

/* === HOME — OUR WORK CARDS === */
.home-programs-section .section-title,
.home-impact-section .section-title,
.home-news-section .section-title,
.home-newsletter-section .section-title,
.home-cta-section .section-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}
.home-programs-section .section-subtitle,
.home-impact-section .section-subtitle,
.home-news-section .section-subtitle,
.home-newsletter-section .section-subtitle,
.home-cta-section .section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}
.home-programs-title { clip-path: inset(0 100% 0 0); transition: none; }
.home-programs-section.in-view .home-programs-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .home-programs-section.in-view .home-programs-subtitle {
    animation: home-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .home-programs-section.in-view .home-program-card {
    animation: home-card-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 0.12s);
  }
}
@keyframes home-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes home-card-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-program-card .card-image {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.home-program-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 108, 12, 0.12);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.home-program-card:hover .card-image::after,
.home-program-card:focus-within .card-image::after { opacity: 1; }
.home-program-card .card-image img { transition: transform 0.5s ease; }
.home-program-card:hover .card-image img,
.home-program-card:focus-within .card-image img { transform: scale(1.07); }
.home-program-card { position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.home-program-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.home-program-card:hover::after,
.home-program-card:focus-within::after { transform: translateY(0); }
.home-program-card:hover,
.home-program-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.home-explore-link { display: inline-block; transition: transform 0.2s ease; }
.home-program-card:hover .home-explore-link,
.home-program-card:focus-within .home-explore-link { transform: translateX(5px); }
.home-programs-cta {
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
  text-decoration: none;
  color: var(--primary);
}
.home-programs-cta:hover,
.home-programs-cta:focus-visible { background-size: 100% 2px; }
.home-programs-section.in-view .home-programs-title,
.home-programs-section.in-view .home-programs-subtitle,
.home-programs-section.in-view .home-program-card,
.home-programs-section.in-view .home-programs-cta {
  opacity: 1;
  transform: none;
}

/* === HOME — IMPACT STATS === */
.home-impact-title { clip-path: inset(0 100% 0 0); transition: none; }
.home-impact-section.in-view .home-impact-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .home-impact-section.in-view .home-impact-subtitle {
    animation: home-fade-up 0.6s ease-out 0.2s forwards;
  }
  .home-impact-section.in-view .home-impact-stat {
    animation: home-impact-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
}
@keyframes home-impact-pop {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.impact-stat .number { font-size: clamp(1.8rem, 5vw, 3rem); }
.home-impact-stat { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.home-impact-stat:hover,
.home-impact-stat:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.home-impact-stat:hover::before { opacity: 1; }
.home-impact-section.in-view .home-impact-title,
.home-impact-section.in-view .home-impact-subtitle,
.home-impact-section.in-view .home-impact-stat {
  opacity: 1;
  transform: none;
}

/* News and Stories heading: always visible (no scroll animation) */
.home-news-section .home-news-title-visible,
.home-news-section .home-news-title.home-news-title-visible {
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: none !important;
  transform: none !important;
}
.home-news-title { clip-path: inset(0 100% 0 0); transition: none; }
.home-news-section.in-view .home-news-title:not(.home-news-title-visible) {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .home-news-section.in-view .home-news-subtitle {
    animation: home-fade-up 0.6s ease-out 0.2s forwards;
  }
  .home-news-section.in-view .home-news-card:nth-child(odd) {
    animation: home-news-left 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
  .home-news-section.in-view .home-news-card:nth-child(even) {
    animation: home-news-right 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
  .home-news-section.in-view .home-news-date {
    animation: home-news-date-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.15s + 0.3s);
  }
}
@keyframes home-news-left {
  from { opacity: 0; transform: translateX(-35px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes home-news-right {
  from { opacity: 0; transform: translateX(35px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes home-news-date-pop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
.home-news-card .image-with-caption { overflow: hidden; position: relative; }
.home-news-card .img-wrap img { transition: transform 0.45s ease; }
.home-news-card .image-with-caption .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.home-news-card:hover .image-with-caption .img-wrap::after,
.home-news-card:focus-within .image-with-caption .img-wrap::after { opacity: 1; }
.home-news-card .image-with-caption .img-wrap { position: relative; }
.home-news-card:hover .img-wrap img,
.home-news-card:focus-within .img-wrap img { transform: scale(1.06); }
.home-news-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.home-news-card:hover,
.home-news-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.home-news-link { display: inline-block; transition: color 0.2s ease, transform 0.2s ease; }
.home-news-card:hover .home-news-link,
.home-news-card:focus-within .home-news-link {
  color: var(--primary);
  transform: translateX(4px);
}
.home-news-section.in-view .home-news-date {
  opacity: 1;
  transform: none;
}
/* Date badge: pill style for story cards (dynamic content) */
.home-news-date {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 108, 12, 0.1);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--dark-soft);
  margin-bottom: 10px;
}
/* Image area: consistent spacing and radius for dynamic story cards */
.home-news-card .home-news-card-image {
  margin: -32px -24px 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
/* View all stories link below grid */
.home-news-cta {
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}
.home-news-cta:hover,
.home-news-cta:focus-visible { background-size: 100% 2px; }

/* === HOME — NEWSLETTER === */
.home-newsletter-title { clip-path: inset(0 100% 0 0); transition: none; }
.home-newsletter-section.in-view .home-newsletter-title {
  transition: clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .home-newsletter-section.in-view .home-newsletter-subtitle {
    animation: home-fade-up 0.6s ease-out 0.2s forwards;
  }
  .home-newsletter-section.in-view .home-newsletter-form {
    animation: home-newsletter-form-in 0.6s ease-out 0.35s forwards;
  }
}
@keyframes home-newsletter-form-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.home-newsletter-form .form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-newsletter-form .form-group input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-newsletter-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.home-newsletter-btn:hover,
.home-newsletter-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 93, 0, 0.4);
}
.home-newsletter-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
@keyframes home-newsletter-bounce {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.home-newsletter-section.in-view .home-newsletter-title,
.home-newsletter-section.in-view .home-newsletter-subtitle,
.home-newsletter-section.in-view .home-newsletter-form {
  opacity: 1;
  transform: none;
}

/* === HOME — CTA SECTION === */
.home-cta-section { opacity: 0; transition: opacity 0.8s ease; }
.home-cta-section.in-view { opacity: 1; }
.home-cta-section.in-view .home-cta-title {
  animation: home-fade-up 0.7s ease-out 0.15s forwards;
}
.home-cta-section.in-view .home-cta-subtitle {
  animation: home-fade-up 0.6s ease-out 0.3s forwards;
}
@media (prefers-reduced-motion: no-preference) {
  .home-cta-section.in-view .home-cta-btn {
    animation: home-cta-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
}
@keyframes home-cta-pop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.home-cta-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.home-cta-section .btn-primary.home-cta-btn:hover,
.home-cta-section .btn-primary.home-cta-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(229, 93, 0, 0.45);
  background: var(--primary-light);
}
.home-cta-section .btn-outline.home-cta-btn:hover,
.home-cta-section .btn-outline.home-cta-btn:focus-visible {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.home-cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.home-cta-section.in-view .home-cta-title,
.home-cta-section.in-view .home-cta-subtitle,
.home-cta-section.in-view .home-cta-btn {
  opacity: 1;
  transform: none;
}

/* === HOME — FOOTER === */
.home-footer-col { opacity: 0; transform: translateY(25px); }
.home-footer-bottom { opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .home-footer.in-view .home-footer-col {
    animation: home-footer-col-in 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
  .home-footer.in-view .home-footer-bottom {
    animation: home-fade-up 0.5s ease-out 0.5s forwards;
  }
}
@keyframes home-footer-col-in {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-footer a {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.home-footer a:hover,
.home-footer a:focus-visible {
  color: var(--primary);
  transform: translateX(3px);
  background-size: 100% 1px;
}
.home-footer-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
}
.home-footer-inner,
.home-footer-inner p,
.home-footer-inner a { font-size: clamp(0.8rem, 1.5vw, 0.95rem); }
.home-footer.in-view .home-footer-col,
.home-footer.in-view .home-footer-bottom {
  opacity: 1;
  transform: none;
}

/* === HOME — RESPONSIVE === */
@media (max-width: 480px) {
  .home-quote,
  .home-program-card,
  .home-impact-stat,
  .home-news-card,
  .home-footer-col { --slide-dist: 18px; }
  .home-program-card:hover,
  .home-program-card:focus-within,
  .home-news-card:hover,
  .home-news-card:focus-within,
  .home-impact-stat:hover { transform: none; }
  .home-program-card:active,
  .home-news-card:active,
  .home-impact-stat:active { transform: scale(0.98); }
}
@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
  .home-news-section.in-view .home-news-card:nth-child(odd),
  .home-news-section.in-view .home-news-card:nth-child(even) {
    animation-name: home-card-up;
    animation-duration: 0.7s;
  }
}
.cards-grid.cards-grid-work { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) {
  .cards-grid.cards-grid-work { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cards-grid.cards-grid-work { grid-template-columns: 1fr; }
}
.impact-stats { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .impact-stats { grid-template-columns: 1fr; }
}
.home-news-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) {
  .home-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* === HOME — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .home-quote::before,
  .home-quote .quote-text,
  .home-quote .quote-attribution,
  .home-quote-attribution::after,
  .home-programs-title,
  .home-programs-subtitle,
  .home-program-card,
  .home-impact-title,
  .home-impact-subtitle,
  .home-impact-stat,
  .home-news-subtitle,
  .home-news-card,
  .home-news-date,
  .home-news-cta,
  .home-newsletter-title,
  .home-newsletter-subtitle,
  .home-newsletter-form,
  .home-cta-section .section-title,
  .home-cta-section .section-subtitle,
  .home-cta-btn,
  .home-footer-col,
  .home-footer-bottom { animation: none !important; transition: opacity 0.4s ease !important; }
  .home-news-section .home-news-title-visible { opacity: 1 !important; visibility: visible !important; }
  .home-quote.in-view .quote-text,
  .home-quote.in-view .quote-attribution,
  .home-programs-section.in-view .home-programs-title,
  .home-programs-section.in-view .home-programs-subtitle,
  .home-programs-section.in-view .home-program-card,
  .home-impact-section.in-view .home-impact-title,
  .home-impact-section.in-view .home-impact-subtitle,
  .home-impact-section.in-view .home-impact-stat,
  .home-news-section.in-view .home-news-subtitle,
  .home-news-section.in-view .home-news-card,
  .home-news-section.in-view .home-news-date,
  .home-news-section.in-view .home-news-cta,
  .home-newsletter-section.in-view .home-newsletter-title,
  .home-newsletter-section.in-view .home-newsletter-subtitle,
  .home-newsletter-section.in-view .home-newsletter-form,
  .home-cta-section.in-view .home-cta-title,
  .home-cta-section.in-view .home-cta-subtitle,
  .home-cta-section.in-view .home-cta-btn,
  .home-footer.in-view .home-footer-col,
  .home-footer.in-view .home-footer-bottom {
    opacity: 1;
    transform: none;
  }
  .home-quote.in-view::before { transform: scaleY(1); }
  .home-quote.in-view .home-quote-attribution::after { background-size: 50% 2px; }
  .home-quote.in-view { opacity: 1; }
}

/* ==================== ABOUT PAGE (sections 2–8, hero unchanged) ==================== */
/* Tight spacing: minimal gaps between sections, no irrelevant whitespace */
.section.about-snippet {
  padding: 28px 5vw 32px;
}
@media (max-width: 768px) {
  .section.about-snippet { padding: 20px 5vw 24px; }
}
@media (max-width: 480px) {
  .section.about-snippet { padding: 16px 4vw 20px; }
}
.about-snippet .about-mission-section,
.about-snippet .about-objectives-section,
.about-snippet .about-values-section,
.about-snippet .about-team-section {
  margin-bottom: 0;
}
.about-snippet .about-cta-section {
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 16px;
}
.about-block-spacer { margin-top: 0.5rem; height: 0; overflow: hidden; }
.about-snippet .cards-grid.about-mission-cards { margin-top: 12px; gap: 14px; }
.about-snippet .cards-grid.about-objectives-grid { margin-top: 12px; gap: 14px; }
.about-snippet .cards-grid.about-values-grid { margin-top: 12px; gap: 14px; }
.about-snippet .cards-grid.about-team-cards { margin-top: 12px; gap: 14px; }
.about-snippet .section-title { margin-bottom: 6px; }
.about-snippet .section-subtitle { margin-bottom: 14px; }
.about-quote {
  padding: 20px 5vw;
}
@media (max-width: 480px) {
  .about-quote { padding: 14px 4vw; }
}

.about-quote,
.about-quote .quote-text,
.about-quote .quote-attribution,
.about-mission-title,
.about-mission-card,
.about-objectives-title,
.about-objectives-card,
.about-values-title,
.about-values-card,
.about-team-title,
.about-team-subtitle,
.about-team-card,
.about-cta-btn,
.about-footer-col,
.about-footer-bottom {
  opacity: 0;
  transform: translateY(var(--slide-dist, 28px));
}
.about-block-spacer { margin-top: clamp(1.25rem, 3vw, 2.5rem); }

/* === ABOUT — QUOTE BLOCK === */
.about-quote { --slide-dist: 28px; position: relative; }
.about-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: none;
}
.about-quote.in-view::before {
  transition: transform 0.55s ease-out;
  transform: scaleY(1);
}
.about-quote .quote-text { position: relative; }
.about-quote .quote-text::before {
  content: '"';
  position: absolute;
  left: -0.15em;
  top: -0.05em;
  font-family: var(--font-display);
  font-size: 1.4em;
  color: var(--primary);
  opacity: 0.85;
  transform: scale(0) rotate(-15deg);
  transition: none;
}
@media (prefers-reduced-motion: no-preference) {
  .about-quote.in-view .quote-text::before {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1) rotate(0deg);
    transition-delay: 0.1s;
  }
  .about-quote.in-view .quote-text {
    animation: about-quote-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .about-quote.in-view .quote-attribution {
    animation: about-quote-attribution-in 0.5s ease-out 0.5s forwards;
  }
}
@keyframes about-quote-text-in {
  from { opacity: 0; transform: translateX(-18px); letter-spacing: 0.04em; }
  to { opacity: 1; transform: translateX(0); letter-spacing: 0.01em; }
}
@keyframes about-quote-attribution-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.about-quote .quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.04em;
}
.about-quote-attribution { position: relative; display: inline-block; }
.about-quote-attribution::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: none;
}
.about-quote.in-view .about-quote-attribution::after {
  transition: background-size 0.4s ease 0.85s;
  background-size: 45% 100%;
}
.about-quote.in-view { opacity: 1; }
.about-quote.in-view .quote-text,
.about-quote.in-view .quote-attribution { opacity: 1; transform: none; }

/* === ABOUT — MISSION & VISION === */
.about-mission-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.about-mission-title { clip-path: inset(0 100% 0 0); transition: none; }
.about-mission-section.in-view .about-mission-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .about-mission-section.in-view .about-mission-card:nth-child(1) {
    animation: about-mission-left 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
  .about-mission-section.in-view .about-mission-card:nth-child(2) {
    animation: about-mission-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  }
  .about-mission-section.in-view .about-mission-card .card-icon {
    animation: about-mission-icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  }
}
@keyframes about-mission-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes about-mission-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes about-mission-icon-pop {
  from { opacity: 0.8; transform: scale(0.6) rotate(-20deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}
.about-mission-card { position: relative; overflow: hidden; }
.about-mission-card::before { display: none; }
.about-mission-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.about-mission-card:hover,
.about-mission-card:focus-within {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.about-mission-card:hover .card-icon,
.about-mission-card:focus-within .card-icon {
  transform: scale(1.15);
  color: var(--primary);
}
.about-mission-card:hover::after,
.about-mission-card:focus-within::after { transform: scaleY(1); }
.about-mission-card .card-icon { transition: transform 0.25s ease, color 0.25s ease; }
.about-mission-section.in-view .about-mission-card { opacity: 1; transform: none; }

/* === ABOUT — OBJECTIVES === */
.about-objectives-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.about-objectives-title { clip-path: inset(0 100% 0 0); transition: none; }
.about-objectives-section.in-view .about-objectives-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .about-objectives-section.in-view .about-objectives-card {
    animation: about-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 0.11s);
  }
  .about-objectives-section.in-view .about-objectives-card .card-icon {
    animation: about-objectives-icon-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.11s + 0.2s);
  }
}
@keyframes about-fade-up {
  from { opacity: 0; transform: translateY(var(--slide-dist, 28px)); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes about-objectives-icon-pop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
.about-objectives-card { position: relative; }
.about-objectives-card::before { display: none; }
.about-objectives-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.about-objectives-card:hover,
.about-objectives-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.about-objectives-card:hover::after,
.about-objectives-card:focus-within::after { width: 100%; }
.about-objectives-card:hover .card-icon,
.about-objectives-card:focus-within .card-icon {
  transform: scale(1.18) rotate(8deg);
  color: var(--primary);
}
.about-objectives-card:hover h3,
.about-objectives-card:focus-within h3 { color: var(--primary); }
.about-objectives-card .card-icon,
.about-objectives-card h3 { transition: transform 0.25s ease, color 0.2s ease; }
.about-objectives-section .card h3 { font-size: clamp(0.95rem, 2vw, 1.15rem); }
.about-objectives-section .card p { font-size: clamp(0.825rem, 1.6vw, 0.95rem); }
.about-objectives-section.in-view .about-objectives-card { opacity: 1; transform: none; }

/* === ABOUT — VALUES === */
.about-values-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.about-values-title { clip-path: inset(0 100% 0 0); transition: none; }
.about-values-section.in-view .about-values-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .about-values-section.in-view .about-values-card:nth-child(odd) {
    animation: about-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 0.11s);
  }
  .about-values-section.in-view .about-values-card:nth-child(even) {
    animation: about-values-even 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 0.11s);
  }
}
@keyframes about-values-even {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: translateX(0); }
}
.about-values-card { position: relative; transition: background 0.25s ease; }
.about-values-card:hover,
.about-values-card:focus-within {
  background: rgba(255, 108, 12, 0.04);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.about-values-icon { transition: transform 0.5s ease-in-out; }
.about-values-card:hover .about-values-icon,
.about-values-card:focus-within .about-values-icon { transform: rotate(360deg); }
.about-values-card h3 {
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
}
.about-values-card:hover h3,
.about-values-card:focus-within h3 { background-size: 100% 2px; }
.about-values-section.in-view .about-values-card { opacity: 1; transform: none; }

/* === ABOUT — TEAM === */
.about-team-section {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 108, 12, 0.03) 0%, transparent 55%);
}
.about-team-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.about-team-section .section-subtitle { font-size: clamp(0.875rem, 2vw, 1.05rem); }
.about-team-title { clip-path: inset(0 100% 0 0); transition: none; }
.about-team-section.in-view .about-team-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-section.in-view .about-team-subtitle {
    animation: about-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .about-team-section.in-view .about-team-card {
    animation: about-team-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }
  .about-team-section.in-view .about-team-card .team-card-image img {
    animation: about-team-image-settle 0.6s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }
}
@keyframes about-team-pop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes about-team-image-settle {
  from { opacity: 0.6; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}
.about-team-card .team-card-image { overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: relative; }
.about-team-card .team-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 108, 12, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-team-card .team-card-image img { transition: transform 0.4s ease; }
.about-team-card:hover .team-card-image img,
.about-team-card:focus-within .team-card-image img { transform: scale(1.06); }
.about-team-card:hover .team-card-image::after,
.about-team-card:focus-within .team-card-image::after { opacity: 1; }
.about-team-card .team-card-image { transition: box-shadow 0.3s ease; }
.about-team-card:hover .team-card-image,
.about-team-card:focus-within .team-card-image { box-shadow: 0 0 0 3px var(--primary); }
.about-team-card .team-card-name { font-size: clamp(0.9rem, 1.8vw, 1.05rem); transition: color 0.2s ease; }
.about-team-card .team-card-role { transition: transform 0.2s ease, opacity 0.2s ease; }
.about-team-card:hover .team-card-name,
.about-team-card:focus-within .team-card-name { color: var(--primary); }
.about-team-card:hover .team-card-role,
.about-team-card:focus-within .team-card-role { transform: translateY(-2px); opacity: 0.95; }
.about-team-card:hover,
.about-team-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.about-team-section.in-view .about-team-card { opacity: 1; transform: none; }

/* === ABOUT — CTA === */
.about-cta-section.in-view .about-cta-btn { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: no-preference) {
  .about-cta-section.in-view .about-cta-btn {
    animation: about-cta-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  }
}
@keyframes about-cta-pop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.about-cta-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.about-cta-btn:hover,
.about-cta-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 93, 0, 0.4);
  background: var(--primary-dark);
}
.about-cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.about-cta-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
@keyframes about-ripple {
  to { transform: scale(3); opacity: 0; }
}

/* === ABOUT — FOOTER === */
.about-footer-col a {
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: color 0.2s ease, transform 0.2s ease, background-size 0.2s ease;
}
.about-footer-col a:hover,
.about-footer-col a:focus-visible {
  color: var(--primary);
  transform: translateX(3px);
  background-size: 100% 2px;
}
.about-footer-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .about-footer.in-view .about-footer-col {
    animation: about-fade-up 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
  .about-footer.in-view .about-footer-bottom {
    animation: about-fade-up 0.5s ease-out 0.45s forwards;
  }
}
.about-footer.in-view .about-footer-col,
.about-footer.in-view .about-footer-bottom { opacity: 1; transform: none; }

/* === ABOUT — RESPONSIVE === */
@media (max-width: 480px) {
  .about-quote,
  .about-mission-card,
  .about-objectives-card,
  .about-values-card,
  .about-team-card,
  .about-footer-col { --slide-dist: 16px; }
  .about-mission-card:hover,
  .about-mission-card:focus-within,
  .about-objectives-card:hover,
  .about-objectives-card:focus-within,
  .about-values-card:hover,
  .about-values-card:focus-within,
  .about-team-card:hover,
  .about-team-card:focus-within { transform: none; }
  .about-mission-card:active,
  .about-objectives-card:active,
  .about-values-card:active,
  .about-team-card:active { transform: scale(0.98); box-shadow: var(--shadow); }
  .about-values-card:hover .about-values-icon,
  .about-values-card:focus-within .about-values-icon { transform: none; }
  .about-values-card:active .about-values-icon { transform: scale(1.15); }
}
@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
  .about-values-section.in-view .about-values-card:nth-child(even) { animation-name: about-fade-up; }
}
@media (max-width: 480px) {
  .about-objectives-section.in-view .about-objectives-card { animation-delay: calc(var(--i) * 0.07s); }
  .about-values-section.in-view .about-values-card { animation-delay: calc(var(--i) * 0.07s); }
  .about-team-section.in-view .about-team-card { animation-delay: calc(var(--i) * 0.07s); }
}
.about-mission-cards { grid-template-columns: repeat(2, 1fr); }
.about-objectives-grid,
.about-values-grid { grid-template-columns: repeat(3, 1fr); }
.about-team-cards { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
  .about-objectives-grid,
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-mission-cards { grid-template-columns: 1fr; }
  .about-objectives-grid,
  .about-values-grid,
  .about-team-cards { grid-template-columns: 1fr; }
}
.about-mission-section,
.about-objectives-section,
.about-values-section,
.about-team-section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.about-snippet .about-mission-section { padding-top: 0; }
.about-snippet .card { padding: clamp(1rem, 2.5vw, 1.75rem); }

/* === ABOUT — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .about-quote::before,
  .about-quote .quote-text,
  .about-quote .quote-text::before,
  .about-quote .quote-attribution,
  .about-quote-attribution::after,
  .about-mission-title,
  .about-mission-card,
  .about-objectives-title,
  .about-objectives-card,
  .about-values-title,
  .about-values-card,
  .about-team-title,
  .about-team-subtitle,
  .about-team-card,
  .about-cta-btn,
  .about-footer-col,
  .about-footer-bottom { animation: none !important; transition: opacity 0.4s ease !important; }
  .about-values-icon { transition: opacity 0.4s ease !important; }
  .about-values-card:hover .about-values-icon,
  .about-values-card:focus-within .about-values-icon { transform: none !important; }
  .about-quote.in-view::before { transform: scaleY(1); }
  .about-quote.in-view .quote-text,
  .about-quote.in-view .quote-attribution,
  .about-mission-section.in-view .about-mission-title,
  .about-mission-section.in-view .about-mission-card,
  .about-objectives-section.in-view .about-objectives-title,
  .about-objectives-section.in-view .about-objectives-card,
  .about-values-section.in-view .about-values-title,
  .about-values-section.in-view .about-values-card,
  .about-team-section.in-view .about-team-title,
  .about-team-section.in-view .about-team-subtitle,
  .about-team-section.in-view .about-team-card,
  .about-cta-section.in-view .about-cta-btn,
  .about-footer.in-view .about-footer-col,
  .about-footer.in-view .about-footer-bottom {
    opacity: 1;
    transform: none;
  }
  .about-quote.in-view .about-quote-attribution::after { background-size: 45% 2px; }
  .about-quote.in-view .quote-text::before { transform: scale(1) rotate(0deg); }
}

/* === ABOUT — TEAM SECTION — WRAPPER === */
.about-team-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,108,12,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255,108,12,0.04) 0%, transparent 60%),
    #fafaf8;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 2rem);
}
.about-team-section::before {
  content: '';
  display: block;
  width: 80px;
  height: 0;
  border-top: 1px solid rgba(255,108,12,0.1);
  margin: 0 auto 3rem;
}
.about-team-section::after {
  content: '';
  display: block;
  width: 80px;
  height: 0;
  border-top: 1px solid rgba(255,108,12,0.1);
  margin: 3rem auto 0;
}

/* === ABOUT — TEAM SECTION — HEADING === */
.about-team-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.about-team-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6C0C, rgba(255,108,12,0.3));
  border-radius: 99px;
  margin: 0.65rem auto 0;
  transition: width 0.5s ease-out 0.6s;
}
.about-team-section.in-view .about-team-title::after {
  width: 56px;
}
.about-team-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #64748b;
  text-align: center;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}
.about-team-section .about-team-subtitle {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* === ABOUT — TEAM SECTION — EYEBROW === */
.team-section-eyebrow {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  font-weight: 700;
  color: #FF6C0C;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  text-align: center;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(10px);
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-section.in-view .team-section-eyebrow {
    animation: about-team-eyebrow-in 0.5s ease-out forwards;
  }
}
@keyframes about-team-eyebrow-in {
  to { opacity: 1; transform: translateY(0); }
}

/* === ABOUT — TEAM SECTION — COUNT === */
.team-member-count {
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: -1.5rem auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
}
.team-member-count .fa-circle-dot {
  color: #FF6C0C;
  font-size: 0.6rem;
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-section.in-view .team-member-count {
    animation: about-team-fade-in 0.5s ease-out 0.45s forwards;
  }
}
@keyframes about-team-fade-in {
  to { opacity: 1; }
}

/* === ABOUT — TEAM SECTION — GRID === */
.about-team-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .about-team-cards:has(.about-team-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-team-cards:has(.about-team-card:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) and (min-width: 600px) {
  .about-team-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .about-team-cards { grid-template-columns: 1fr; gap: 1rem; }
}

/* === ABOUT — TEAM SECTION — CARD BASE === */
.about-team-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 1px rgba(0,0,0,0.06);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s cubic-bezier(0.22,1,0.36,1), border-color 0.25s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
}
.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,108,12,0.12);
  border-color: rgba(255,108,12,0.2);
}
.about-team-card:active {
  transform: translateY(-3px) scale(0.99);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.about-team-card:focus-visible {
  outline: 2px solid #FF6C0C;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-section.in-view .about-team-card {
    animation: teamCardIn 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }
}
.about-team-section.in-view .about-team-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@keyframes teamCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === ABOUT — TEAM SECTION — CARD IMAGE === */
.about-team-card .team-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f0ee;
}
.about-team-card .team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.about-team-card:hover .team-card-image img,
.about-team-card:focus-within .team-card-image img {
  transform: scale(1.07);
}
.about-team-card .team-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255,108,12,0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.about-team-card:hover .team-card-image::after,
.about-team-card:focus-within .team-card-image::after {
  opacity: 1;
}
.about-team-card:focus-visible .team-card-image {
  box-shadow: 0 0 0 3px #FF6C0C;
}

/* === ABOUT — TEAM SECTION — SHIMMER === */
.about-team-card .team-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.04) 75%);
  background-size: 200% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-card .team-card-image:not(.loaded)::before {
    animation: about-team-shimmer 1.5s infinite;
  }
}
.about-team-card .team-card-image.loaded::before {
  display: none;
}
@keyframes about-team-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === ABOUT — TEAM SECTION — CARD BODY === */
.about-team-card .team-card-body {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-team-card .team-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0;
  transition: color 0.25s ease;
}
.about-team-card .team-card-role {
  font-size: clamp(0.75rem, 1.5vw, 0.82rem);
  font-weight: 600;
  color: #FF6C0C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.15rem 0 0;
  transition: letter-spacing 0.25s ease;
}

/* === ABOUT — TEAM SECTION — BIO === */
.team-card-bio-sep {
  display: block;
  width: 0;
  height: 2px;
  background: rgba(255,108,12,0.2);
  border-radius: 99px;
  margin: 0.55rem 0 0.45rem;
  transition: width 0.4s ease-out;
}
.about-team-section.in-view .team-card-bio-sep {
  transition-delay: calc(var(--i) * 0.1s + 0.4s);
  width: 24px;
}
.about-team-card .team-card-bio {
  font-size: clamp(0.8rem, 1.6vw, 0.875rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-height: 4.8em;
}
.about-team-card .team-card-bio.bio-expanded {
  -webkit-line-clamp: unset;
  display: block;
  max-height: 2000px;
}
.team-bio-toggle {
  font-size: 0.78rem;
  color: #FF6C0C;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0 0;
  text-align: left;
  transition: color 0.2s ease;
}
.team-bio-toggle:hover {
  color: #ea5a00;
  text-decoration: underline;
}
.team-bio-toggle i {
  display: inline-block;
  transition: transform 0.2s ease;
}
.team-bio-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.team-bio-toggle { display: none; }
.team-bio-toggle.bio-toggle-visible { display: block; }

/* === ABOUT — TEAM SECTION — CARD FOOTER === */
.team-card-footer {
  display: flex;
  gap: 4px;
  padding-top: 0.75rem;
  margin-top: auto;
}
.team-card-footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,108,12,0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.about-team-card:hover .team-card-footer-dot:nth-child(1),
.about-team-card:focus-within .team-card-footer-dot:nth-child(1) {
  background: #FF6C0C;
  transform: scale(1.4);
}
.about-team-card:hover .team-card-footer-dot:nth-child(2),
.about-team-card:focus-within .team-card-footer-dot:nth-child(2) {
  background: #FF6C0C;
  transform: scale(1.4);
  transition-delay: 0.06s;
}
.about-team-card:hover .team-card-footer-dot:nth-child(3),
.about-team-card:focus-within .team-card-footer-dot:nth-child(3) {
  background: #FF6C0C;
  transform: scale(1.4);
  transition-delay: 0.12s;
}

/* === ABOUT — TEAM SECTION — EMPTY STATE === */
.about-team-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-section.in-view .about-team-empty {
    animation: about-team-empty-in 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
}
@keyframes about-team-empty-in {
  to { opacity: 1; transform: scale(1); }
}
.team-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,108,12,0.08);
  border: 2px dashed rgba(255,108,12,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.team-empty-icon .fa-users {
  font-size: 28px;
  color: #FF6C0C;
  opacity: 0.6;
}
.team-empty-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #374151;
  margin: 0 0 0.5rem;
}
.team-empty-body {
  font-size: 0.9rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.6;
}

/* === ABOUT — TEAM SECTION — ANIMATIONS === */
/* Title clip-path reveal with delay after eyebrow */
.about-team-title {
  clip-path: inset(0 100% 0 0);
  transition: none;
}
.about-team-section.in-view .about-team-title {
  transition: clip-path 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s;
  clip-path: inset(0 0% 0 0);
}
.about-team-subtitle {
  opacity: 0;
  transform: translateY(14px);
}
@media (prefers-reduced-motion: no-preference) {
  .about-team-section.in-view .about-team-subtitle {
    animation: about-team-subtitle-in 0.65s ease-out 0.35s forwards;
  }
}
@keyframes about-team-subtitle-in {
  to { opacity: 1; transform: translateY(0); }
}

/* === ABOUT — TEAM SECTION — HOVER === */
.about-team-card:nth-child(odd):hover {
  transform: translateY(-8px) rotate(-0.5deg);
}
.about-team-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(0.5deg);
}
.about-team-card:hover .team-card-name,
.about-team-card:focus-within .team-card-name {
  color: #FF6C0C;
}
.about-team-card:hover .team-card-role,
.about-team-card:focus-within .team-card-role {
  letter-spacing: 0.1em;
}

/* === ABOUT — TEAM SECTION — TOUCH === */
.touch-device .about-team-card:hover,
.touch-device .about-team-card:focus-within {
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 1px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.06);
}
.touch-device .about-team-card:hover .team-card-image img,
.touch-device .about-team-card:focus-within .team-card-image img {
  transform: none;
}
.touch-device .about-team-card:hover .team-card-image::after,
.touch-device .about-team-card:focus-within .team-card-image::after {
  opacity: 0;
}
.touch-device .about-team-card:hover .team-card-name,
.touch-device .about-team-card:focus-within .team-card-name {
  color: #1a1a2e;
}
.touch-device .about-team-card:hover .team-card-role,
.touch-device .about-team-card:focus-within .team-card-role {
  letter-spacing: 0.08em;
}
.touch-device .about-team-card:hover .team-card-footer-dot,
.touch-device .about-team-card:focus-within .team-card-footer-dot {
  background: rgba(255,108,12,0.2);
  transform: scale(1);
  transition-delay: 0s;
}

/* === ABOUT — TEAM SECTION — RESPONSIVE === */
@media (max-width: 599px) {
  .about-team-section {
    padding: 2.5rem 1rem;
  }
  @media (prefers-reduced-motion: no-preference) {
    .about-team-section.in-view .about-team-card {
      animation-delay: calc(min(var(--i), 4) * 0.1s);
    }
  }
  .about-team-section.in-view .about-team-card {
    animation: teamCardInMobile 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  @keyframes teamCardInMobile {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .about-team-card .team-card-bio {
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 380px) and (max-width: 599px) {
  .about-team-card {
    display: flex;
    flex-direction: row;
  }
  .about-team-card .team-card-image {
    width: 88px;
    min-width: 88px;
    height: 88px;
    aspect-ratio: 1;
    border-radius: 50%;
  }
  .about-team-card .team-card-body {
    padding: 0.85rem;
    flex: 1;
  }
}
@media (max-width: 379px) {
  .about-team-card .team-card-image {
    aspect-ratio: 4 / 3;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .about-team-section {
    padding: 3.5rem 1.5rem;
  }
  .about-team-card .team-card-bio {
    -webkit-line-clamp: 2;
  }
}

/* === ABOUT — TEAM SECTION — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .team-section-eyebrow,
  .team-member-count,
  .about-team-title::after,
  .about-team-subtitle,
  .about-team-card,
  .team-card-bio-sep,
  .about-team-empty {
    animation: none !important;
    transition: opacity 0.4s ease !important;
  }
  .about-team-section.in-view .team-section-eyebrow,
  .about-team-section.in-view .team-member-count,
  .about-team-section.in-view .about-team-subtitle,
  .about-team-section.in-view .about-team-card,
  .about-team-section.in-view .team-card-bio-sep,
  .about-team-section.in-view .about-team-empty {
    opacity: 1;
    transform: none;
  }
  .about-team-section.in-view .about-team-title::after {
    width: 56px;
  }
  .about-team-card .team-card-image:not(.loaded)::before {
    animation: none;
    background: rgba(0,0,0,0.04);
  }
}

/* ==================== NEWS PAGE (sections 2–4, hero unchanged) ==================== */
.news-quote,
.news-quote .quote-text,
.news-quote .quote-attribution,
.news-stories-title,
.news-stories-subtitle,
.news-story-card,
.news-story-date,
.news-stories-more,
.news-footer-col,
.news-footer-bottom {
  opacity: 0;
  transform: translateY(var(--slide-dist, 28px));
}
.news-quote { --slide-dist: 28px; position: relative; }
.news-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: none;
}
.news-quote.in-view::before {
  transition: transform 0.55s ease-out;
  transform: scaleY(1);
}
@media (prefers-reduced-motion: no-preference) {
  .news-quote.in-view .quote-text {
    animation: news-quote-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .news-quote.in-view .quote-attribution {
    animation: news-quote-attribution-in 0.5s ease-out 0.5s forwards;
  }
}
@keyframes news-quote-text-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes news-quote-attribution-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.news-quote .quote-text { font-size: clamp(1rem, 2.5vw, 1.35rem); }
.news-quote-attribution { position: relative; display: inline-block; }
.news-quote-attribution::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: none;
}
.news-quote.in-view .news-quote-attribution::after {
  transition: background-size 0.4s ease 0.85s;
  background-size: 45% 100%;
}
.news-quote.in-view { opacity: 1; }
.news-quote.in-view .quote-text,
.news-quote.in-view .quote-attribution { opacity: 1; transform: none; }

/* NEWS — STORIES */
.news-stories-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.news-stories-section .section-subtitle { font-size: clamp(0.875rem, 2vw, 1.05rem); }
.news-stories-title { clip-path: inset(0 100% 0 0); transition: none; }
.news-stories-section.in-view .news-stories-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .news-stories-section.in-view .news-stories-subtitle {
    animation: news-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .news-stories-section.in-view .news-story-card:nth-child(odd) {
    animation: news-story-left 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.12s);
  }
  .news-stories-section.in-view .news-story-card:nth-child(even) {
    animation: news-story-right 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.12s);
  }
  .news-stories-section.in-view .news-story-date {
    animation: news-story-date-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.12s + 0.25s);
  }
  .news-stories-section.in-view .news-stories-more {
    animation: news-fade-up 0.5s ease-out 0.3s forwards;
  }
}
@keyframes news-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes news-story-left {
  from { opacity: 0; transform: translateX(-35px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes news-story-right {
  from { opacity: 0; transform: translateX(35px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes news-story-date-pop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
.news-story-date {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 108, 12, 0.1);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--dark-soft);
  margin-bottom: 10px;
}
.news-story-excerpt { font-size: 0.9rem; color: var(--dark-soft); margin-bottom: 10px; }
.news-story-card .news-story-card-image {
  margin: -32px -24px 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}
.news-story-card .news-story-card-image .img-wrap { position: relative; overflow: hidden; }
.news-story-card .news-story-card-image .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.news-story-card .news-story-card-image img { transition: transform 0.45s ease; }
.news-story-card:hover .news-story-card-image .img-wrap::after,
.news-story-card:focus-within .news-story-card-image .img-wrap::after { opacity: 1; }
.news-story-card:hover .news-story-card-image img,
.news-story-card:focus-within .news-story-card-image img { transform: scale(1.06); }
.news-story-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.news-story-card:hover,
.news-story-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.news-story-link { display: inline-block; transition: color 0.2s ease, transform 0.2s ease; }
.news-story-card:hover .news-story-link,
.news-story-card:focus-within .news-story-link {
  color: var(--primary);
  transform: translateX(4px);
}
.news-stories-more { margin-top: 24px; }
.news-stories-section.in-view .news-stories-title,
.news-stories-section.in-view .news-stories-subtitle,
.news-stories-section.in-view .news-story-card,
.news-stories-section.in-view .news-story-date,
.news-stories-section.in-view .news-stories-more { opacity: 1; transform: none; }

/* NEWS — FOOTER */
.news-footer-col a {
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: color 0.2s ease, transform 0.2s ease, background-size 0.2s ease;
}
.news-footer-col a:hover,
.news-footer-col a:focus-visible {
  color: var(--primary);
  transform: translateX(3px);
  background-size: 100% 2px;
}
.news-footer-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .news-footer.in-view .news-footer-col {
    animation: news-fade-up 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
  .news-footer.in-view .news-footer-bottom {
    animation: news-fade-up 0.5s ease-out 0.45s forwards;
  }
}
.news-footer.in-view .news-footer-col,
.news-footer.in-view .news-footer-bottom { opacity: 1; transform: none; }

/* NEWS — RESPONSIVE */
@media (max-width: 480px) {
  .news-quote,
  .news-story-card,
  .news-footer-col { --slide-dist: 16px; }
  .news-story-card:hover,
  .news-story-card:focus-within { transform: none; }
  .news-story-card:active { transform: scale(0.98); box-shadow: var(--shadow); }
}
@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
  .news-stories-section.in-view .news-story-card:nth-child(odd),
  .news-stories-section.in-view .news-story-card:nth-child(even) {
    animation-name: news-fade-up;
    animation-duration: 0.65s;
  }
}
.news-stories-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) {
  .news-stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .news-stories-grid { grid-template-columns: 1fr; }
}
.news-stories-section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

/* NEWS — REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .news-quote::before,
  .news-quote .quote-text,
  .news-quote .quote-attribution,
  .news-quote-attribution::after,
  .news-stories-title,
  .news-stories-subtitle,
  .news-story-card,
  .news-story-date,
  .news-stories-more,
  .news-footer-col,
  .news-footer-bottom { animation: none !important; transition: opacity 0.4s ease !important; }
  .news-quote.in-view::before { transform: scaleY(1); }
  .news-quote.in-view .quote-text,
  .news-quote.in-view .quote-attribution,
  .news-stories-section.in-view .news-stories-title,
  .news-stories-section.in-view .news-stories-subtitle,
  .news-stories-section.in-view .news-story-card,
  .news-stories-section.in-view .news-story-date,
  .news-stories-section.in-view .news-stories-more,
  .news-footer.in-view .news-footer-col,
  .news-footer.in-view .news-footer-bottom {
    opacity: 1;
    transform: none;
  }
  .news-quote.in-view .news-quote-attribution::after { background-size: 45% 2px; }
}

/* ==================== GET INVOLVED PAGE ==================== */
/* Show only Donate or only Volunteer based on hash (body class set by JS) */
body.get-involved-view-donate .get-involved-volunteer-section {
  display: none !important;
}
body.get-involved-view-volunteer .get-involved-donate-section {
  display: none !important;
}

/* Get Involved: reduced spacing between contents */
.get-involved-quote { padding: 28px 5vw; }
@media (max-width: 480px) { .get-involved-quote { padding: 20px 4vw; } }
.get-involved-donate-section.section,
.get-involved-volunteer-section.section {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .get-involved-donate-section.section,
  .get-involved-volunteer-section.section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
@media (max-width: 480px) {
  .get-involved-donate-section.section,
  .get-involved-volunteer-section.section {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
.get-involved-donate-section .section-subtitle,
.get-involved-volunteer-section .section-subtitle {
  margin-bottom: 18px;
}
.get-involved-donate-intro,
.get-involved-volunteer-intro {
  margin-bottom: 18px;
}
.get-involved-donate-section .donate-section-title,
.get-involved-volunteer-section .get-involved-volunteer-form-wrap {
  margin-top: 16px;
  margin-bottom: 10px;
}
.get-involved-donate-section .donate-section-title:first-child {
  margin-top: 0;
}
.get-involved-volunteer-form-wrap { margin-top: 16px; }
.get-involved-volunteer-grid { margin-top: 12px; margin-bottom: 16px; }
.get-involved-volunteer-section .content-block { margin-bottom: 16px; }
.get-involved-volunteer-section .content-block:last-child { margin-bottom: 0; }

.get-involved-quote,
.get-involved-quote .quote-text,
.get-involved-quote .quote-attribution,
.get-involved-subnav-btn,
.get-involved-donate-title,
.get-involved-donate-subtitle,
.get-involved-donate-intro,
.get-involved-donate-form-col,
.get-involved-donate-summary-col,
.get-involved-volunteer-title,
.get-involved-volunteer-subtitle,
.get-involved-volunteer-intro,
.get-involved-volunteer-img,
.get-involved-volunteer-form,
.get-involved-footer-col,
.get-involved-footer-bottom {
  opacity: 0;
  transform: translateY(var(--slide-dist, 26px));
}

/* === GET INVOLVED — QUOTE BLOCK === */
.get-involved-quote { --slide-dist: 26px; position: relative; }
.get-involved-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: none;
}
.get-involved-quote.in-view::before {
  transition: transform 0.55s ease-out;
  transform: scaleY(1);
}
.get-involved-quote .quote-text { position: relative; }
.get-involved-quote .quote-text::before {
  content: '"';
  position: absolute;
  left: -0.15em;
  top: -0.05em;
  font-family: var(--font-display);
  font-size: 1.4em;
  color: var(--primary);
  opacity: 0.85;
  transform: scale(0) rotate(-15deg);
  transition: none;
}
@media (prefers-reduced-motion: no-preference) {
  .get-involved-quote.in-view .quote-text::before {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1) rotate(0deg);
    transition-delay: 0.1s;
  }
  .get-involved-quote.in-view .quote-text {
    animation: gi-quote-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .get-involved-quote.in-view .quote-attribution {
    animation: gi-quote-attribution-in 0.5s ease-out 0.5s forwards;
  }
}
@keyframes gi-quote-text-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes gi-quote-attribution-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.get-involved-quote-attribution { position: relative; display: inline-block; }
.get-involved-quote-attribution::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: none;
}
.get-involved-quote.in-view .get-involved-quote-attribution::after {
  transition: background-size 0.4s ease 0.85s;
  background-size: 45% 100%;
}
.get-involved-quote.in-view { opacity: 1; }
.get-involved-quote.in-view .quote-text,
.get-involved-quote.in-view .quote-attribution { opacity: 1; transform: none; }

/* === GET INVOLVED — SUBNAV === */
.get-involved-subnav-spacer { margin-top: clamp(1rem, 2.5vw, 1.5rem); }
.get-involved-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  justify-content: center;
}
@media (max-width: 480px) {
  .get-involved-subnav { flex-direction: column; width: 100%; }
  .get-involved-subnav .get-involved-subnav-btn { width: 100%; }
}
@media (prefers-reduced-motion: no-preference) {
  .get-involved-subnav.in-view .get-involved-subnav-btn {
    animation: gi-subnav-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
}
@keyframes gi-subnav-pop {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
.get-involved-subnav.get-involved-subnav-sticky {
  position: sticky;
  top: var(--navbar-height, 72px);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 50vw;
  padding-right: 50vw;
}
.get-involved-subnav .get-involved-subnav-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.get-involved-subnav .btn-primary.get-involved-subnav-btn:hover,
.get-involved-subnav .btn-primary.get-involved-subnav-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 93, 0, 0.4);
  background: var(--primary-dark);
}
.get-involved-subnav .btn-outline-dark.get-involved-subnav-btn:hover,
.get-involved-subnav .btn-outline-dark.get-involved-subnav-btn:focus-visible {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.get-involved-subnav .get-involved-subnav-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.get-involved-subnav .get-involved-subnav-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.get-involved-subnav.in-view .get-involved-subnav-btn { opacity: 1; transform: none; }

/* === GET INVOLVED — DONATE SECTION === */
.get-involved-donate-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.get-involved-donate-section .section-subtitle { font-size: clamp(0.875rem, 2vw, 1.05rem); }
.get-involved-donate-title { clip-path: inset(0 100% 0 0); transition: none; }
.get-involved-donate-section.in-view .get-involved-donate-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .get-involved-donate-section.in-view .get-involved-donate-subtitle {
    animation: gi-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .get-involved-donate-section.in-view .get-involved-donate-intro {
    animation: gi-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
  .get-involved-donate-section.in-view .get-involved-donate-form-col {
    animation: gi-donate-left 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  }
  .get-involved-donate-section.in-view .get-involved-donate-summary-col {
    animation: gi-donate-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  }
}
@keyframes gi-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gi-donate-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes gi-donate-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 767px) {
  .get-involved-donate-section.in-view .get-involved-donate-form-col,
  .get-involved-donate-section.in-view .get-involved-donate-summary-col {
    animation-name: gi-fade-up;
  }
}
.get-involved-donate-section.in-view .get-involved-donate-title,
.get-involved-donate-section.in-view .get-involved-donate-subtitle,
.get-involved-donate-section.in-view .get-involved-donate-intro,
.get-involved-donate-section.in-view .get-involved-donate-form-col,
.get-involved-donate-section.in-view .get-involved-donate-summary-col { opacity: 1; transform: none; }

/* Donate layout: two columns desktop, summary sticky */
@media (min-width: 1024px) {
  .get-involved-donate-section .donate-checkout {
    display: grid;
    grid-template-columns: 60% 38%;
    gap: 2rem;
    align-items: start;
  }
  .get-involved-donate-section .donate-summary-column.get-involved-donate-summary-col {
    position: sticky;
    top: calc(var(--navbar-height, 72px) + 60px + 16px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .get-involved-donate-section .donate-checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .get-involved-donate-section .donate-checkout {
    display: flex;
    flex-direction: column;
  }
  .get-involved-donate-section .donate-form-column { order: 1; }
  .get-involved-donate-section .donate-summary-column { order: 2; }
}

/* === GET INVOLVED — AMOUNT BUTTONS === */
.get-involved-donate-section .donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.get-involved-donate-section .donate-amount-btn {
  min-width: 80px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.get-involved-donate-section .donate-amount-btn:hover {
  background: rgba(255, 108, 12, 0.08);
  transform: translateY(-1px);
}
.get-involved-donate-section .donate-amount-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.get-involved-donate-section .donate-amount-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Other amount: $ prefix inside input */
.get-involved-other-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.get-involved-other-wrap .donate-currency-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--dark-soft);
  pointer-events: none;
}
.get-involved-other-wrap input {
  padding-left: 28px;
}
.get-involved-other-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Summary amount pulse */
.get-involved-summary-amount { transition: transform 0.35s ease, color 0.35s ease; }
.get-involved-summary-pulse {
  animation: gi-summary-pulse 0.35s ease;
}
@keyframes gi-summary-pulse {
  0% { transform: scale(1); color: inherit; }
  50% { transform: scale(1.12); color: var(--primary); }
  100% { transform: scale(1); color: inherit; }
}
.get-involved-donate-section #summary-amount { font-size: clamp(1.4rem, 3.5vw, 2rem); }

/* === GET INVOLVED — FORM FIELDS === */
.get-involved-donate-section .form-group input,
.get-involved-donate-section .form-group select,
.get-involved-donate-section .form-group textarea,
.get-involved-volunteer-section .form-group input,
.get-involved-volunteer-section .form-group select,
.get-involved-volunteer-section .form-group textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.get-involved-donate-section .form-group label,
.get-involved-volunteer-section .form-group label {
  font-size: clamp(0.825rem, 1.6vw, 0.9rem);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.get-involved-donate-section .form-group input:focus,
.get-involved-donate-section .form-group select:focus,
.get-involved-donate-section .form-group textarea:focus,
.get-involved-volunteer-section .form-group input:focus,
.get-involved-volunteer-section .form-group select:focus,
.get-involved-volunteer-section .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
}

/* === GET INVOLVED — FORM VALIDATION STATES === */
.get-involved-donate-section .form-group input.field-valid,
.get-involved-volunteer-section .form-group input.field-valid,
.get-involved-volunteer-section .form-group select.field-valid {
  border-color: #22c55e;
}
.get-involved-donate-section .form-group input.field-error,
.get-involved-volunteer-section .form-group input.field-error,
.get-involved-volunteer-section .form-group select.field-error,
.get-involved-volunteer-section .form-group textarea.field-error {
  border-color: #ef4444;
}
.field-error-msg {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.field-error-msg.field-error-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
}
.field-shake {
  animation: field-shake 0.4s ease;
}

/* Character counters */
.char-counter {
  display: block;
  font-size: 0.8rem;
  color: var(--dark-soft);
  margin-top: 4px;
}
.char-counter-warn { color: var(--primary); }
.char-counter-danger { color: #ef4444; }

/* === GET INVOLVED — PAYMENT CHOICES === */
.get-involved-donate-section .donate-payment-option {
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.get-involved-donate-section .donate-payment-option:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.get-involved-donate-section .donate-payment-option a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.get-involved-success-banner {
  background: #22c55e;
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 500;
  transition: opacity 0.5s ease;
}
.get-involved-success-banner-hide { opacity: 0; }
.btn-copy {
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-copy:hover { background: rgba(255, 108, 12, 0.15); color: var(--primary); }
.get-involved-copy-done { color: #22c55e; }
.donate-account-number, .donate-swift { font-family: monospace; font-size: 1.05rem; letter-spacing: 0.05em; }

/* === GET INVOLVED — VOLUNTEER SECTION === */
.get-involved-volunteer-section .section-title { font-size: clamp(1.5rem, 3.8vw, 2.6rem); }
.get-involved-volunteer-section .section-subtitle { font-size: clamp(0.875rem, 2vw, 1.05rem); }
.get-involved-volunteer-title { clip-path: inset(0 100% 0 0); transition: none; }
.get-involved-volunteer-section.in-view .get-involved-volunteer-title {
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0% 0 0);
}
@media (prefers-reduced-motion: no-preference) {
  .get-involved-volunteer-section.in-view .get-involved-volunteer-subtitle {
    animation: gi-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  }
  .get-involved-volunteer-section.in-view .get-involved-volunteer-intro {
    animation: gi-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
  .get-involved-volunteer-section.in-view .get-involved-volunteer-form {
    animation: gi-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
}
.get-involved-volunteer-section.in-view .get-involved-volunteer-title,
.get-involved-volunteer-section.in-view .get-involved-volunteer-subtitle,
.get-involved-volunteer-section.in-view .get-involved-volunteer-intro,
.get-involved-volunteer-section.in-view .get-involved-volunteer-form { opacity: 1; transform: none; }

/* === GET INVOLVED — IMAGE GRID === */
.get-involved-volunteer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 480px) {
  .get-involved-volunteer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: no-preference) {
  .get-involved-volunteer-section.in-view .get-involved-volunteer-img {
    animation: gi-volunteer-img-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.12s);
  }
}
@keyframes gi-volunteer-img-in {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}
.get-involved-volunteer-img .img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.get-involved-volunteer-img .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 108, 12, 0.12);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.get-involved-volunteer-img .img-wrap img { transition: transform 0.4s ease; }
.get-involved-volunteer-img:hover .img-wrap img,
.get-involved-volunteer-img:focus-within .img-wrap img { transform: scale(1.06); }
.get-involved-volunteer-img:hover .img-wrap::after,
.get-involved-volunteer-img:focus-within .img-wrap::after { opacity: 1; }
.get-involved-volunteer-img .image-caption {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.get-involved-volunteer-img:hover .image-caption,
.get-involved-volunteer-img:focus-within .image-caption {
  transform: translateY(-4px);
  opacity: 0.95;
}
.get-involved-volunteer-img {
  transition: box-shadow 0.3s ease;
}
.get-involved-volunteer-img:hover,
.get-involved-volunteer-img:focus-within { box-shadow: var(--shadow-hover); }
.get-involved-volunteer-section.in-view .get-involved-volunteer-img { opacity: 1; transform: none; }

/* === GET INVOLVED — SUCCESS STATE === */
.get-involved-volunteer-success {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
  text-align: center;
  outline: none;
}
.get-involved-volunteer-success:focus { outline: 2px solid var(--primary); outline-offset: 3px; }
.get-involved-success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}
.get-involved-volunteer-success.get-involved-volunteer-success-visible .get-involved-success-icon {
  animation: gi-success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes gi-success-pop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
.get-involved-success-title { margin-bottom: 0.5rem; }
.get-involved-volunteer-success p { margin-bottom: 1.5rem; color: var(--dark-soft); }

/* === GET INVOLVED — FOOTER === */
.get-involved-footer-col a {
  background: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: color 0.2s ease, transform 0.2s ease, background-size 0.2s ease;
}
.get-involved-footer-col a:hover,
.get-involved-footer-col a:focus-visible {
  color: var(--primary);
  transform: translateX(3px);
  background-size: 100% 2px;
}
.get-involved-footer-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 108, 12, 0.15);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .get-involved-footer.in-view .get-involved-footer-col {
    animation: gi-fade-up 0.7s ease-out forwards;
    animation-delay: calc(var(--i) * 0.15s);
  }
  .get-involved-footer.in-view .get-involved-footer-bottom {
    animation: gi-fade-up 0.5s ease-out 0.45s forwards;
  }
}
.get-involved-footer.in-view .get-involved-footer-col,
.get-involved-footer.in-view .get-involved-footer-bottom { opacity: 1; transform: none; }

/* === GET INVOLVED — RESPONSIVE === */
@media (max-width: 480px) {
  .get-involved-quote,
  .get-involved-donate-form-col,
  .get-involved-donate-summary-col,
  .get-involved-volunteer-img,
  .get-involved-footer-col { --slide-dist: 14px; }
  .get-involved-donate-section .donate-amounts { gap: 8px; }
  .get-involved-donate-section .donate-amount-btn { min-width: 70px; }
}
@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
  .get-involved-donate-section.in-view .get-involved-donate-form-col,
  .get-involved-donate-section.in-view .get-involved-donate-summary-col {
    animation-name: gi-fade-up;
  }
}

/* === GET INVOLVED — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .get-involved-quote::before,
  .get-involved-quote .quote-text,
  .get-involved-quote .quote-text::before,
  .get-involved-quote .quote-attribution,
  .get-involved-quote-attribution::after,
  .get-involved-subnav-btn,
  .get-involved-donate-title,
  .get-involved-donate-subtitle,
  .get-involved-donate-intro,
  .get-involved-donate-form-col,
  .get-involved-donate-summary-col,
  .get-involved-volunteer-title,
  .get-involved-volunteer-subtitle,
  .get-involved-volunteer-intro,
  .get-involved-volunteer-img,
  .get-involved-volunteer-form,
  .get-involved-footer-col,
  .get-involved-footer-bottom { animation: none !important; transition: opacity 0.4s ease !important; }
  .field-shake { animation: none !important; }
  .get-involved-summary-pulse { animation: none !important; }
  .get-involved-quote.in-view::before { transform: scaleY(1); }
  .get-involved-quote.in-view .quote-text,
  .get-involved-quote.in-view .quote-attribution,
  .get-involved-subnav.in-view .get-involved-subnav-btn,
  .get-involved-donate-section.in-view .get-involved-donate-title,
  .get-involved-donate-section.in-view .get-involved-donate-subtitle,
  .get-involved-donate-section.in-view .get-involved-donate-intro,
  .get-involved-donate-section.in-view .get-involved-donate-form-col,
  .get-involved-donate-section.in-view .get-involved-donate-summary-col,
  .get-involved-volunteer-section.in-view .get-involved-volunteer-title,
  .get-involved-volunteer-section.in-view .get-involved-volunteer-subtitle,
  .get-involved-volunteer-section.in-view .get-involved-volunteer-intro,
  .get-involved-volunteer-section.in-view .get-involved-volunteer-img,
  .get-involved-volunteer-section.in-view .get-involved-volunteer-form,
  .get-involved-footer.in-view .get-involved-footer-col,
  .get-involved-footer.in-view .get-involved-footer-bottom {
    opacity: 1;
    transform: none;
  }
  .get-involved-quote.in-view .get-involved-quote-attribution::after { background-size: 45% 2px; }
  .get-involved-quote.in-view .quote-text::before { transform: scale(1) rotate(0deg); }
}
