/* ============================================
   TRUTH SEEKERS ORGANIZATION — Main Stylesheet
   ============================================ */

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

:root {
  --burgundy: #6B1D3A;
  --burgundy-dark: #4A1428;
  --burgundy-light: #8B2D4F;
  --green: #2D4A3E;
  --green-dark: #1E332B;
  --green-light: #3D6354;
  --gold: #B8962E;
  --gold-light: #D4AF37;
  --gold-pale: #F5F0E3;
  --dark: #1A1A1A;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--burgundy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--burgundy-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ HEADER / NAV ============ */
.top-bar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: 0.8rem;
  padding: 0.4rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }

.top-bar-social { display: flex; gap: 1rem; }

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--burgundy);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}

nav { display: flex; align-items: center; gap: 0; }

nav a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--transition);
}

nav a:hover { color: var(--burgundy); }

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover::after { width: 60%; }

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a::after { display: none; }

.btn-donate-nav {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  border: 2px solid var(--burgundy);
}

.btn-donate-nav:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white) !important;
}

.btn-donate-nav::after { display: none !important; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

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

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

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--green-dark) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(184,150,46,0.2);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============ SECTION STYLES ============ */
.section {
  padding: 5rem 0;
}

.section-light { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }
.section-burgundy { background: var(--burgundy); color: var(--white); }
.section-green { background: var(--green); color: var(--white); }

.section-header-text {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-dark .section-title,
.section-burgundy .section-title,
.section-green .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-dark .section-subtitle { color: var(--gray-300); }

/* ============ CAROUSEL ============ */
.carousel-section { width: 100%; }
.carousel-btn:hover { background: rgba(0,0,0,0.8) !important; }
.carousel-slide img { transition: transform 0.3s ease; }
.carousel-slide:hover img { transform: scale(1.03); }

/* Desktop header nav hide mobile elements */
@media (min-width: 769px) {
  header > nav { display: none !important; }
  header .nav-toggle { display: none !important; }
}

/* Mobile centered header */
@media (max-width: 768px) {
  header [style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  header [style*="grid-template-columns"] > div:first-child { display: none !important; }
  header [style*="grid-template-columns"] > div:last-child { display: none !important; }
  header > nav { display: none; }
  header > nav.active { display: flex; }
  header .nav-toggle { display: block !important; }
  .carousel-slide img { height: 300px !important; }
}

/* ============ MISSION BAR ============ */
.mission-bar {
  background: var(--gold-pale);
  border-left: 5px solid var(--gold);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.mission-bar p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  font-style: italic;
  line-height: 1.8;
}

/* ============ PROGRAM CARDS ============ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.program-card-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.program-card-icon.harvest { background: linear-gradient(135deg, #2D4A3E, #3D6354); }
.program-card-icon.roots { background: linear-gradient(135deg, #6B1D3A, #8B2D4F); }
.program-card-icon.art { background: linear-gradient(135deg, #B8962E, #D4AF37); }
.program-card-icon.music { background: linear-gradient(135deg, #1E3A5F, #4A6FA5); }

.program-card-body {
  padding: 1.5rem;
}

.program-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.program-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.program-card-body a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.program-card-body a:hover { color: var(--burgundy); gap: 0.6rem; }

/* ============ STATS ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); }

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============ TESTIMONIAL ============ */
.testimonial-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ============ IMPACT / DONATE TIERS ============ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.impact-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.impact-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.impact-card .desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.impact-card.featured {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: scale(1.05);
}

/* ============ VOLUNTEER OPPORTUNITIES ============ */
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.volunteer-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.volunteer-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.volunteer-card-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.tag-harvest { background: #E8F5E9; color: var(--green); }
.tag-roots { background: #FCE4EC; color: var(--burgundy); }
.tag-art { background: var(--gold-pale); color: var(--gold); }
.tag-music { background: #E3F2FD; color: #1E3A5F; }
.tag-admin { background: var(--gray-100); color: var(--gray-700); }
.tag-events { background: #FFF3E0; color: #E65100; }

.volunteer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.volunteer-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0.3rem;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--green) 100%);
  color: var(--white);
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--gold-pale);
  padding: 3rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--burgundy);
}

.newsletter p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.75rem 1.2rem;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  font-size: 0.9rem;
  width: 280px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus { border-color: var(--burgundy); }

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--burgundy-dark); }

/* ============ FORMS ============ */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,29,58,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============ PAGE HEROES (Internal Pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--green) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ TWO-COLUMN LAYOUT ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.two-col-text p {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: var(--gray-300);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .volunteer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.5rem; }

  /* Corporate tiers stack on tablet */
  .section-dark [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-dark [style*="grid-template-columns: repeat(3"] > div[style*="transform: scale"] {
    transform: none !important;
  }
  /* Corporate benefits 4-col to 2-col */
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Partner logo grid */
  [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
  }

  nav.active { display: flex; }

  nav a { padding: 0.75rem 1.5rem; width: 100%; }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu { display: block; }

  .btn-donate-nav {
    margin: 0.5rem 1.5rem;
    text-align: center;
  }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }

  .programs-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero h1 { font-size: 2rem; }
  .section-title { font-size: 2rem; }

  .impact-card .amount { font-size: 2rem; }
  .impact-card.featured { transform: none; }
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
