/* ============================================================
   WARNE BABY FOLD — Human-Centric NGO Theme
   Warm · Honest · Authentic
   ============================================================ */

:root {
  /* Primary — Pantone Blue Turquoise from client reference */
  --primary:       #53B0AE;
  --primary-dark:  #2B7A78; /* Darker teal for hover states and topbar */
  --primary-light: #EBF5F5; /* Very soft teal tint for backgrounds */

  /* Accent — Keeping a warm amber for small highlights if needed */
  --accent:        #E59A54;
  --accent-light:  #FDF3E3;

  /* Backgrounds */
  --bg:      #F7FAFA;    /* Cool off-white to match the teal */
  --surface: #FFFFFF;

  /* Text */
  --text:    #1A2B2B;    /* Dark teal-grey for deep contrast */
  --muted:   #5C7373;    /* Muted teal-grey */
  --border:  #D4E0E0;    /* Cool border */

  /* Shadows — cooled down to match the new palette */
  --shadow-sm:  0 2px 10px rgba(26,43,43,0.06);
  --shadow-md:  0 6px 24px rgba(26,43,43,0.08);
  --shadow-lg:  0 16px 48px rgba(26,43,43,0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img { display: block; width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; transition: .2s; }
p  { color: var(--muted); margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }

.wrap { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }

/* ── SKIP LINK ────────────────────────────────────────────── */
.skip-link {
  position: absolute; transform: translateY(-110%); transition: transform .2s;
  padding: .5rem 1rem; background: var(--primary); color: #fff;
  border-radius: 0 0 8px 8px; font-weight: 700; z-index: 200;
}
.skip-link:focus { transform: translateY(0); }

/* ── PANEL (clean, bordered card) ─────────────────────────── */
.panel {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .25s;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
h1 em, h2 em { 
  font-style: italic; 
  color: var(--primary); 
}

h1, h2, h3, h4 {
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; font-weight: 800; }

.eyebrow {
  display: inline-block;
  font-size: 1.05rem; 
  text-transform: uppercase;
  letter-spacing: 2px; 
  color: var(--primary); 
  font-weight: 800; 
  margin-bottom: 1rem;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: .82rem;
  padding: .55rem 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar p { margin: 0; font-weight: 600; color: rgba(255,255,255,0.9); }
.topbar-links a {
  color: #fff; font-weight: 700;
  padding: .3rem 1rem;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
}
.topbar-links a:hover { background: rgba(255,255,255,0.25); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,241,0.97);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
  backdrop-filter: blur(10px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .85rem; }
.brand-mark {
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 800;
}
.brand strong { 
  display: block; 
  font-family: "Cormorant Garamond", serif; 
  font-size: 2.4rem;
  font-weight: 700; 
  color: var(--text); 
  line-height: 1; 
  letter-spacing: -0.5px; 
}
.brand small { 
  display: block;
  color: var(--muted); 
  font-size: 0.8rem; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  font-weight: 600; 
  margin-top: 0.4rem;
}
.highlight-year {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
}

/* UPDATED NAV LINKS FONT SIZE */
.nav-links { display: flex; align-items: center; gap: 1.8rem; font-weight: 700; font-size: 1.1rem; }
.nav-links a { color: var(--muted); }
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-links a[href="support.html"] {
  background: var(--primary);
  color: #fff !important;
  padding: .6rem 1.5rem;
  border-radius: 6px;
}
.nav-links a[href="support.html"]:hover {
  background: var(--primary-dark);
}
.menu-toggle { display: none; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all .2s ease; border: none;
}
.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(83,176,174,.2);
}
.button-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.button-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: var(--primary); color: var(--primary); }

.button-warm {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.button-warm:hover {
  background: rgba(255,255,255,0.25);
}
.button-outlined {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 6px;
}
.button-outlined:hover {
  background: var(--primary-light);
}

/* ── HERO SECTIONS ────────────────────────────────────────── */
.hero-fullbleed {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-fullbleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,5,0.88) 0%, rgba(20,10,5,0.45) 45%, rgba(20,10,5,0.15) 100%);
}
.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  padding: 0 0 5rem;
  max-width: 700px;
}
.hero-fullbleed-content .hero-location {
  color: rgba(255,255,255,0.6);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.hero-fullbleed-content h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-fullbleed-content h1 em {
  color: rgba(255,220,180,0.95);
}

.page-hero { padding: 4rem 0; background: var(--primary-light); }
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.page-hero-image {
  height: 420px; width: 100%; display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── GENERIC SECTIONS ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-tint { background-color: var(--primary-light); }
.split-highlight, .section-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.section-headline { text-align: center; max-width: 580px; margin: 0 auto 3rem; }
.section-headline-left { max-width: 600px; }

/* ── RESTORED GRIDS ── */
.impact-strip { 
  margin-top: 3rem; 
  margin-bottom: 3rem;
  z-index: 10; 
  position: relative; 
  background: var(--primary-light); 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-md); 
  padding: 3rem 2rem; 
  border-radius: var(--radius-md); 
  text-align: center;
}
.impact-grid { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; 
  text-align: center; align-items: center;
}
.impact-grid h3 { 
  font-size: clamp(2.5rem, 5vw, 4rem); color: var(--primary); 
  margin-bottom: 0.5rem; line-height: 1; 
}
.impact-grid p { 
  color: var(--muted); font-weight: 700; text-transform: uppercase; 
  letter-spacing: 1.5px; font-size: 0.9rem; margin: 0;
}

.feature-grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2rem; margin-top: 3rem; 
}
.feature-card { 
  background: var(--surface); border: 1px solid var(--border); 
  box-shadow: var(--shadow-sm); padding: 2.5rem 2rem; 
  border-radius: var(--radius-md); transition: all 0.3s ease;
}
.feature-card:hover { 
  transform: translateY(-6px); box-shadow: var(--shadow-md); 
  border-color: var(--primary); 
}
.feature-icon { 
  font-size: 2rem; margin-bottom: 1.5rem; display: inline-flex; 
  width: 60px; height: 60px; align-items: center; justify-content: center; 
  background: var(--primary-light); color: var(--primary-dark); 
  border-radius: 14px; 
}

.testimonial-card { 
  border-left: 4px solid var(--primary); background: var(--surface); 
  padding: 2.5rem; box-shadow: var(--shadow-sm); 
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}
.quote-mark { 
  font-family: Georgia, serif; font-size: 4rem; 
  color: var(--primary-light); position: absolute; 
  top: -10px; left: 15px; line-height: 1; z-index: 0;
}
.testimonial-card p { position: relative; z-index: 1; font-size: 1.05rem; line-height: 1.7; font-style: italic;}
.test-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.avatar { 
  width: 46px; height: 46px; border-radius: 50%; 
  background: var(--primary); color: #fff; display: grid; 
  place-items: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.test-author strong { color: var(--text); display: block; }
.test-author span { font-size: 0.85rem; color: var(--muted); }

.preset-amounts { display: flex; gap: 1rem; margin: 1.5rem 0; flex-wrap: wrap;}
.preset-btn {
  padding: 0.8rem 1.5rem; border: 1px solid var(--border);
  border-radius: 8px; background: var(--surface); font-weight: 700;
  color: var(--text); cursor: pointer; transition: 0.2s;
}
.preset-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.callout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.callout-card { padding: 2rem 1.8rem; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface); }

/* ── FORMS AND INPUTS ─────────────────────────────────────── */
.contact-form { display: grid; gap: 1.2rem; }
.contact-form label { display: grid; gap: .4rem; font-weight: 700; color: var(--text); font-size: .9rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: .9rem 1rem;
  border: 1px solid var(--border); border-radius: 6px;
  font-family: inherit; font-size: .95rem;
  background: var(--bg); color: var(--text); transition: .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--primary); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(83,176,174,.1);
}

/* ── INTERACTIVE DONATION UI ────────────────────────── */
.donate-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: flex-start; }

.citizenship-toggle {
  display: flex; gap: 1rem; margin-bottom: 2rem;
  background: var(--bg); padding: .5rem; border-radius: 8px;
  border: 1px solid var(--border);
}
.radio-label {
  flex: 1; text-align: center; padding: .8rem;
  background: transparent; border-radius: 6px;
  cursor: pointer; font-weight: 700; color: var(--muted);
  border: 2px solid transparent; transition: all .2s; font-size: .95rem;
}
.radio-input:checked + .radio-label {
  background: var(--surface);
  border-color: var(--primary); color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.radio-input { display: none; }

.amount-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-bottom: 1rem;
}
.amount-card {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 1.5rem 1rem; cursor: pointer;
  background: var(--surface); transition: all .2s; text-align: center;
}
.amount-card:hover { border-color: var(--primary); }
.amount-radio:checked + .amount-card {
  border-color: var(--primary); background: var(--primary-light);
}
.amount-radio { display: none; }
.amount-card .amt {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 700; color: var(--primary);
  line-height: 1; margin-bottom: .4rem;
}
.amount-card .desc { font-size: .8rem; color: var(--muted); line-height: 1.3; }

.custom-amount {
  width: 100%; padding: 1.2rem; font-size: 1.2rem; font-weight: 700;
  border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 2rem; font-family: inherit; color: var(--text);
  background: var(--surface);
}
.custom-amount:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(83,176,174,.1); }

.anonymous-toggle {
  display: flex; align-items: flex-start; gap: .8rem;
  margin-bottom: 2.5rem; padding: 1.2rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
}
.anonymous-toggle input[type="checkbox"] {
  margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer;
}
.anonymous-toggle label { font-size: .95rem; font-weight: 700; color: var(--text); cursor: pointer;}
.anonymous-toggle p { margin: .2rem 0 0; font-size: .85rem; color: var(--muted); font-weight: 400; }

/* ── SLIDESHOW COMPONENT (PROGRAMS) ───────────────────────── */
.slideshow-container {
  position: relative;
  background: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 550px;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,20,16,0.95) 0%, rgba(28,20,16,0.7) 45%, transparent 100%);
}
.slide-content {
  position: relative;
  z-index: 3;
  padding: 4rem;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-content .eyebrow { color: rgba(255,220,180,0.8); }
.slide-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.slide-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.6; }

.slideshow-controls {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.slide-nav-btns { display: flex; gap: 0.5rem; }
.slide-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: 0.2s;
  backdrop-filter: blur(4px);
}
.slide-btn:hover { background: var(--primary); border-color: var(--primary); }
.slide-dots { display: flex; gap: 0.6rem; }
.dot { 
  width: 8px; height: 8px; border-radius: 50%; 
  background: rgba(255,255,255,0.3); cursor: pointer; transition: 0.3s; 
}
.dot.active { background: var(--primary); transform: scale(1.3); }

/* ── HORIZONTAL SCROLL GALLERY TRACK ──────────────────────── */
.gallery-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--border);
  -ms-overflow-style: none; 
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-track figure {
  scroll-snap-align: center;
  flex: 0 0 85%;
  max-width: 400px;
  margin: 0;
}
.gallery-track img {
  height: 300px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.gallery-track figcaption { border-top: none; }

/* ── INFINITE PHOTO MARQUEE ───────────────────────── */
.marquee-container {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-track img {
  height: 280px;
  width: 380px; 
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.marquee-track img:hover { transform: scale(1.03); }

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HOMEPAGE DONATE CTA SECTION ── */
.mockup-hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

.trust-indicators { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 0.5rem; max-width: 200px; }
.trust-item svg { width: 32px; height: 32px; color: var(--primary); }
.trust-item strong { font-size: 0.95rem; color: var(--text); display: block; }
.trust-item span { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

.impact-carousel-wrapper { 
  position: relative; 
  margin-bottom: 2rem; 
  overflow: hidden; 
  border-radius: 12px; 
  background: var(--bg); 
}
.impact-track { 
  display: flex; 
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.impact-track img { 
  flex: 0 0 100%;      
  width: 100%; 
  height: 480px;       
  object-fit: cover; 
  object-position: center; 
  border-radius: 12px; 
}

.impact-controls { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding: 0 0.5rem; }
.impact-arrow { background: transparent; border: none; cursor: pointer; color: var(--muted); transition: 0.2s; display: grid; place-items: center; }
.impact-arrow:hover { color: var(--primary); transform: scale(1.1); }
.impact-dots { display: flex; gap: 0.4rem; }
.impact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: 0.3s; }
.impact-dot.active { background: var(--primary); transform: scale(1.2); }

.provision-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
.provision-item { display: flex; align-items: flex-start; gap: 1rem; }
.provision-item svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--primary-dark); }
.provision-icon-wrapper { background: var(--primary-light); padding: 0.8rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.provision-item p { margin: 0; font-size: 0.95rem; color: var(--text); font-weight: 600; line-height: 1.4; }

/* ── SUPPORT PAGE: PERFECT ALIGNMENT FOR BANK DETAILS ── */
.bank-list { margin: 0; padding: 0; }
.bank-list div {
  display: grid;
  grid-template-columns: 120px 1fr; 
  gap: 1rem;
  margin-bottom: 0.8rem;
  align-items: baseline;
}
.bank-list dt { color: var(--muted); font-size: 0.9rem; }
.bank-list dd { color: var(--text); font-weight: 700; margin: 0; }


/* ── UPDATED FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--primary); 
  color: #ffffff;             
  padding: 4rem 0 2.5rem;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--primary-dark); 
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }

.site-footer strong { 
  color: #ffffff; 
  font-size: 1.15rem; 
  display: block; 
  margin-bottom: .6rem; 
}
.site-footer p { 
  color: rgba(255, 255, 255, 0.9); 
  font-size: .88rem; 
}
.site-footer nav a { 
  color: var(--muted);   
  display: block; 
  margin-bottom: .8rem; 
  font-size: 1.1rem;    
  font-weight: 800;     
}
.site-footer a:hover { 
  color: #ffffff; 
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .menu-toggle {
    display: block; width: 42px; height: 42px; padding: 0;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--surface); cursor: pointer;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); }

  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    display: none; flex-direction: column; align-items: stretch;
    padding: 1.5rem; background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 32px rgba(0,0,0,.05);
  }
  .nav-links.open { display: flex; text-align: center; }
  .nav-links a[href="support.html"] { margin-top: 1rem; display: inline-block; }

  .hero-fullbleed { height: 70vh; min-height: 480px; }
  .hero-fullbleed-content { padding: 0 0 3rem; }
  .hero-fullbleed-content h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
  
  .split-highlight, .section-grid,
  .donate-grid, .contact-grid, .footer-grid,
  .impact-grid, .feature-grid, .callout-grid {
    grid-template-columns: 1fr; gap: 1.5rem;
  }
  .impact-strip { margin-top: 2rem; padding: 2rem; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-image { height: 260px; }
  .section { padding: 3rem 0; }
}

@media (max-width: 768px) {
  .slide-overlay { background: linear-gradient(to top, rgba(28,20,16,0.95) 0%, rgba(28,20,16,0.85) 60%, transparent 100%); }
  .slide-content { padding: 2rem; justify-content: flex-end; padding-bottom: 6rem; }
  .slideshow-controls { left: 2rem; bottom: 1.5rem; }
  .marquee-track img { height: 200px; width: 280px; }
}

@media (max-width: 600px) {
  .provision-grid-2x2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .amount-grid { grid-template-columns: 1fr; }
  .citizenship-toggle { flex-direction: column; gap: 0.5rem; }
}