/* ============================================
   TRINITY MISSION â€“ DESIGN SYSTEM
   ============================================ */

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.breadcrumbs__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-400);
}

.breadcrumbs__list li:not(:last-child)::after {
  content: 'â†’';
  font-size: 0.7rem;
  opacity: 0.5;
}

.breadcrumbs__link {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs__link:hover {
  color: var(--gold-dark);
}

.breadcrumbs__current {
  color: var(--grey-500);
}

.header__nav-list li a.active {
  color: var(--gold);
  background: rgba(27,42,74,0.06);
}

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colours */
  --navy:        #1B2A4A;
  --navy-deep:   #0F1D35;
  --navy-light:  #2C3E6B;
  --gold:        #E8A838;
  --gold-bright: #F5C34B;
  --gold-dark:   #C88A20;
  --cream:       #FDF8F0;
  --white:       #FFFFFF;
  --grey-50:     #F9FAFB;
  --grey-100:    #F3F4F6;
  --grey-200:    #E5E7EB;
  --grey-400:    #9CA3AF;
  --grey-500:    #6B7280;
  --grey-700:    #374151;
  --grey-900:    #111827;
  --green:       #10B981;
  --red-soft:    #EF4444;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

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

  /* Sizing */
  --max-width:  1200px;
  --max-narrow: 900px;

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

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(15,29,53,0.06);
  --shadow-md:  0 4px 12px rgba(15,29,53,0.08);
  --shadow-lg:  0 12px 32px rgba(15,29,53,0.12);
  --shadow-xl:  0 20px 48px rgba(15,29,53,0.16);

  /* Border radius */
  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p + p { margin-top: var(--space-md); }

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-narrow);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--grey-500);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.35s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a838 100%) !important;
  color: #1a1a1a !important;
  box-shadow: 0 8px 24px rgba(232,168,56,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  font-weight: 800;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, #f0b040 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,168,56,0.55), 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #1a1a1a !important;
}

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,168,56,0.35);
  color: #1a1a1a !important;
}

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

.btn--secondary:hover {
  background: white;
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  box-shadow: 0 8px 24px rgba(232,168,56,0.4);
  transform: translateY(-2px);
}

.btn--donate {
  background: linear-gradient(135deg, #e8a838 0%, #f0b040 100%) !important;
  color: #1a1a1a !important;
  font-weight: 800;
  padding: 0.85rem 2rem;
  box-shadow: 0 8px 24px rgba(232,168,56,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  animation: pulse-glow-enhance 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.btn--donate:hover {
  background: linear-gradient(135deg, #f0b040 0%, #f8c050 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,168,56,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
  animation: none;
  color: #1a1a1a !important;
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  border-radius: 0.6rem;
}

/* Enhanced donate pulse animation */
@keyframes pulse-glow-enhance {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(232,168,56,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 12px 36px rgba(232,168,56,0.65), inset 0 1px 0 rgba(255,255,255,0.4);
  }
}

.btn--donate { animation: pulse-glow-enhance 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.btn--donate:hover { animation: none; }

/* ---------- Icons (Feather) ---------- */
.feather {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
}

.service-card__icon .feather {
  width: 28px;
  height: 28px;
  color: var(--navy-deep);
}

.btn .feather {
  width: 18px;
  height: 18px;
  margin-right: 0.25rem;
}


/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,42,74,0.06);
  transition: all var(--duration) var(--ease-out);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-list li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
}

.header__nav-list li a:hover {
  color: var(--navy);
  background: rgba(27,42,74,0.04);
}

.header__nav-list li {
  position: relative;
}

.nav-item--dropdown {
  position: relative !important;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 650px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  margin-top: 0; /* Removed margin to bridge the gap better */
  z-index: 1000;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Prevent interaction when hidden */
}

/* The Bridge: Prevents menu closing when moving mouse from link to dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(5px); /* Small offset for airiness without a gap */
}

.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nav-dropdown__item {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  padding: 1.25rem !important;
  background: var(--grey-50) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--grey-100) !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-dropdown__item:hover {
  background: var(--white) !important;
  border-color: var(--gold) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px) !important;
}

.nav-dropdown__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-bright);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  transition: transform 0.3s var(--ease-out);
}

.nav-dropdown__item:hover .nav-dropdown__icon {
  transform: scale(1.1) rotate(5deg);
}

.nav-dropdown__label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.nav-dropdown__text {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.4;
}

.nav-dropdown-toggle {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* Hamburger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 53, 0.42);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

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

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  margin-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 29, 53, 0.88) 0%,
    rgba(15, 29, 53, 0.65) 50%,
    rgba(15, 29, 53, 0.45) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: var(--space-4xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,168,56,0.15);
  border: 1px solid rgba(232,168,56,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.hero__title em,
.hero__title span {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero__ctas,
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2s infinite;
}

.hero__mouse {
  width: 20px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  position: relative;
}

.hero__mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0); }
  20%  { opacity: 1; }
  80%  { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0; }
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(232,168,56,0.2);
}

.about__content p {
  margin-bottom: var(--space-md);
  color: var(--grey-700);
}

.about__bible-quote {
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, rgba(232,168,56,0.08), rgba(232,168,56,0.03));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
}

.about__bible-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ---------- IMPACT STATS ---------- */
.impact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,168,56,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.impact__item {
  padding: var(--space-xl);
}

.impact__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.impact__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.impact__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ---------- SERVICES / OUR WEEK ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.service-card__day {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.service-card__title {
  margin-bottom: var(--space-md);
}

.service-card__text {
  color: var(--grey-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- STORIES ---------- */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--duration) var(--ease-out);
  position: relative;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card__quote-icon {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.story-card__text {
  font-size: 1rem;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.story-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  font-family: var(--font-display);
}

.story-card__name {
  font-weight: 600;
  color: var(--navy);
}

.story-card__role {
  font-size: 0.85rem;
  color: var(--grey-400);
}

/* ---------- NEWS ---------- */
.news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--duration) var(--ease-out);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

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

.news-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(232,168,56,0.12), rgba(232,168,56,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.news-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.news-card__text {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ---------- VOLUNTEER ---------- */
.volunteer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.volunteer::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.volunteer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.volunteer__content .section-label { color: var(--gold-bright); }
.volunteer__content .section-label::before { background: var(--gold-bright); }
.volunteer__content .section-title { color: var(--white); }

.volunteer__content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-md);
}

.volunteer__list {
  margin: var(--space-xl) 0;
}

.volunteer__list li {
  display: grid;
  grid-template-columns: 24px 200px 1fr;
  gap: var(--space-xs);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .volunteer__list li {
    grid-template-columns: 24px 1fr;
    gap: var(--space-xs);
  }
  .volunteer__list li strong {
    grid-column: 2;
  }
}

.volunteer__list li::before {
  content: 'âœ“';
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
}

.volunteer__list li strong::after {
  content: ':';
  margin-right: 4px;
}

.volunteer__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.volunteer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ---------- DONATE ---------- */
.donate {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--white) 100%
  );
}

.donate__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.donate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.donate-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}

.donate-panel--featured {
  background: var(--navy);
  border: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.donate-panel--featured::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.donate-panel__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.donate-panel--featured .donate-panel__title {
  color: var(--white);
}

.donate-panel__title-icon {
  font-size: 1.5rem;
}

.donate-panel__text {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-size: 0.95rem;
}

.donate-panel--featured .donate-panel__text {
  color: rgba(255,255,255,0.75);
}

.bank-details {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.bank-details__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.bank-details__row:last-child { border-bottom: none; }

.bank-details__label {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.bank-details__value {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.donate-panel__bible {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: var(--space-lg);
}

.donate-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.donate-item {
  background: var(--grey-50);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--grey-200);
  text-align: center;
  transition: all var(--duration) var(--ease-out);
}

.donate-item:hover {
  border-color: var(--gold);
  background: rgba(232,168,56,0.04);
}

.donate-item__icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.donate-item__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.donate-item__text {
  font-size: 0.8rem;
  color: var(--grey-500);
  line-height: 1.5;
}

/* ---------- SUPPORTERS ---------- */
.supporters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  max-width: 900px;
  margin-inline: auto;
}

.supporter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--duration) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

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

.supporter-card img {
  max-height: 70px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--duration) var(--ease-out);
  margin-bottom: var(--space-md);
}

.supporter-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.supporter-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.supporter-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.supporter-card__desc {
  font-size: 0.8rem;
  color: var(--grey-500);
  line-height: 1.5;
}

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(232,168,56,0.12), rgba(232,168,56,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-item__value a {
  color: var(--gold-dark);
  font-weight: 600;
}

.contact-item__value a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 350px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer ul li {
  margin-bottom: var(--space-sm);
}

.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease-out);
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer__social a svg {
  width: 20px;
  height: 20px;
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232,168,56,0.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
}

.footer__bottom a:hover {
  color: var(--gold);
}

.footer__charity {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- STORIES PAGE ---------- */
.page-hero {
  background: var(--navy);
  padding: var(--space-4xl) 0 var(--space-3xl);
  margin-top: 72px;
  text-align: center;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.story-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}

.story-full__title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.story-full__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-deep);
  font-family: var(--font-display);
}

.story-full p {
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE (Unified Mobile) ---------- */

/* Tablets */
/* Tablets & Laptops */
@media (max-width: 1440px) {
  .about__grid,
  .volunteer__grid,
  .contact__grid,
  .donate__grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl) !important;
  }

  .impact__grid,
  .services__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero__container {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    display: block !important;
  }

  .hero__content {
    max-width: none !important;
    width: 70% !important;
    padding: var(--space-3xl) 0 var(--space-3xl) 50px !important;
    margin: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero__title {
    font-size: clamp(2.2rem, 4vw, 3rem) !important;
    width: 100% !important;
    max-width: 900px !important;
    text-align: left !important;
    line-height: 1.2 !important;
  }

  .hero__title span {
    display: block !important;
    margin-top: 0.25rem !important;
  }

  .hero__desc {
    text-align: left !important;
    margin-left: 0 !important;
    max-width: 600px !important;
  }

  .hero__ctas {
    justify-content: flex-start !important;
  }
}

/* Compact header for tablets and narrow laptops */
@media (max-width: 1280px) {
  .header__inner {
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(84vw, 360px);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    z-index: 999;
    transition: right 0.35s var(--ease-out);
    box-shadow: -4px 0 24px rgba(15,29,53,0.15);
    overflow-y: auto;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .header__nav-list li {
    width: 100%;
  }

  .header__nav-list li a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--grey-100);
    border-radius: 0;
    color: var(--navy);
  }

  .header__burger {
    display: flex !important;
  }

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

  .nav-dropdown-toggle {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    color: var(--navy);
    background: none;
    border: none;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
  }

  .nav-item--dropdown {
    width: 100%;
  }

  .nav-item--dropdown.open .nav-dropdown {
    display: block;
  }

  .nav-item--dropdown .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    min-width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0 1rem 1rem;
  }

  .nav-dropdown__item {
    background: transparent !important;
    padding: 0.75rem 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    border: none !important;
    border-bottom: 1px solid var(--grey-100) !important;
    border-radius: 0 !important;
  }

  .nav-dropdown__item:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-dropdown__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .nav-dropdown__text {
    display: none;
  }
}

/* Mobile (Authoritative Breakpoint) */
@media (max-width: 768px) {
  /* Header & Nav */
  .header__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    z-index: 999;
    transition: right 0.35s var(--ease-out);
    box-shadow: -4px 0 24px rgba(15,29,53,0.15);
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .header__nav-list li {
    width: 100%;
  }

  .header__nav-list li a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--grey-100);
    border-radius: 0;
    color: var(--navy);
  }

  .header__burger {
    display: flex !important;
  }

  .header__actions .btn--donate {
    display: none !important; /* Hide donate button in header on mobile to save space for burger */
  }

  .nav-dropdown-toggle {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    color: var(--navy);
    background: none;
    border: none;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
  }

  .nav-item--dropdown {
    width: 100%;
  }

  .nav-item--dropdown.open .nav-dropdown {
    display: block;
  }

  .nav-item--dropdown .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    min-width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0 1rem 1rem;
  }

  .nav-dropdown__item {
    background: transparent !important;
    padding: 0.75rem 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    border: none !important;
    border-bottom: 1px solid var(--grey-100) !important;
    border-radius: 0 !important;
  }

  .nav-dropdown__item:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-dropdown__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .nav-dropdown__text {
    display: none;
  }

  .nav-dropdown__label {
    font-size: 0.95rem;
  }

  .header__logo-img {
    height: 38px;
  }

  .header__logo-text {
    font-size: 0.9rem;
  }

  .header__logo-text span {
    font-size: 0.65rem;
  }

  /* Layout */
  .hero {
    min-height: 85vh;
    margin-top: 64px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  /* Don't force buttons to column on tablet sizes, only on smaller screens */
}

@media (max-width: 600px) {
  .hero__ctas,
  .btn-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
  }
  
  .hero__content {
    width: 100%;
    padding-left: 0;
  }


  .grid-2, .grid-3, 
  .services__grid, .stories__grid, .news__grid,
  .impact__grid, .supporters__grid, .donate-items, .footer__grid {
    grid-template-columns: 1fr !important;
  }

  .section-padding {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Footer */
  .footer {
    padding-top: var(--space-2xl);
  }

  .footer__brand {
    text-align: center;
  }

  .footer__brand .header__logo {
    justify-content: center;
  }

  .footer__brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__column {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .footer__title {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    cursor: default !important;
    padding: 1.1rem 0 0.75rem !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
  }
  
  .footer__title::after {
    content: none;
  }
  
  .footer__column ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1rem;
    max-height: none;
    overflow: visible;
    opacity: 1;
    margin-bottom: 1.25rem !important;
  }

  .footer__column ul li {
    margin-bottom: 0;
  }

  .footer__column:last-child ul {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.page-hero {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.page-hero--clothes {
  background-image: url('../images/donate-clothes-hero.png');
}

.page-hero--food {
  background-image: url('../images/donate-food-hero.png');
}

.page-hero--toiletries {
  background-image: url('../images/donate-toiletries-hero.png');
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 56, 0.85) 0%, rgba(10, 31, 56, 0.6) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ---------- DONATE SUBPAGES ---------- */
.donate-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  align-items: start;
}

.donate-content h3 {
  margin: var(--space-xl) 0 var(--space-md);
}

.donate-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-xl);
}

.donate-content li {
  margin-bottom: 0.5rem;
}

.donate-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
  position: sticky;
  top: 100px;
}

.donate-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.donate-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item__icon {
  color: var(--gold);
  flex-shrink: 0;
}

.info-item__label {
  font-weight: 700;
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.info-item__value {
  font-size: 0.95rem;
  color: var(--grey-600);
}

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

.page-hero--about { background-image: url('../images/banner-about.png'); }
.page-hero--services { background-image: url('../images/banner-services.png'); }
.page-hero--volunteer { background-image: url('../images/banner-volunteer.png'); }
.page-hero--donate { background-image: url('../images/banner-donate.png'); }
.page-hero--news { background-image: url('../images/banner-news.png'); }
.page-hero--contact { background-image: url('../images/banner-contact.png'); }
.page-hero--stories { background-image: url('../images/banner-stories.png'); }
/* ---------- Impact CTA Section ---------- */
.impact-cta {
  background: var(--navy-deep);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.impact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-community.png') center/cover no-repeat;
  opacity: 0.1;
  filter: grayscale(1);
}

.impact-cta .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.impact-cta__title {
  color: white !important;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.impact-cta__text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.impact-cta .btn-group {
  justify-content: center;
  gap: 1.5rem;
}
