/* ==========================================================================
   La Plaza Delaware — design tokens
   Palette grounded in the plaza: dusk sky indigo, marigold, brick coral,
   warm paper, and a teal drawn from talavera tile work.
   ========================================================================== */

:root {
  --paper: #FFFFFF;
  --paper-2: #F4F8FA;
  --ink: #1A2340;
  --ink-soft: #4E5A72;

  --indigo: #1B2A6B;
  --indigo-deep: #16224F;
  --teal: #5FCFC0;
  --teal-deep: #3FA89A;
  --orange: #F5A623;
  --orange-deep: #D98E12;
  --pink: #EC5C8B;

  --border: rgba(26, 35, 64, 0.12);
  --shadow: 0 20px 40px -22px rgba(27, 42, 107, 0.25);

  --font-display: 'Piazzolla', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 6px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--indigo);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--indigo-deep);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}

p { margin: 0 0 1em; }

/* ==========================================================================
   Signature element — talavera tile strip
   A repeating four-color diamond tile used as section dividers and frames.
   Structural: it marks the seam between the "public plaza" sections and
   grounds the design literally in what a plaza is — a tiled gathering square.
   ========================================================================== */

.tile-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--orange) 50%, var(--teal-deep) 100%);
}

.tile-frame {
  position: relative;
  border: 2px solid var(--indigo-deep);
  border-radius: var(--radius);
  padding: 6px;
  background: var(--orange);
}
.tile-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 6px;
  pointer-events: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--paper-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--indigo-deep);
  margin-right: auto;
}
.brand-mark { color: var(--pink); display: flex; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--indigo-deep);
}
.brand-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
  margin-left: 3px;
}
.brand-text.light { color: var(--paper); font-size: 22px; }
.brand-text.light em { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--indigo-deep); border-bottom-color: var(--orange); }
.main-nav a.nav-external {
  color: #fff;
  background: var(--pink);
  padding: 8px 16px;
  border-radius: 999px;
  border-bottom: none;
}
.main-nav a.nav-external:hover { background: #a8382a; }

.lang-toggle {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.lang-toggle a { text-decoration: none; padding: 2px 4px; }
.lang-toggle a.active { color: var(--pink); font-weight: 700; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-btn span { width: 22px; height: 2px; background: var(--indigo-deep); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--paper-2);
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  padding: 14px 28px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--ink);
}

.carousel-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--paper-2);
}
.carousel-slide.is-active { opacity: 1; z-index: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(270deg, rgba(255,255,255,0.94) 20%, rgba(255,255,255,0.82) 40%, rgba(255,255,255,0.25) 68%, rgba(255,255,255,0.05) 90%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 96px 0 76px;
  margin-right: max(28px, calc((100% - 1120px) / 2 + 28px));
  margin-left: auto;
  width: auto;
  display: flex;
  justify-content: flex-end;
}

.hero-copy-card { max-width: 560px; }
.hero-copy-card .eyebrow { color: var(--pink); }
.hero-copy-card .eyebrow::before { background: var(--pink); }

.hero-copy-card h1 {
  color: var(--indigo-deep);
  font-size: clamp(34px, 4.6vw, 52px);
  max-width: 13ch;
  letter-spacing: -0.01em;
}

.hero-copy-card p {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 10px;
  background: var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 22px;
  margin-top: 28px;
  width: fit-content;
}
.hero-stats .stat-num { font-family: var(--font-mono); color: #fff; font-size: 20px; font-weight: 700; }
.hero-stats .stat-label { color: #fff; font-size: 12.5px; font-weight: 600; }

.carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.carousel-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(27,42,107,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
}
.dot.is-active { background: var(--indigo-deep); }
.carousel-arrow {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--indigo-deep);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.carousel-arrow:hover { background: var(--paper-2); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: var(--indigo-deep); }
.btn-primary:hover { background: var(--orange-deep); }

.btn-ghost { border-color: var(--indigo-deep); color: var(--indigo-deep); }
.btn-ghost:hover { background: var(--indigo-deep); color: #fff; }

.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: #c94670; }


/* ==========================================================================
   Photo slot placeholder utility
   Used anywhere a real photo needs to go — dashed frame + label so it's
   obvious in-browser what to replace and at what aspect ratio.
   ========================================================================== */

.photo-slot {
  background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 10px, #EAF2F0 10px, #EAF2F0 20px);
  border: 2px dashed var(--teal-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  padding: 20px;
}
.photo-slot-label code {
  background: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 12px;
}
.arch-photo { aspect-ratio: 3 / 4; border-radius: 200px 200px 10px 10px; border-bottom-style: dashed; }
.event-photo { aspect-ratio: 4 / 3; min-height: 220px; }
.community-photo { aspect-ratio: 4 / 3; }

/* ==========================================================================
   Classes & Workshops (formerly "Events" — compact multi-card grid so
   several can show at once instead of one card taking the full section)
   ========================================================================== */

.classes-section { padding: 72px 0; }
.classes-head { max-width: 60ch; margin-bottom: 32px; }
.classes-head h2 { font-size: clamp(26px, 3vw, 36px); }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.class-card {
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.class-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.class-photo {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
}
.class-photo.photo-slot { border-radius: 0; border-width: 0 0 2px 0; }

.class-card-body { padding: 18px 20px 22px; }
.class-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.class-card-body h3 { font-size: 17px; margin: 6px 0 6px; line-height: 1.3; }
.class-location { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 14px; }

.btn-small { padding: 9px 18px; font-size: 13.5px; }
/* ==========================================================================
   Highlights / video
   ========================================================================== */

.highlights-section { background: var(--paper-2); padding: 72px 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.highlights-copy h2 { font-size: clamp(24px, 2.8vw, 32px); }
.highlights-copy p { color: var(--ink-soft); }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--indigo-deep);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Community photo section
   ========================================================================== */

.community-section { padding: 80px 0; }

.community-photo { min-height: 320px; }
.community-copy h2 { font-size: clamp(26px, 3vw, 36px); }
.community-copy p { color: var(--ink-soft); font-size: 17px; }

/* ==========================================================================
   Sponsors / logo grid
   ========================================================================== */

.sponsors-section { background: var(--paper-2); padding: 80px 0; border-top: 1px solid var(--border); }
.sponsors-head { max-width: 60ch; margin-bottom: 36px; }
.sponsors-head p { color: var(--ink-soft); margin: 0; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.logo-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.logo-tile span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.logo-grid-note { font-size: 13px; color: var(--ink-soft); margin: 20px 0 0; }
.logo-grid-note code { background: #fff; border: 1px solid var(--border); padding: 1px 5px; border-radius: 3px; }

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats-band {
  background: var(--paper-2);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.stat-card {
  border-left: 3px solid var(--orange);
  padding: 4px 24px;
}
.stat-card + .stat-card { border-left-color: var(--pink); }
.stat-card:last-child { border-left-color: var(--teal-deep); }
.stat-card .num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: var(--indigo-deep);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card .label { color: var(--ink-soft); font-size: 15px; }

/* ==========================================================================
   Programs
   ========================================================================== */

.programs {
  padding: 88px 0 100px;
}

.programs-head { max-width: 60ch; margin-bottom: 56px; }
.programs-head h2 { font-size: clamp(28px, 3.2vw, 40px); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--paper-2);
  padding: 36px 32px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  width: 100%;
  display: block;
}
.program-card:hover, .program-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow); }
.program-card:nth-child(1) { border-color: var(--indigo-deep); }
.program-card:nth-child(2) { border-color: var(--pink); }
.program-card:nth-child(3) { border-color: var(--teal); }
.program-card:nth-child(4) { border-color: var(--orange-deep); }
.program-card:nth-child(5) { border-color: var(--teal-deep); }
.program-card:nth-child(6) { border-color: var(--indigo); }

.program-card .num {
  font-family: var(--font-mono);
  color: #fff;
  background: var(--indigo-deep);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.program-card:nth-child(2) .num { background: var(--pink); }
.program-card:nth-child(3) .num { background: var(--teal); }
.program-card:nth-child(4) .num { background: var(--orange-deep); }
.program-card:nth-child(5) .num { background: var(--teal-deep); }
.program-card:nth-child(6) .num { background: var(--indigo); }

.program-card h3 { font-size: 22px; margin-bottom: 10px; }
.program-card p { color: var(--ink-soft); margin: 0 0 14px; font-size: 15.5px; }
.program-card-more {
  color: var(--pink);
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Program detail modal
   ========================================================================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 35, 64, 0.55);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.modal-box h3 { font-size: 26px; margin: 6px 0 16px; }
.modal-box p { color: var(--ink-soft); font-size: 16px; margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--paper-2);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--border); color: var(--ink); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--paper-2);
  color: var(--ink);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}
.cta-band h2 { color: var(--indigo-deep); font-size: clamp(28px, 3.4vw, 40px); position: relative; }
.cta-band p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 28px; font-size: 17px; position: relative; }
.cta-band .btn-primary { background: var(--pink); color: #fff; position: relative; padding: 16px 32px; font-size: 16px; }
.cta-band .btn-primary:hover { background: #c94670; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--indigo-deep);
  color: rgba(247, 240, 225, 0.85);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  ...
}
.footer-col h3 {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col p { margin: 0 0 8px; font-size: 15px; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--orange); }
.footer-brand p { color: rgba(247,240,225,0.65); max-width: 32ch; margin-top: 10px; }

.footer-bottom {
  padding: 20px 0 28px;
  font-size: 13px;
  color: rgba(247,240,225,0.55);
}

.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(247,240,225,0.1);
  color: rgba(247,240,225,0.8);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--pink); color: #fff; }
/* ==========================================================================
   Inner page hero (About / Contact)
   ========================================================================== */

.page-hero {
  background: var(--paper-2);
  color: var(--ink);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--teal);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--indigo-deep); max-width: 22ch; font-size: clamp(30px, 3.8vw, 44px); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; font-size: 17px; }

/* About page */
.about-section { padding: 72px 0; }
.about-section p { color: var(--ink-soft); max-width: 68ch; font-size: 17px; }
.about-section + .about-section { border-top: 1px solid var(--border); }

.partner-note {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 16px;
}
.partner-note h3 { font-size: 17px; color: var(--teal); margin-bottom: 8px; }
.partner-note p { margin: 0; font-size: 15px; }

.faith-note { border-left-color: var(--pink); }
.faith-note h3 { color: var(--pink); }

/* ==========================================================================
   Contact page / form
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  padding: 72px 0 100px;
  align-items: start;
}

.contact-form {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15.5px;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  border-color: var(--orange-deep);
  outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.form-status {
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14.5px;
  margin-bottom: 20px;
  display: none;
}
.form-status.success { display: block; background: rgba(46,110,98,0.12); color: var(--teal); border: 1px solid rgba(46,110,98,0.3); }
.form-status.error { display: block; background: rgba(198,67,46,0.1); color: var(--pink); border: 1px solid rgba(198,67,46,0.3); }

.contact-side .tile-frame { margin-bottom: 28px; }
.contact-info-card {
  background: var(--indigo-deep);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-info-card h3 { color: var(--orange); font-size: 16px; margin-bottom: 14px; }
.contact-info-card a { text-decoration: none; color: var(--paper); font-size: 16px; display: block; margin-bottom: 8px; }
.contact-info-card a:hover { color: var(--orange); }

/* honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 880px) {
  .main-nav, .lang-toggle { display: none; }
  .menu-btn { display: flex; }
  .hero-carousel { min-height: 520px; }
  .hero-content { padding: 64px 0 56px; }
  .hero-copy-card { max-width: 100%; }
  .hero-overlay { background: rgba(255,255,255,0.9); }
  .carousel-slide .photo-slot-label { max-width: 220px; font-size: 11px; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-card { padding: 4px 20px; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-stats { margin-top: 20px; flex-wrap: wrap; }
  .highlights-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
/* ==========================================================================
   Community Impact — separate dark stats band, further down the page
   ========================================================================== */

.impact-band { background: var(--indigo-deep); padding: 72px 0; }
.impact-head { max-width: 60ch; margin-bottom: 40px; }
.impact-head .eyebrow { color: var(--orange); }
.impact-head .eyebrow::before { background: var(--orange); }
.impact-head h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.impact-card { border-left: 3px solid var(--pink); padding-left: 20px; }
.impact-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.impact-label { color: rgba(255,255,255,0.75); font-size: 15px; }

@media (max-width: 760px) {
  .impact-grid { grid-template-columns: 1fr; gap: 28px; }
}

.impact-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: #fff;
  max-width: 46ch;
  margin: 44px auto 0;
  line-height: 1.5;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.community-photo { aspect-ratio: 4 / 3; min-height: 0; }

@media (max-width: 1024px) {
  .community-grid { gap: 32px; }
}

@media (max-width: 760px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    background: var(--paper-2);
    border-radius: var(--radius);
    padding: 20px;
  }
  .community-photo { aspect-ratio: 16 / 10; }
  .community-copy { padding: 0 4px; }
}
.cta-band-split .cta-split-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.cta-split-col h2 { font-size: clamp(24px, 2.8vw, 32px); }
.cta-split-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.25);
}
.paypal-donate-form { display: inline-block; }

@media (max-width: 760px) {
  .cta-band-split .cta-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-split-divider { width: 60%; height: 1px; margin: 0 auto; }
}