@media (max-width: 400px) {
  .programs-grid { grid-template-columns: 1fr; }
  .two-col-cards  { grid-template-columns: 1fr; }
}

/* ─── Outreach / Registration Form ─── */
.outreach-form {
  --form-spacing: 1.25rem;
}

/* Section heading with icon */
.form-section {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #ede8de;
}
.form-section-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(192,57,43,.1);
  color: #c0392b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section-icon svg {
  width: 20px;
  height: 20px;
}
.form-section-icon--gold {
  background: rgba(212,160,23,.12);
  color: #b8860b;
}
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

/* Divider between form sections */
.form-divider {
  text-align: center;
  margin: 2rem 0 1.75rem;
  padding: 1rem 0;
  position: relative;
}
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #d4a017, transparent);
  opacity: .35;
}
.form-divider-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #b8860b;
  position: relative;
  background: #fff;
  display: inline-block;
  padding: 0 1rem;
}
.form-divider-sub {
  display: block;
  font-size: .7rem;
  color: #9aa5b4;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}

/* Submit button styling */
.outreach-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.75rem;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.outreach-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.3);
}
.outreach-submit:active {
  transform: translateY(0);
}

/* Error / success messages from transients */
.form-notice {
  margin-bottom: 1.25rem;
  padding: .85rem 1.1rem;
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.5;
}
.form-notice--error {
  background: rgba(192,57,43,.08);
  color: #c0392b;
  border-left: 3px solid #c0392b;
}
.form-notice--success {
  background: rgba(74,124,126,.1);
  color: #2c6e49;
  border-left: 3px solid #4a7c7e;
}
.form-notice ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: .35rem;
}
.form-notice li {
  margin-bottom: .25rem;
}

/* ─── Donation Receipt Page ─── *//* =========================================================
   Heart to Hope Center — Main Stylesheet
   Color palette from brand logo:
     Red (primary):  #c0392b  (hearts)
     Teal / slate:   #4a7c7e  (tree body — secondary accent)
     Gold / amber:   #d4a017
     Sage / olive:   #6b7c4a
     Cream:          #f8f5ef
     White:          #ffffff
     Dark:           #2c3e50
   ========================================================= */

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2c3e50;
  background: #f8f5ef;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utility ── */
.container {
  width: min(100%, 1140px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Typography helpers ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: .75rem;
}
.section-label--light { color: rgba(255,255,255,.8); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 60ch;
  margin: 0 auto 2rem;
  color: #5a6a7a;
  font-size: 1.05rem;
}

.section-body {
  color: #5a6a7a;
  font-size: 1rem;
  max-width: 60ch;
  margin-bottom: 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Sections ── */
.section { padding-block: 5rem; }
.section-cream { background: #ede8de; }
.section-white { background: #f8f5ef; }
.section-teal  { background: #7b1d1d; color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid #c0392b; outline-offset: 3px; }
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: #c0392b; color: #fff; border-color: #c0392b; }
.btn-primary:hover { background: #a52714; border-color: #a52714; }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-outline-dark { background: transparent; color: #2c3e50; border-color: #2c3e50; }
.btn-outline-dark:hover { background: #2c3e50; color: #fff; }

.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,245,239,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-img { width: 64px; height: 64px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #2c3e50; }
.logo-sub  { font-size: .72rem; font-weight: 600; color: #c0392b; letter-spacing: .08em; text-transform: uppercase; }

.primary-nav .nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link {
  padding: .5rem .85rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  color: #4a5568;
  transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active { color: #c0392b; background: rgba(192,57,43,.08); }
.nav-link--donate {
  background: #c0392b;
  color: #fff !important;
  padding: .5rem 1.1rem;
}
.nav-link--donate:hover { background: #a52714 !important; }

/* Hamburger */
.nav-overlay-header { display: none; }
.nav-close { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: 6px;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c3e50;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); top: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom right, rgba(28,40,28,.58), rgba(28,40,28,.52)),
    url('/static/images/watercolor-forest-bg.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: 5rem;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-legal {
  max-width: 700px;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.hero-legal p {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: .75rem;
}
.hero-legal p:last-child { margin-bottom: 0; }
.hero-legal strong { color: #fff; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Mission strip ── */
.mission-strip { background: #c0392b; color: #fff; padding-block: 2rem; }
.mission-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.mission-stat { text-align: center; }
.mission-stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; }
.mission-stat-label  { font-size: .8rem; font-weight: 500; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }
.mission-divider { width: 1px; height: 48px; background: rgba(255,255,255,.3); }

/* ── Two column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse > :first-child { order: 2; }
.two-col--reverse > :last-child  { order: 1; }

/* ── Value cards ── */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.value-card--large { padding: 2rem; }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg { width: 24px; height: 24px; }
.value-icon--teal { background: rgba(74,124,126,.12); color: #4a7c7e; }
.value-icon--red  { background: rgba(192,57,43,.1);  color: #c0392b; }
.value-icon--gold { background: rgba(212,160,23,.12); color: #b8860b; }
.value-icon--sage { background: rgba(107,124,74,.12); color: #6b7c4a; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: #2c3e50; }
.value-card p  { font-size: .875rem; color: #5a6a7a; line-height: 1.6; }

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ── Programs grid (home preview) ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.program-card {
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.15); }
.program-card--emotional { background: linear-gradient(135deg, #c0392b, #a52714); }
.program-card--grief     { background: linear-gradient(135deg, #6b7c4a, #5a6a3c); }
.program-card--trauma    { background: linear-gradient(135deg, #7c4a4a, #6b3d3d); }
.program-card--domestic  { background: linear-gradient(135deg, #2c3e50, #1a2a38); }
.program-card--stigma    { background: linear-gradient(135deg, #b8860b, #9a7009); }
.program-card-icon { width: 44px; height: 44px; margin: 0 auto 1rem; opacity: .9; }
.program-card-icon svg { width: 100%; height: 100%; }
.program-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.program-card p  { font-size: .8rem; opacity: .88; line-height: 1.5; }
.programs-cta { text-align: center; }

/* ── Programs flier grid (programs page) ── */
.programs-flier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin-inline: auto;
}
/* When the last flier is alone on its row, center it */
.programs-flier-grid > .program-flier:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 1rem);
  margin-inline: auto;
}

/* Each flier is a clickable link to its class registration */
.program-flier {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.program-flier:hover,
.program-flier:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.program-flier:focus-visible { outline: 3px solid #c0392b; outline-offset: 3px; }
.program-flier-img {
  display: block;
  width: 100%;
  height: auto;
}
/* "Register Now" call-to-action revealed on hover/focus */
.program-flier-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,62,80,.5);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 16px;
}
.program-flier:hover .program-flier-overlay { opacity: 1; }
.program-flier-cta {
  background: #fff;
  color: #2c3e50;
  font-weight: 700;
  font-size: 1rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
/* Placeholder when flier image is missing */
.flier-placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7a2c2c 0%, #5e2020 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
  min-height: 300px;
  border-radius: 16px;
}
.flier-placeholder::before {
  content: 'Initiative Coming Soon';
}
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* ── Program back bar ── */
.program-back-bar {
  background: #fff;
  border-bottom: 1px solid #e8ddd5;
  padding: .65rem 0;
}
.program-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: #c0392b;
  text-decoration: none;
  transition: gap .18s ease, color .18s ease;
}
.program-back-link:hover { color: #7a2c2c; gap: .6rem; }
.program-back-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Program detail page ── */
.program-detail-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.program-detail-infographic {
  position: sticky;
  top: 90px;
}
.program-infographic-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.program-detail-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.program-form-header { margin-bottom: 2rem; }
.program-form-header .section-title { margin-bottom: .5rem; }
.program-form-header p { color: #5a6a7a; font-size: .95rem; }
/* radio buttons */
.radio-group { display: flex; flex-direction: column; gap: .5rem; margin-top: .4rem; }
.radio-option { display: flex; align-items: center; gap: .6rem; font-size: .95rem; cursor: pointer; }
.radio-option input[type="radio"] { accent-color: #c0392b; width: 17px; height: 17px; }
/* checkboxes */
.form-fieldset { border: 1.5px solid #e8ddd5; border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.form-fieldset legend { font-weight: 600; color: #2c3e50; padding: 0 .5rem; font-size: .9rem; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem; margin-top: .75rem; }
.checkbox-option { display: flex; align-items: center; gap: .55rem; font-size: .9rem; cursor: pointer; }
.checkbox-option input[type="checkbox"] { accent-color: #c0392b; width: 16px; height: 16px; flex-shrink: 0; }
/* hint text */
.form-hint { font-size: .82rem; color: #7a8a9a; margin-top: .4rem; line-height: 1.5; }
.form-hint a { color: #c0392b; }

/* ── Outreach Registration Form ── */
.outreach-form { width: 100%; }

/* Section headers inside the form */
.form-section {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #ede8de;
}
.form-section-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(192,57,43,.1);
  color: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section-icon svg { width: 20px; height: 20px; }
.form-section-icon--gold {
  background: rgba(212,160,23,.12);
  color: #b8860b;
}
.form-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

/* Divider between form sections */
.form-divider {
  position: relative;
  text-align: center;
  margin: 2rem 0 1.75rem;
  padding-top: .5rem;
}
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #d4a017, transparent);
}
.form-divider-label {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 1rem;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #b8860b;
}
.form-divider-sub {
  display: block;
  margin-top: .2rem;
  font-size: .75rem;
  color: #9aa5b4;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Outreach form submit button */
.outreach-submit {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  gap: .6rem;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.outreach-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192,57,43,.3);
}
.outreach-submit:active {
  transform: translateY(0);
}

/* Form privacy note */
.form-privacy {
  margin-top: 1rem;
  font-size: .78rem;
  color: #9aa5b4;
  text-align: center;
  line-height: 1.6;
}

/* ── Format highlights ── */
.format-highlights { display: flex; flex-direction: column; gap: 1rem; }
.highlight-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.highlight-icon { width: 40px; height: 40px; flex-shrink: 0; color: #c0392b; }
.highlight-icon svg { width: 100%; height: 100%; }
.highlight-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; color: #2c3e50; }
.highlight-card p  { font-size: .8rem; color: #5a6a7a; margin: 0; }

/* ── Community / impact cards ── */
.impact-stats, .community-block { display: flex; flex-direction: column; gap: 1.25rem; }
.impact-card {
  background: #fff;
  border-left: 4px solid #c0392b;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.impact-card h3 { font-size: 1rem; font-weight: 700; color: #2c3e50; margin-bottom: .5rem; }
.impact-card p  { font-size: .875rem; color: #5a6a7a; }

/* ── Director section ── */
.director-section { padding-block: 5rem; }
.director-inner { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.director-photo-wrap { flex-shrink: 0; }
.director-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid rgba(255,255,255,.35);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  display: block;
}
.director-text { text-align: center; }
.director-script {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}
.director-text blockquote p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  margin-bottom: 1rem;
  font-style: italic;
}
.director-text cite { display: block; margin-top: 1.5rem; }
.director-text cite strong { display: block; font-size: 1rem; color: #fff; }
.director-text cite span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ── Quote section ── */
.quote-section { padding-block: 5rem; }
.quote-inner { max-width: 780px; margin-inline: auto; }
.director-quote { text-align: center; }
.director-quote > p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,.93);
  margin-bottom: 1.5rem;
}
.director-quote footer cite strong { display: block; color: #fff; font-size: 1rem; }
.director-quote footer cite span   { color: rgba(255,255,255,.7); font-size: .85rem; }

/* Legal notice block in teal section */
.legal-notice {
  max-width: 780px;
  margin-inline: auto;
  text-align: left;
}
.legal-notice p {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-notice p:last-child { margin-bottom: 0; }
.legal-notice strong { color: #fff; }

/* ── CTA banner ── */
.cta-banner { background: #ede8de; padding-block: 5rem; }
.cta-inner { text-align: center; max-width: 620px; margin-inline: auto; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #2c3e50;
  margin-bottom: 1rem;
}
.cta-inner p { color: #5a6a7a; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── About page ── */
.about-image-block { display: flex; align-items: center; justify-content: center; }
.about-image-placeholder {
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(74,124,126,.08);
  border: 3px solid rgba(74,124,126,.15);
  display: flex; align-items: center; justify-content: center;
}
.about-logo-large { width: 260px; height: 260px; object-fit: contain; }

/* ── Page hero ── */
.page-hero {
  position: relative;
  padding-block: 7rem 5rem;
  background: linear-gradient(rgba(28,40,28,.55), rgba(28,40,28,.50)),
              url('/static/images/watercolor-olive-bg.jpg') center/cover no-repeat;
  color: #fff;
}
.page-hero--about    { background-image: linear-gradient(rgba(28,40,28,.55), rgba(28,40,28,.50)), url('/static/images/watercolor-olive-bg.jpg'); }
.page-hero--programs { background-image: linear-gradient(rgba(28,40,28,.55), rgba(28,40,28,.50)), url('/static/images/watercolor-olive-bg.jpg'); }
.page-hero--contact  { background-image: linear-gradient(rgba(28,40,28,.55), rgba(28,40,28,.50)), url('/static/images/watercolor-olive-bg.jpg'); }
.page-hero--donate   { background-image: linear-gradient(rgba(28,40,28,.55), rgba(44,62,80,.80)), url('/static/images/watercolor-olive-bg.jpg'); }
.page-hero--blog     { background-image: linear-gradient(rgba(28,40,28,.45), rgba(28,40,28,.40)), url('/static/images/watercolor-forest-bg.jpg'); }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.12); pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .75rem;
}
.page-hero-content > p { font-size: 1.1rem; color: rgba(255,255,255,.85); }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon { width: 40px; height: 40px; color: #c0392b; flex-shrink: 0; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-item h4 { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #c0392b; margin-bottom: .25rem; }
.contact-item p, .contact-item a { font-size: .95rem; color: #5a6a7a; }
.contact-item a:hover { color: #c0392b; }
.contact-note { margin-top: 2rem; padding: 1.25rem; background: rgba(192,57,43,.06); border-radius: 12px; }
.contact-note p { font-size: .875rem; color: #5a6a7a; margin-bottom: .5rem; }
.contact-director { margin-top: 1rem; }

/* ── Contact form ── */
.contact-form-wrap { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #2c3e50; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: #4a5568; margin-bottom: .4rem; }
.form-group label span { color: #c0392b; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #dde1e7;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: #2c3e50;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.15); background: #fff; }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #c0392b; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-actions { margin-top: .5rem; }
.form-privacy { margin-top: 1rem; font-size: .78rem; color: #9aa5b4; text-align: center; }
.form-success { margin-top: 1rem; padding: 1rem; background: rgba(74,124,126,.1); border-radius: 10px; color: #2c6e49; font-size: .9rem; text-align: center; }
.form-error   { margin-top: 1rem; padding: 1rem; background: rgba(192,57,43,.08); border-radius: 10px; color: #c0392b; font-size: .9rem; text-align: center; }

/* ── Donate page ── */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.donate-impact h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #2c3e50; margin-bottom: 1rem; }
.impact-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.impact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: #5a6a7a; }
.impact-bullet { width: 22px; height: 22px; flex-shrink: 0; background: rgba(192,57,43,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #c0392b; margin-top: .1rem; }
.impact-bullet svg { width: 12px; height: 12px; }
.tax-deductible-note {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(212,160,23,.1); border-left: 3px solid #d4a017;
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem; margin-top: 1.5rem;
  font-size: .85rem; color: #5a6a7a;
}
.tax-deductible-note svg { width: 18px; height: 18px; flex-shrink: 0; color: #b8860b; margin-top: .1rem; }

/* Commitment quote on donate page */
.commitment-quote {
  border-left: 3px solid #c0392b;
  margin: 1.25rem 0;
  padding: .75rem 1.25rem;
  font-style: italic;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.65;
}
.commitment-quote p { margin: 0; }

.donate-form-wrap { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.donate-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #2c3e50; margin-bottom: 1.5rem; }

.amount-selector {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.amount-btn {
  padding: .55rem 1.2rem;
  border: 2px solid #dde1e7;
  border-radius: 50px;
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.amount-btn:hover { border-color: #c0392b; color: #c0392b; }
.amount-btn--active { border-color: #c0392b; background: #c0392b; color: #fff; }
.amount-custom-wrap { display: flex; align-items: center; border: 2px solid #dde1e7; border-radius: 50px; padding: .45rem 1rem; background: #fff; flex: 1; min-width: 130px; transition: border-color .2s; }
.amount-custom-wrap:focus-within { border-color: #c0392b; }
.amount-custom-prefix { font-size: .9rem; font-weight: 600; color: #9aa5b4; margin-right: .3rem; }
.amount-custom-input { border: none; outline: none; font-family: inherit; font-size: .9rem; font-weight: 600; color: #2c3e50; width: 100%; background: transparent; }

/* Square card element */
#card-container {
  min-height: 90px;
  margin-bottom: 1.25rem;
  border: 1.5px solid #dde1e7;
  border-radius: 10px;
  padding: .75rem 1rem;
  background: #fafafa;
}

.donor-fields { margin-bottom: 1.25rem; }
.donate-submit { margin-top: .25rem; background: #d4a017; border-color: #d4a017; color: #fff; }
.donate-submit:hover { background: #b8860b; border-color: #b8860b; }
.donate-success {
  margin-top: 1rem; padding: 1.25rem; background: rgba(74,124,126,.1);
  border-radius: 12px; color: #2c6e49; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.donate-success svg { width: 28px; height: 28px; flex-shrink: 0; }
.donate-error { margin-top: 1rem; padding: 1rem; background: rgba(192,57,43,.08); border-radius: 10px; color: #c0392b; font-size: .9rem; text-align: center; }
.donate-fee-note {
  background: rgba(107,124,74,.1);
  border-left: 3px solid #6b7c4a;
  border-radius: 0 10px 10px 0;
  padding: .85rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: .87rem;
  color: #4a5568;
  line-height: 1.55;
}
.donate-fee-note strong { color: #2c3e50; }

.donate-secure-note {
  display: flex; align-items: center; gap: .5rem;
  margin-top: 1rem; font-size: .78rem; color: #9aa5b4; justify-content: center;
}
.donate-secure-note svg { width: 14px; height: 14px; }

/* ── Footer ── */
.site-footer { background: #2c3e50; color: rgba(255,255,255,.8); padding-top: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  width: 100px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-tagline { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: .75rem; }
.footer-nonprofit { font-size: .75rem; color: #c0392b; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.footer-legal { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-top: .5rem; }

/* Footer contact items with icons */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .55rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-style: normal;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: .2rem; opacity: .7; }
.footer-contact-item strong { color: rgba(255,255,255,.9); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: #fff; }
.footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-nav ul, .footer-contact address { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-contact a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-bottom { padding-block: 1.5rem; text-align: center; }
.footer-bottom .container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-director { font-size: .8rem !important; color: rgba(255,255,255,.5) !important; }
.footer-powered  { font-size: .75rem !important; color: rgba(255,255,255,.3) !important; margin-top: .25rem; }
.footer-powered a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-powered a:hover { color: #fff; }

/* ── Blog listing page ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.13); }
.blog-card-body { padding: 2rem 2rem 1.25rem; flex: 1; }
.blog-card-date { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #c0392b; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #2c3e50; margin: .5rem 0 .75rem; line-height: 1.25; }
.blog-card-excerpt { font-size: .92rem; color: #5a6a7a; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.blog-card-read { font-size: .85rem; font-weight: 600; color: #c0392b; }
.blog-card-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #1a2634;
  padding: .85rem 2rem;
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.blog-card-logo { width: 28px; filter: brightness(0) invert(1); opacity: .9; }

/* ── Blog post page ── */
.blog-post-page { display: flex; flex-direction: column; }
.blog-post-content {
  background-color: #f4f0e6;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 1.5rem 4rem;
  flex: 1;
}
/* Gradient overlay so text is readable over any photo */
.blog-post-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 16, 10, 0.62) 0%,
    rgba(10, 16, 10, 0.38) 55%,
    rgba(10, 16, 10, 0.10) 100%
  );
  pointer-events: none;
}
.blog-post-inner {
  max-width: 680px;
  margin-inline: auto;
  position: relative; /* sit above the overlay */
  z-index: 1;
}
.blog-post-header { margin-bottom: 2.5rem; text-align: left; }
.blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #f0ede4;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.blog-post-divider { margin-bottom: 2rem; }
.blog-post-divider svg { width: 60px; height: 20px; }
.blog-post-divider svg line { stroke: rgba(200,195,160,.7); }
.blog-post-divider svg path { fill: rgba(200,195,160,.65); }
.blog-post-questions { margin-bottom: 2.5rem; }
.blog-post-questions p {
  font-size: 1.05rem;
  color: rgba(240,237,228,.9);
  line-height: 1.6;
  margin-bottom: .4rem;
}
.blog-post-quote {
  border-left: 3px solid rgba(200,195,140,.6);
  margin: 2.5rem 0;
  padding-left: 1.5rem;
}
.blog-post-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(240,237,228,.93);
  line-height: 1.75;
}
.blog-post-body { color: rgba(235,232,220,.9); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.blog-post-pillars {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  flex-wrap: wrap;
}
.blog-pillar {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(220,218,180,.9);
}
.blog-pillar-sep { color: rgba(200,195,140,.5); font-size: .9rem; }
.blog-post-tagline {
  font-size: 1rem;
  color: rgba(230,227,210,.85);
  font-style: italic;
  margin-top: 0;
}

/* ── Blog post branded footer band ── */
.blog-post-brand-band {
  background: #1a2634;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 3rem;
  flex-wrap: wrap;
}
.blog-brand-logo {
  width: 56px;
  filter: brightness(0) invert(1);
  opacity: .92;
  flex-shrink: 0;
}
.blog-brand-center { flex: 1; min-width: 200px; }
.blog-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .25rem;
  letter-spacing: .03em;
}
.blog-brand-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .4rem;
}
.blog-brand-insta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.blog-brand-insta svg { width: 14px; height: 14px; }
.blog-brand-right { text-align: right; }
.blog-brand-byline { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0 0 .2rem; }

/* ── Fade-in animation ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col, .contact-grid, .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse > :first-child { order: unset; }
  .two-col--reverse > :last-child  { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-cards { grid-template-columns: 1fr 1fr; }
  .program-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .program-detail-infographic { position: static; max-width: 480px; margin-inline: auto; }
  .program-detail-form-wrap { padding: 2rem 1.5rem; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding-block: 3rem; }
  .hero { min-height: 80vh; }

  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(248,245,239,.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 99;
  }
  .primary-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav .nav-list { flex-direction: column; gap: .5rem; align-items: flex-start; }
  .nav-link { font-size: 1.1rem; padding: .75rem 1rem; width: 100%; }
  .nav-link--donate { display: inline-flex; width: auto; }

  .nav-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(44,74,44,.15);
  }
  .nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
  }
  .nav-close:hover { background: rgba(44,74,44,.08); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .amount-selector { gap: .5rem; }
  .mission-strip-inner { flex-direction: column; gap: 1rem; }
  .mission-divider { width: 48px; height: 1px; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .programs-flier-grid { grid-template-columns: 1fr; max-width: 460px; }
  .programs-flier-grid > .program-flier:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; margin-inline: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-post-brand-band { padding: 1.5rem; gap: 1.25rem; }
  .blog-brand-right { text-align: left; }
  .blog-post-title { font-size: clamp(2.2rem, 10vw, 4rem); }
}

@media (max-width: 400px) {
  .programs-grid { grid-template-columns: 1fr; }
  .two-col-cards  { grid-template-columns: 1fr; }
}

/* ─── Outreach Registration Form ─── */
.outreach-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Section headers with icons */
.form-section {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .25rem;
}
.form-section-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(192,57,43,.1);
  color: #c0392b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section-icon svg {
  width: 20px;
  height: 20px;
}
.form-section-icon--gold {
  background: rgba(212,160,23,.12);
  color: #b8860b;
}
.form-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

/* Divider between sections */
.form-divider {
  position: relative;
  text-align: center;
  padding: .75rem 0;
  margin: .5rem 0;
}
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #c0392b, #d4a017, #c0392b, transparent);
  opacity: .3;
}
.form-divider-label {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 1rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c0392b;
}
.form-divider-sub {
  display: block;
  font-size: .65rem;
  color: #9aa5b4;
  letter-spacing: .06em;
  margin-top: .15rem;
}

/* Submit button styling */
.outreach-submit {
  padding: .9rem 1.75rem;
  font-size: 1rem;
  letter-spacing: .04em;
  gap: .6rem;
}
.outreach-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Privacy note */
.outreach-form .form-privacy {
  font-size: .75rem;
  color: #9aa5b4;
  text-align: center;
  margin-top: .25rem;
  line-height: 1.5;
}

/* Responsive form row for outreach */
@media (max-width: 600px) {
  .outreach-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-section {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Donation Receipt Page ─── */
.donate-receipt-wrap { max-width: 700px; margin: 0 auto; }

.receipt-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
  padding: 48px;
  margin-bottom: 2rem;
}

.receipt-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.receipt-logo { width: 72px; height: auto; }

.receipt-header h2 { margin: 0 0 4px; font-size: 1.3rem; color: #2c3e50; }

.receipt-address { margin: 2px 0 0; font-size: .85rem; color: #777; }

.receipt-divider { border-top: 2px solid #e8e3dc; margin: 24px 0; }

.receipt-title {
  text-align: center;
  font-size: 1rem;
  color: #2c4a2c;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 24px;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  margin-bottom: 20px;
}

.receipt-table td {
  padding: 10px 4px;
  border-bottom: 1px solid #f0ece8;
  color: #444;
}

.receipt-amount { text-align: right; }

.receipt-total-row td {
  border-top: 2px solid #e0dbd0;
  border-bottom: none;
  padding-top: 14px;
  font-size: 1.05rem;
  color: #2c3e50;
}

.receipt-donor { margin: 4px 0; font-size: .9rem; color: #555; }

.receipt-tax-note {
  margin: 24px 0 0;
  font-size: .82rem;
  color: #888;
  font-style: italic;
  line-height: 1.7;
  border-top: 1px solid #f0ece8;
  padding-top: 16px;
}

.receipt-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .receipt-card { padding: 24px; }
  .receipt-header { flex-direction: column; align-items: flex-start; }
}

/* ─── Outreach Registration Form ─── */
.outreach-form {
  padding-top: 0.5rem;
}

/* Form section headers (with icon) */
.form-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #ede8de;
}
.form-section-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(192,57,43,.1);
  color: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-section-icon svg {
  width: 20px;
  height: 20px;
}
.form-section-icon--gold {
  background: rgba(212,160,23,.12);
  color: #b8860b;
}
.form-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

/* Divider between form sections */
.form-divider {
  position: relative;
  text-align: center;
  margin: 1.75rem 0;
  padding: 0.75rem 0;
}
.form-divider::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4a017, transparent);
}
.form-divider-label {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c0392b;
}
.form-divider-sub {
  display: block;
  font-size: 0.7rem;
  color: #9aa5b4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.form-divider-sub::before {
  content: '— ';
}
.form-divider-sub::after {
  content: ' —';
}

/* Submit button styling */
.outreach-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  border-radius: 50px;
}
.outreach-submit:hover svg {
  transform: translateX(3px);
}
.outreach-submit svg {
  transition: transform 0.2s ease;
}

/* Privacy note below form */
.outreach-form .form-privacy {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #9aa5b4;
  text-align: center;
  line-height: 1.5;
}

@media print {
  .site-header,
  .site-footer,
  .page-hero,
  .receipt-actions,
  #receipt-loading,
  #receipt-error { display: none !important; }

  .section { padding: 0 !important; }
  .receipt-card { box-shadow: none; border: 1px solid #ddd; border-radius: 4px; }
}
