:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #bd9cba;
  --text: #454976;
  --muted: #6f7193;
  --accent: #dbece9;
  --accent-dark: #454976;
  --accent-soft: #d6c6d7;
  --border: #d6c6d7;
  --radius: 12px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  color: var(--accent-dark);
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #111;
  color: #fff;
  padding: 0.5rem 0.75rem;
}

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

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-title {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent-dark);
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: auto;
  height: clamp(38px, 4.2vw, 56px);
  max-width: min(360px, 56vw);
}

.site-tagline {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.primary-nav ul,
.site-footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-cluster {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: flex-end;
}

.header-phone {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone a {
  color: var(--accent-dark);
  text-decoration: none;
}

.header-phone a:hover,
.header-phone a:focus {
  text-decoration: underline;
}

.primary-nav a {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0.25rem 0;
}

.primary-nav .page_item a {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: #2f3258;
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.hero,
.page-hero {
  padding: clamp(2.4rem, 6vw, 4.8rem) 0;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f5f1f7 52%, #bd9cba 100%);
}

.home-hero.has-image {
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(245, 241, 247, 0.65) 42%,
      rgba(189, 156, 186, 0.78) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-static-hero.has-video {
  padding: 0;
  background: #1f1b18;
}

.home-static-hero .hero-video-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.home-static-hero .hero-video {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.home-static-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1rem;
  line-height: 1.7;
}

.home-static-hero.has-video h1,
.home-static-hero.has-video .lead {
  color: #ffffff;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 0 6px rgba(0, 0, 0, 0.85);
}

.home-static-hero.has-video h1 {
  -webkit-text-stroke: 1px #000;
  paint-order: stroke fill;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1rem;
  color: #4f536f;
  max-width: 62ch;
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-static-hero .actions {
  justify-content: center;
  gap: 1rem;
}

.button {
  display: inline-block;
  background: #c9a5c2;
  color: #ffffff;
  text-decoration: none;
  padding: 0.54rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid #c39bbd;
}

.button:hover,
.button:focus {
  background: #ba8eb3;
  color: #ffffff;
}

.button-secondary {
  background: #d6b9d0;
  border: 1px solid #c39bbd;
  color: #ffffff;
}

.section {
  padding: clamp(2rem, 4.4vw, 3.2rem) 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.alt-light {
  background: #f4f0f8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card,
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-number {
  font-size: 1.65rem;
  margin: 0;
}

blockquote {
  margin: 0;
  font-size: 1.22rem;
  font-style: italic;
}

.quote-credit {
  margin-top: 0.8rem;
  color: var(--muted);
}

.content-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 2rem);
}

.home-content {
  max-width: 980px;
}

.utility-strip {
  background: #f4f0f8;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.utility-inner p {
  margin: 0;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.quick-donate {
  background: #d4b6ce;
  border: 1px solid #c39bbd;
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
}

.home-static-hero {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .home-static-hero .hero-video {
    display: none;
  }

  .home-static-hero.has-video {
    background: var(--surface-alt);
  }

  .home-static-hero.has-video .hero-video-wrap {
    min-height: clamp(18rem, 40vw, 28rem);
  }

  .home-static-hero.has-video .hero-overlay {
    position: relative;
    inset: auto;
    padding: clamp(2.4rem, 6vw, 4.8rem) 1rem;
  }
}

.home-static-hero h1 {
  font-size: clamp(2.05rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.home-static-hero .lead {
  margin-inline: auto;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  max-width: 56ch;
  font-weight: 500;
}

.hero-caption {
  margin-top: 1rem;
  font-size: 0.66rem;
  color: var(--muted);
}

.partners h2 {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.partners-carousel-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, #faf7fb 0%, #f4f0f8 100%);
}

.partners-carousel-section h2 {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.partners-lead,
.home-section-lead {
  margin: 0 auto 1.5rem;
  max-width: 52ch;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
}

.partner-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.partner-carousel-viewport {
  flex: 1;
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partner-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.partner-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  min-width: min-content;
}

.partner-carousel-nav {
  flex: 0 0 auto;
  width: 1.65rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(69, 73, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(69, 73, 118, 0.08);
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.partner-carousel-nav:hover,
.partner-carousel-nav:focus {
  background: #fff;
  color: #2f3358;
}

.partner-carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.partner-logo-slot {
  --partner-slot-size: calc((100cqw - 3rem) / 4);
  flex: 0 0 var(--partner-slot-size);
  width: var(--partner-slot-size);
  height: var(--partner-slot-size);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(69, 73, 118, 0.08);
}

.partner-logo-slot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-placeholder {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a8fa8;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.home-static .section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.home-help-section {
  background: #3a3d63;
  color: #fff;
}

.home-help-section h2 {
  color: #fff;
  font-size: clamp(3.6rem, 8vw, 4.5rem);
}

.home-help-section .home-section-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 2.04rem;
  max-width: 62ch;
}

.home-ways-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4fa 100%);
  color: var(--text);
}

.home-ways-section h2 {
  color: var(--accent-dark);
  font-size: clamp(3.6rem, 8vw, 4.5rem);
}

.home-ways-section .home-section-lead {
  color: var(--muted);
  font-size: 2.04rem;
  max-width: 62ch;
}

.home-ways-section .home-help-content h3 {
  color: var(--accent-dark);
}

.home-ways-section .home-help-content p {
  color: var(--text);
}

.home-help-rows {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin-top: 2rem;
}

.home-help-row {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.home-help-row--image-right {
  flex-direction: row;
}

.home-help-row--image-left {
  flex-direction: row;
}

.home-help-content {
  flex: 1;
  min-width: 0;
}

.home-help-content h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 2.9rem;
  line-height: 1.2;
}

.home-help-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 2.1rem;
  line-height: 1.5;
}

.home-help-media {
  --home-help-image-size: clamp(180px, 28vw, 280px);
  flex: 0 0 var(--home-help-image-size);
  width: var(--home-help-image-size);
  height: var(--home-help-image-size);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.home-help-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-help-section .home-help-media--fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.home-help-section .home-help-media--fade.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .home-help-section .home-help-media--fade {
    opacity: 1;
    transition: none;
  }
}

.home-ways-media {
  position: relative;
}

.home-ways-media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  z-index: 1;
}

.home-ways-btn {
  background: var(--accent-dark);
  border: 1px solid #353861;
  color: #fff;
  font-size: 1.64rem;
  padding: 1.08rem 1.9rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(58, 61, 99, 0.35);
}

.home-ways-btn:hover,
.home-ways-btn:focus {
  background: #3a3d63;
  color: #fff;
}

.home-help-section .section-center {
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .home-help-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .home-help-row--image-right .home-help-media {
    order: -1;
  }

  .home-help-media {
    flex-basis: var(--home-help-image-size);
    width: var(--home-help-image-size);
    height: var(--home-help-image-size);
    max-width: none;
    margin: 0 auto;
  }

  .home-ways-btn {
    font-size: 1.2rem;
    padding: 0.85rem 1.2rem;
    white-space: normal;
    line-height: 1.2;
  }
}

.home-events-section .event-feature {
  box-shadow: 0 14px 32px rgba(69, 73, 118, 0.12);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.partner-row span {
  border: 1px solid #ece5ef;
  border-radius: 10px;
  padding: 0.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  background: #fff;
}

.six-up {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 1.1rem;
}

.four-up {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.donation-goal {
  text-align: center;
}

.video-section {
  padding-top: 1.25rem;
  padding-bottom: 1.8rem;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(69, 73, 118, 0.15);
  box-shadow: 0 14px 26px rgba(69, 73, 118, 0.12);
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #1a1a1a;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.event-feature {
  margin-top: 1rem;
  background: linear-gradient(135deg, #bc8bb8 0%, #a977a5 100%);
  color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
}

.event-feature h3,
.event-feature p {
  color: #fff;
  margin-top: 0.45rem;
}

.event-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.event-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

.event-date {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
}

.section-center {
  text-align: center;
  margin-top: 1.1rem;
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.action-card .button {
  align-self: flex-start;
}

.site-footer {
  background: #f2e9f3;
  border-top: 1px solid #dfd1e2;
  margin-top: 2rem;
  padding: 2.2rem 0 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  margin: 0;
  color: #5f5976;
  max-width: 30ch;
}

.footer-social {
  margin-top: 0.9rem !important;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-col h3 {
  margin: 0 0 0.6rem;
  font-size: 1.06rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-col li,
.footer-col a {
  font-size: 0.95rem;
  color: #5f5976;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #ddcedf;
  margin-top: 1.7rem;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: #706a84;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.footer-bottom a {
  font-size: 0.84rem;
  color: #706a84;
  text-decoration: none;
}

/* Support page (page-get-support.php) */
body.fof-support-page #main-content.support-page {
  padding-top: 0;
}

.support-utility {
  background: var(--accent-soft);
  border-bottom: 1px solid rgba(69, 73, 118, 0.12);
  padding: 0.35rem 0;
  font-size: 0.88rem;
}

.support-utility-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.support-utility-phone {
  margin: 0;
  font-weight: 700;
  color: #c62828;
}

.support-utility-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.support-utility-lang {
  color: var(--accent-dark);
  font-weight: 600;
}

.support-utility-icon {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}

.support-quick-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.support-quick-donate:hover,
.support-quick-donate:focus {
  filter: brightness(1.06);
  color: #fff;
}

.support-crisis {
  background: #3a3d63;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.support-crisis-centered {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.support-crisis h2 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
}

.support-crisis-lead {
  margin: 0 auto 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  max-width: 40ch;
}

.support-crisis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
}

.support-crisis-call,
.support-crisis-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.25;
}

.support-crisis-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.support-crisis-call {
  background: #fff;
  color: #c62828;
  border-color: #fff;
}

.support-crisis-call:hover,
.support-crisis-call:focus {
  background: #fff5f5;
  color: #b71c1c;
}

.support-crisis-text {
  background: #ffeb3b;
  color: var(--accent-dark);
  border-color: #fdd835;
}

.support-crisis-text:hover,
.support-crisis-text:focus {
  background: #fdd835;
  color: var(--accent-dark);
}

.support-page-lavender {
  background: linear-gradient(180deg, #f5f0f7 0%, #efe8f2 48%, #ebe3ef 100%);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 2.5rem;
}

.support-intro {
  padding: 0.25rem 0 1.25rem;
  text-align: center;
}

.support-intro-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.support-intro-lead {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.support-assessment-section {
  padding-bottom: 1.5rem;
}

.support-assessment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 8px 24px rgba(69, 73, 118, 0.08);
}

.support-assessment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.support-assessment-kicker {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.support-assessment-step {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.88rem;
}

.support-assessment-progress {
  height: 6px;
  border-radius: 999px;
  background: #e0dce8;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.support-assessment-progress-fill {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c77b9e, #e8a4c4);
}

.support-assessment-question {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.support-assessment-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.support-assessment-radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: var(--accent-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.support-assessment-radio:hover {
  border-color: #c4a8c4;
}

.support-assessment-radio input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.support-assessment-radio-ui {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid #c8c0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease;
}

.support-assessment-radio input:checked + .support-assessment-radio-ui {
  border-color: #bd5a8a;
}

.support-assessment-radio input:checked + .support-assessment-radio-ui::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #bd5a8a;
}

.support-assessment-radio input:focus-visible + .support-assessment-radio-ui {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.support-assessment-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.support-assessment-prev-btn {
  background: #e8e4ec;
  color: #4a4658;
  border: none;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.support-assessment-prev-btn:hover,
.support-assessment-prev-btn:focus {
  background: #ddd8e4;
}

.support-assessment-note {
  flex: 1;
  min-width: min(100%, 220px);
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.support-groups-section {
  padding: 1.5rem 0 2rem;
}

.support-groups-title {
  text-align: center;
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  color: var(--accent-dark);
}

.support-groups-icon {
  margin-right: 0.25rem;
}

.support-groups-subtitle {
  text-align: center;
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.support-groups-note {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.support-checkin-btn {
  background: var(--surface-alt);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
}

.support-checkin-btn:hover,
.support-checkin-btn:focus {
  filter: brightness(1.06);
  color: #fff;
}

.support-ext {
  margin-right: 0.25rem;
  font-size: 0.85em;
}

.support-section-title {
  text-align: center;
  margin-bottom: 0.35rem;
}

.support-section-lead {
  text-align: center;
  margin: 0 auto 1.25rem;
  max-width: 52ch;
  color: #5f5976;
}

.support-option-grid {
  margin-top: 0.5rem;
}

.support-option-card h3 {
  margin-top: 0;
}

.support-inline-link {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.support-inline-link:hover,
.support-inline-link:focus {
  text-decoration: underline;
}

.support-text-remind {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

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

.support-meeting-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-meeting-card {
  box-shadow: 0 8px 22px rgba(69, 73, 118, 0.07);
}

.badge-format,
.badge-topic {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.badge-format.is-inperson {
  background: #e8e4ec;
  color: var(--accent-dark);
}

.badge-format.is-virtual {
  background: var(--accent-dark);
  color: #fff;
}

.badge-topic {
  background: #ebe6ef;
  color: var(--accent-dark);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.support-join-meeting {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.35rem;
  background: var(--surface-alt);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
}

.support-join-meeting:hover,
.support-join-meeting:focus {
  filter: brightness(1.06);
  color: #fff;
}

.support-calendar-add {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}

.support-calendar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.calendar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.6rem;
  border-radius: 8px;
  background: #e5cfe0;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(189, 156, 186, 0.45);
}

.calendar-pill:hover,
.calendar-pill:focus {
  background: #dcc4d8;
  color: var(--accent-dark);
}

.support-parent-guide-section {
  background: #3a3d63;
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.support-parent-guide-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.support-parent-guide-text h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #fff;
}

.support-parent-guide-text p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

.support-parent-guide-section .support-guide-icon {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.2rem;
  line-height: 1;
}

.support-parent-guide-section .support-review-btn {
  background: var(--surface-alt);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
}

.support-parent-guide-section .support-review-btn:hover,
.support-parent-guide-section .support-review-btn:focus {
  filter: brightness(1.06);
  color: #fff;
}

.support-parent-guide-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.support-parent-guide-placeholder {
  min-height: 280px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8dff0, #d6c6d7);
}

.support-groups-section,
.support-parent-guide-section,
.support-directory-section {
  scroll-margin-top: 5.5rem;
}

.support-directory-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4fa 100%);
  padding: clamp(2rem, 4vw, 3rem) 0 2.5rem;
}

.support-directory-page-title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  color: var(--accent-dark);
}

.support-directory-intro {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.support-accordion {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.support-accordion-summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #e4d9ea;
  color: var(--accent-dark);
}

.support-accordion-summary::-webkit-details-marker {
  display: none;
}

.support-accordion-summary::after {
  content: "▼";
  font-size: 0.55rem;
  opacity: 0.65;
  flex-shrink: 0;
}

.support-accordion[open] .support-accordion-summary::after {
  content: "▲";
}

.support-accordion-body {
  padding: 1rem 1rem 0.25rem;
  background: #faf7fb;
}

.directory-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 14px rgba(69, 73, 118, 0.05);
}

.directory-card p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #5a5670;
}

.directory-col:first-child p:first-of-type {
  margin-top: 0.5rem;
}

.directory-name {
  font-weight: 700;
  text-decoration: none;
  color: #3d4a7a;
  font-size: 0.95rem;
}

.directory-name:hover,
.directory-name:focus {
  text-decoration: underline;
}

.directory-name-plain {
  margin: 0;
}

.support-directory-update {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.support-meeting-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.support-meeting-meta {
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.88rem;
  margin: 0 0 0.5rem;
}

.support-meeting-address {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0;
}

.support-guide-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-guide-cta h2 {
  margin: 0 0 0.35rem;
}

.support-guide-cta p {
  margin: 0;
  max-width: 52ch;
  color: #fff;
}

.support-guide-cta .button {
  flex-shrink: 0;
}

.support-page .section.alt .support-guide-cta h2 {
  color: #fff;
}

.support-editor:empty {
  display: none;
}

.support-checkin {
  text-align: center;
  margin: 0 0 1.25rem;
}

.support-meeting-badges {
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: space-between;
  align-items: flex-start;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--accent-dark);
  color: #fff;
}

.badge-soft {
  background: #e8dce9;
  color: var(--accent-dark);
}

.support-meeting-dial {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.35rem 0;
}

.support-meeting-extra {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

.support-library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 0 1.25rem;
}

.filter-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
}

.filter-pill.is-active {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}

.support-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
}

.support-library-card {
  display: block;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease;
}

.support-library-card:hover,
.support-library-card:focus {
  box-shadow: 0 10px 22px rgba(69, 73, 118, 0.1);
}

.support-library-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.lib-tag,
.lib-lang {
  font-size: 0.68rem;
  color: var(--muted);
  margin-right: 0.35rem;
}

.support-library-more {
  text-align: center;
  margin-top: 1.25rem;
}

.support-arrangements h2 {
  margin-top: 0;
}

.support-disclaimer {
  background: #faf8fb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
}

.support-arrangements-placeholder {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Inner pages: Stories, Events, About */
body.fof-stories-page #main-content,
body.fof-events-page #main-content,
body.fof-about-page #main-content,
body.fof-volunteer-page #main-content,
body.fof-service-projects-page #main-content {
  padding-top: 0;
}

.fof-page-intro {
  padding: clamp(2rem, 5vw, 3.25rem) 0 1.5rem;
  text-align: center;
}

.fof-page-intro h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}

.fof-page-lead {
  margin: 0 auto 1.25rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.fof-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0;
}

/* Stories & Memorials */
.memorial-wall-intro,
.about-section-intro {
  max-width: 58ch;
  color: var(--muted);
  margin: 0 0 1rem;
}

.memorial-wall-section h2,
.events-all-section h2,
.about-mission-section h2,
.about-journey-section h2,
.about-leadership-section h2,
.about-legal-section h2,
.about-media-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.events-all-cta {
  text-align: center;
  margin: 1.25rem 0 0;
}

.memorial-wall-section .about-section-intro,
.memorial-wall-intro {
  margin-inline: auto;
  text-align: center;
}

.memorial-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.memorial-empty-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 10px 28px rgba(69, 73, 118, 0.08);
  max-width: 640px;
  margin-inline: auto;
}

.memorial-empty-card h3 {
  margin-top: 0;
}

.memorial-empty-title {
  margin: 1.25rem 0 0.35rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.memorial-empty-action {
  margin: 1.25rem 0 0;
}

.memorial-add-card,
.events-host-card,
.about-contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  box-shadow: 0 10px 28px rgba(69, 73, 118, 0.08);
}

.memorial-add-card h2,
.events-host-card h2,
.about-contact-card h2 {
  margin-top: 0;
}

/* Events page */
.events-section-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.events-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(160px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  background: linear-gradient(135deg, #bc8bb8 0%, #a977a5 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 14px 32px rgba(69, 73, 118, 0.14);
}

.events-featured-card h2,
.events-featured-card p,
.events-featured-subtitle {
  color: #fff;
}

.events-featured-subtitle {
  font-style: italic;
  margin: 0 0 0.75rem;
  opacity: 0.92;
}

.events-featured-aside {
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 1rem;
}

.events-date-block {
  margin-bottom: 0.75rem;
}

.events-date-month,
.events-date-year {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.events-date-day {
  margin: 0.15rem 0;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
}

.events-countdown {
  margin: 0;
  font-size: 0.88rem;
}

.events-featured-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.events-detail-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.events-detail-col h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.events-detail-col p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.events-detail-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.events-detail-list li {
  margin-bottom: 0.35rem;
}

.events-list-heading {
  margin: 1.5rem 0 0.85rem;
  font-size: 1.15rem;
}

.events-list-heading-past {
  margin-top: 2rem;
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.events-list-card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.05rem;
}

.events-list-date {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.events-list-location {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.events-list-badges {
  margin: 0 0 0.35rem;
}

.events-list-card.is-past {
  opacity: 0.88;
}

/* About page */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.about-mission-card h3 {
  margin-top: 0;
}

.about-values-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-values-list li {
  margin-bottom: 0.4rem;
}

.about-journey-section .about-section-intro {
  text-align: center;
  margin-inline: auto;
}

.about-timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
  max-width: 720px;
  margin-inline: auto;
}

.about-timeline-item {
  position: relative;
  padding: 0 0 1.5rem 1.75rem;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--surface-alt);
}

.about-timeline-year {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

.about-timeline-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.about-timeline-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-leadership-section .about-section-intro,
.about-legal-section .about-section-intro,
.about-media-section .about-section-intro {
  text-align: center;
  margin-inline: auto;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.about-info-card h3 {
  margin-top: 0;
}

.about-media-card {
  text-align: center;
  margin-top: 1rem;
}

.about-media-card h3 {
  margin-top: 0;
}

/* How We Help page */
body.fof-help-page #main-content {
  padding-top: 0;
}

.help-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #faf7fb 0%, #f4f0f8 100%);
}

.help-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}

.help-process-section h2,
.help-services-section h2,
.help-team-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.help-process-section .about-section-intro,
.help-services-section .about-section-intro,
.help-team-section .about-section-intro {
  text-align: center;
  margin-inline: auto;
}

.help-process-grid {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.help-process-card {
  text-align: center;
  padding: 1.25rem 1rem;
}

.help-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--surface-alt);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.help-process-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.help-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.help-services-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.help-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  box-shadow: 0 10px 28px rgba(69, 73, 118, 0.08);
}

.help-service-card h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.help-service-lead {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.help-service-details {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.help-service-details li {
  margin-bottom: 0.35rem;
}

.help-service-meta {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.help-meta-box {
  background: #f8f5fa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}

.help-meta-label {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent-dark);
}

.help-meta-box p:last-child {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.help-service-link {
  margin: 0.35rem 0 0;
}

.help-service-link .button {
  width: 100%;
  text-align: center;
}

.help-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.help-team-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.help-team-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.help-team-card p {
  color: var(--muted);
}

.help-cta-card {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #bc8bb8 0%, #a977a5 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(69, 73, 118, 0.14);
}

.help-cta-card h2,
.help-cta-card p {
  color: #fff;
}

.help-cta-card h2 {
  margin: 0 0 0.5rem;
}

.help-cta-card p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.help-cta-card .button {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

.help-cta-card .button:hover,
.help-cta-card .button:focus {
  background: #f8f5fa;
  color: var(--accent-dark);
}

/* Volunteer page */
.volunteer-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #faf7fb 0%, #f4f0f8 100%);
}

.volunteer-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}

.volunteer-why-section h2,
.volunteer-roles-section h2,
.volunteer-next-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.volunteer-why-section .about-section-intro,
.volunteer-roles-section .about-section-intro {
  text-align: center;
  margin-inline: auto;
}

.volunteer-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.volunteer-why-card {
  text-align: center;
  padding: 1.25rem 1rem;
}

.volunteer-why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.volunteer-why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.volunteer-roles-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.volunteer-role-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  box-shadow: 0 10px 28px rgba(69, 73, 118, 0.08);
}

.volunteer-role-card h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.volunteer-role-card h4 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.volunteer-role-lead {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.volunteer-role-aside {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.volunteer-role-apply {
  margin: 0;
}

.volunteer-role-apply .button {
  width: 100%;
  text-align: center;
}

.volunteer-highlight-card {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(188, 139, 184, 0.12) 0%, rgba(169, 119, 165, 0.08) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(69, 73, 118, 0.06);
}

.volunteer-highlight-card h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.volunteer-highlight-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
}

.volunteer-next-grid {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.volunteer-next-card {
  text-align: center;
  padding: 1.25rem 1rem;
}

.volunteer-next-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.volunteer-next-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Service Projects page */
.service-projects-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #faf7fb 0%, #f4f0f8 100%);
}

.service-projects-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}

.service-projects-back {
  margin: 0 0 1rem;
}

.service-projects-back a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.service-projects-back a:hover,
.service-projects-back a:focus {
  text-decoration: underline;
}

.service-projects-intro {
  max-width: 62ch;
  margin: 0 auto 1rem;
  color: var(--muted);
}

.service-projects-current-section h2,
.service-projects-other-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.service-projects-current-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.service-project-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.service-project-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.service-project-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.service-project-image {
  margin: -1rem -1rem 0.85rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f8f5fa;
}

.service-project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-project-action {
  margin: 0;
}

.service-project-action .button {
  width: 100%;
  text-align: center;
}

.service-project-badge {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f3eef5;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-projects-notice {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: #fff8eb;
  border: 1px solid #f0dfbf;
}

.service-projects-notice p {
  margin: 0;
  color: #6b4f1d;
  font-size: 0.92rem;
}

.service-projects-notice a {
  color: #4a3610;
  font-weight: 600;
}

.service-projects-other-list {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.service-projects-other-list li {
  margin-bottom: 0.35rem;
}

.service-projects-accordion {
  max-width: 720px;
  margin-inline: auto;
}

.service-projects-pattern-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-projects-pattern-list li {
  border-top: 1px solid var(--border);
}

.service-projects-pattern-list li:first-child {
  border-top: 0;
}

.service-projects-pattern-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.service-projects-pattern-list a:hover,
.service-projects-pattern-list a:focus {
  color: var(--accent-dark);
}

@media (max-width: 820px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.95rem 0;
  }

  .nav-cluster {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-logo {
    height: clamp(34px, 7.4vw, 48px);
    max-width: min(320px, 84vw);
  }

  .primary-nav ul,
  .primary-nav .menu {
    row-gap: 0.6rem;
  }

  .utility-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-crisis-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-crisis-call,
  .support-crisis-text {
    width: 100%;
  }

  .support-meeting-grid-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-parent-guide-card {
    grid-template-columns: 1fr;
  }

  .support-parent-guide-media {
    order: -1;
  }

  .directory-card {
    grid-template-columns: 1fr;
  }

  .support-guide-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .events-featured-card {
    grid-template-columns: 1fr;
  }

  .events-featured-details {
    grid-template-columns: 1fr;
  }

  .help-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-service-card {
    grid-template-columns: 1fr;
  }

  .help-team-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-why-grid,
  .volunteer-next-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-role-card {
    grid-template-columns: 1fr;
  }

  .service-projects-current-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-slot {
    --partner-slot-size: calc((100cqw - 1rem) / 2);
  }
}

@media (max-width: 560px) {
  .support-meeting-grid-six {
    grid-template-columns: 1fr;
  }

  .help-process-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-slot {
    --partner-slot-size: 100cqw;
  }
}
