/* ===================================================================
   Frieda Homes — design tokens
   =================================================================== */
:root {
  --paper: #FFFFFF;
  --paper-2: #F2F5F8;
  --white: #FFFFFF;
  --ink: #1C2126;
  --ink-soft: #4E555C;
  --clay: #2C5F8A;
  --clay-dark: #21486A;
  --sage: #64707C;
  --gold: #D9713C;
  --gold-dark: #B85A2C;
  --border: #E2E5E9;

  --font-display: 'Onest', system-ui, sans-serif;
  --font-body: 'Onest', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --radius: 14px;
  --wrap: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
em { font-style: normal; color: var(--clay); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 88px 0; position: relative; }
.section-tint { background: var(--paper-2); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; }
.prose p { max-width: 680px; }

/* ---------------- Floating decorative accents ---------------- */
.float-deco { position: absolute; color: var(--clay); opacity: .07; pointer-events: none; z-index: 0; }
.float-deco svg { width: 100%; height: 100%; }
.float-deco--gold { color: var(--gold); }
.float-deco--light { color: var(--white); opacity: .08; }
@media (prefers-reduced-motion: no-preference) {
  .float-deco { animation: fh-float 8s ease-in-out infinite alternate; }
  .float-deco--slow { animation-duration: 11s; animation-delay: -3s; }
}
@keyframes fh-float {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-18px) rotate(5deg); }
}

/* ---------------- Address-label signature element ---------------- */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 6px;
  margin-bottom: 18px;
}
.label-tag svg { width: 15px; height: 15px; }
.label-tag--light { color: var(--gold); border-color: var(--gold); }

.address-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(20,23,26,.12);
  font-family: var(--font-mono);
  font-size: .85rem;
}
.address-card__row {
  display: flex;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.address-card__row:last-child { border-bottom: none; }
.address-card__row span {
  color: var(--sage);
  letter-spacing: .1em;
  width: 24px;
  flex-shrink: 0;
}
.address-card__row b { font-weight: 500; color: var(--ink); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: var(--clay-dark); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

.form-missing {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--sage);
  background: rgba(100,112,124,.08);
  border: 1px dashed var(--sage);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
}

/* ---------------- Header ---------------- */
.site-header { background: var(--paper); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 40; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { max-height: 46px; width: auto; }
.mark { width: 36px; height: 36px; border-radius: 8px; background: var(--clay); color: var(--white); display: flex; align-items: center; justify-content: center; }
.mark svg { width: 20px; height: 20px; }
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.brand-text small { display: block; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); font-weight: 400; }
.links { display: flex; gap: 28px; }
.links a { font-weight: 600; font-size: .95rem; }
.links a:hover { color: var(--clay); }
.actions { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; background: none; border: none; padding: 8px; }
.menu-btn svg { width: 24px; height: 24px; }

.mnav { display: none; }
.mnav.is-open { display: block; position: fixed; inset: 0; z-index: 60; }
.mnav-overlay { position: absolute; inset: 0; background: rgba(20,23,26,.6); }
.mnav-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); background: var(--white); padding: 24px; overflow-y: auto; }
.mobile-close { background: none; border: none; padding: 8px; margin-bottom: 12px; }
.mobile-close svg { width: 22px; height: 22px; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-links a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-donate { width: 100%; justify-content: center; }

/* ---------------- Hero (full-bleed background video/image) ---------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg__media { width: 100%; height: 100%; object-fit: cover; }
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,23,26,.55) 0%, rgba(20,23,26,.7) 100%);
}
.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}
.hero-center .label-tag--light { justify-content: center; margin-inline: auto; }
.hero-center h1 { color: var(--white); }
.hero-center em { color: var(--gold); }
.lead--light { color: rgba(255,255,255,.88); margin-inline: auto; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 28px 0 22px; }
.trust-line { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--sage); font-weight: 600; justify-content: center; }
.trust-line svg { width: 17px; height: 17px; }
.trust-line--light { color: rgba(255,255,255,.8); }

/* ---------------- Strip ---------------- */
.strip { background: var(--ink); color: var(--paper); }
.strip-row { display: flex; justify-content: space-between; padding: 18px 24px; flex-wrap: wrap; gap: 14px 32px; }
.strip-row span { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; }
.strip-row svg { width: 17px; height: 17px; color: var(--gold); }

/* ---------------- Section headers ---------------- */
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------------- Program cards (home preview) ---------------- */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,23,26,.1); }
.pi { display: inline-flex; width: 46px; height: 46px; border-radius: 10px; background: var(--paper-2); color: var(--clay); align-items: center; justify-content: center; margin-bottom: 16px; }
.pi svg { width: 24px; height: 24px; }
.program-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.program-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ---------------- Mission band ---------------- */
.mission-band { background: var(--ink); color: var(--paper); }
.mission-grid { text-align: center; max-width: 760px; margin: 0 auto; }
.mission-band h2 { color: var(--white); }
.mission-band .label-tag { color: var(--gold); border-color: var(--gold); justify-content: center; }
.mission-band .lead { color: rgba(255,255,255,.85); margin-inline: auto; }
.mission-band .btn { margin-top: 10px; }

/* ---------------- Values ---------------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.value-card .vi { display: inline-flex; width: 42px; height: 42px; border-radius: 10px; background: rgba(100,112,124,.12); color: var(--sage); align-items: center; justify-content: center; margin-bottom: 14px; }
.value-card .vi svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------------- CTA band (simple, used on inner pages) ---------------- */
.cta-band-wrap { padding-top: 0; }
.cta-band {
  background: var(--clay);
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 460px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- CTA band (homepage, photo bleed) ---------------- */
.cta-photo-band { position: relative; border-radius: 20px; overflow: hidden; min-height: 420px; display: flex; align-items: center; background: var(--clay-dark); }
.cta-photo-band__media {
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, var(--clay-dark) 0%, var(--clay-dark) 38%, rgba(22,58,92,.35) 65%, rgba(22,58,92,.05) 88%), var(--cta-img);
  background-size: cover; background-position: center;
}
.cta-photo-band__content { position: relative; z-index: 1; padding: 56px; max-width: 560px; color: var(--white); }
.cta-photo-band__content h2 { color: var(--white); margin-bottom: 14px; }
.cta-photo-band__content p { color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 440px; }
.cta-photo-band__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 12px; }
.cta-phone__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-phone__icon svg { width: 20px; height: 20px; }
.cta-phone__text { font-size: .82rem; color: rgba(255,255,255,.75); }
.cta-phone__text b { display: block; font-size: 1.05rem; color: var(--white); font-weight: 700; }

/* ---------------- Pill badge (eyebrow) ---------------- */
.pill-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--clay); margin-bottom: 18px; }
.pill-badge svg { width: 15px; height: 15px; }
.pill-badge--light { color: var(--white); }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero { padding: 72px 0 56px; }
.page-hero .lead { max-width: 640px; }

/* ---------------- About page / Homepage About collage ---------------- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: flex-start; }
.about-media img { border-radius: var(--radius); box-shadow: 0 20px 40px rgba(20,23,26,.15); }

.home-about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
.home-about-media { position: relative; padding: 20px 0 40px 40px; }
.home-about-media img { width: 100%; border-radius: var(--radius); }
.home-about-media img.main { box-shadow: 0 20px 40px rgba(20,23,26,.15); aspect-ratio: 4/5; object-fit: cover; }
.home-about-media img.accent { position: absolute; top: 0; left: 0; width: 48%; border: 6px solid var(--white); box-shadow: 0 16px 30px rgba(20,23,26,.2); }
.about-feature-list { margin: 28px 0; }
.about-feature { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.about-feature:first-child { padding-top: 0; }
.about-feature:last-child { border-bottom: none; padding-bottom: 0; }
.about-feature .vi { width: 48px; height: 48px; border-radius: 12px; background: var(--paper-2); color: var(--clay); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature > div { flex: 1; min-width: 0; }
.about-feature .vi svg { width: 24px; height: 24px; }
.about-feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.about-feature p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------------- Programs detail page (media cards) ---------------- */
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.program-media-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
}
.program-media-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,23,26,.1); }
.program-media-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.program-media-card__media img { width: 100%; height: 100%; object-fit: cover; }
.program-media-card__fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--clay); }
.program-media-card__fallback svg { width: 44px; height: 44px; }
.program-media-card__body { padding: 28px; }
.program-media-card__body h2 { font-size: 1.3rem; margin-bottom: 10px; }
.program-media-card__body h2 a:hover { color: var(--clay); }
.program-media-card__body p { font-size: .95rem; color: var(--ink-soft); }
.program-media-card__body p + p { margin-top: 10px; }
.program-detail__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--clay); margin-top: 14px; }
.program-detail__link:hover { color: var(--clay-dark); }
.program-detail__link svg { width: 16px; height: 16px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 26px; font-size: .95rem; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 4px; background: var(--sage); }

/* ---------------- Volunteer / Contact form panels ---------------- */
.form-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.cf7-wrap { text-align: left; margin-top: 24px; }

/* ---------------- Volunteer page (ways list + form, 2 columns) ---------------- */
.volunteer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.ways-list { display: flex; flex-direction: column; gap: 18px; }
.way-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.way-card .vi { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-2); color: var(--clay); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.way-card .vi svg { width: 20px; height: 20px; }
.way-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.way-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info__item { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.contact-info__item .vi { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-2); color: var(--clay); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__item .vi svg { width: 20px; height: 20px; }
.contact-info__item b { display: block; margin-bottom: 2px; }
.contact-info__item a:hover { color: var(--clay); }

/* Contact Form 7 base styling */
.hidden-fields-container { border: none; padding: 0; margin: 0; }
.screen-reader-response {
  position: absolute; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; padding: 0; border: 0;
}
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea, .wpcf7-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; background: var(--paper-2);
}
.wpcf7-form textarea { min-height: 110px; resize: vertical; }
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus { outline: 2px solid var(--clay); border-color: var(--clay); }
.wpcf7-form input[type="submit"] {
  background: var(--clay); color: var(--white); border: none; border-radius: 999px; padding: 13px 26px; font-weight: 600; font-size: .95rem; cursor: pointer;
}
.wpcf7-form input[type="submit"]:hover { background: var(--clay-dark); }
.wpcf7-form input[type="checkbox"] { width: auto; margin-right: 8px; }
.wpcf7-not-valid-tip { color: #C0392B; font-size: .82rem; margin-top: 4px; }
.wpcf7-form:not(.was-validated) .wpcf7-not-valid-tip { display: none; }
.field p:has(.wpcf7-validates-as-required) > label::after {
  content: '\25CF'; color: #C0392B; font-size: .45em; margin-left: 5px; vertical-align: middle;
}
.wpcf7-response-output { border-radius: 8px; padding: 12px 16px !important; font-size: .9rem; }

.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field p { margin-bottom: 0; }
.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; margin-bottom: 20px; }

.chip-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-checks .wpcf7-list-item { margin: 0; }
.chip-checks .wpcf7-list-item label {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 16px; font-size: .88rem; font-weight: 600; color: var(--ink-soft);
  cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.chip-checks .wpcf7-list-item label:has(input:checked) {
  border-color: var(--clay); background: rgba(44,95,138,.08); color: var(--clay);
}
.chip-checks input[type="checkbox"] { width: auto; margin: 0; accent-color: var(--clay); }

/* ---------------- Donate page ---------------- */
.donate-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; align-items: start; }
.donate-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.donate-tabs { display: flex; gap: 8px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.donate-tab { background: none; border: none; padding: 12px 6px; font-weight: 600; color: var(--ink-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.donate-tab.is-active { color: var(--clay); border-bottom-color: var(--clay); }
.donate-pane { display: none; }
.donate-pane.is-active { display: block; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.amount-btn { padding: 14px 8px; border: 1.5px solid var(--border); border-radius: 10px; background: var(--paper-2); font-weight: 700; font-size: 1rem; }
.amount-btn.is-active { border-color: var(--clay); background: rgba(44,95,138,.08); color: var(--clay); }
.amount-other { margin-bottom: 18px; }
.amount-other label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.amount-other input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; }
.monthly-toggle { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.tribute-toggle { margin: 22px 0; padding-top: 22px; border-top: 1px solid var(--border); }
.payment-method { margin-bottom: 26px; }
.field-label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 10px; }
.payment-options { display: flex; gap: 20px; }
.payment-options label { display: flex; align-items: center; gap: 8px; font-size: .92rem; }
.donate-aside { display: flex; flex-direction: column; gap: 18px; }
.donate-note { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.donate-note .vi { width: 36px; height: 36px; border-radius: 9px; background: var(--paper-2); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.donate-note .vi svg { width: 19px; height: 19px; }
.donate-note p { margin: 0; font-size: .88rem; color: var(--ink-soft); }

/* ---------------- Blog ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__date { font-family: var(--font-mono); font-size: .75rem; color: var(--sage); text-transform: uppercase; letter-spacing: .08em; }
.blog-card h3 { margin: 8px 0; font-size: 1.1rem; }
.blog-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.blog-pagination { margin-top: 40px; text-align: center; }
.single-post__media { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.single-post__back { margin-top: 32px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.single-post__back svg { width: 16px; height: 16px; transform: rotate(180deg); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-about .brand-text { color: var(--white); }
.footer-about .mark { background: var(--gold); color: var(--ink); }
.footer-about p { font-size: .9rem; margin: 16px 0; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-col h4 { color: var(--white); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact span, .footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-ein { font-family: var(--font-mono); font-size: .78rem; opacity: .7; }
.footer-bottom { padding: 22px 24px; font-size: .8rem; text-align: center; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 960px) {
  .about-grid, .contact-grid, .donate-grid, .volunteer-grid, .home-about-grid { grid-template-columns: 1fr; }
  .program-grid, .values-grid, .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-about-media { padding: 0 30px 30px 0; max-width: 440px; margin-inline: auto; }
  .cta-photo-band__media {
    background-image: linear-gradient(90deg, var(--clay-dark) 0%, var(--clay-dark) 55%, rgba(22,58,92,.5) 80%), var(--cta-img);
  }
}

@media (max-width: 680px) {
  .links, .actions .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .program-grid, .values-grid, .blog-grid, .programs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-photo-band__content { padding: 32px; max-width: 100%; }
  .section { padding: 56px 0; }
  .hero { padding: 60px 0; min-height: 520px; }
  .form-panel { padding: 24px; }
  .field-row { flex-direction: column; gap: 0; }
}
