:root {
  --ink: #12110f;
  --soft-ink: #3c3935;
  --cream: #f6f0e7;
  --paper: #fffdf8;
  --mint: #dfeee7;
  --teal: #164e54;
  --green: #5fb000;
  --plum: #6f2447;
  --gold: #d99a2b;
  --line: rgba(18, 17, 15, 0.12);
  --shadow: 0 24px 70px rgba(18, 17, 15, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.crisis-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
  background: #050505;
  font-size: 14px;
  font-weight: 700;
}

.crisis-strip button {
  border: 0;
  color: #9fe846;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 86px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.05;
}

.brand em {
  color: var(--teal);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a,
.nav-group > a {
  color: var(--soft-ink);
}

.site-nav a.active,
.site-nav a:hover,
.nav-group:hover > a {
  color: var(--ink);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 100%;
  z-index: 29;
  height: 16px;
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 280px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 17, 15, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu a {
  padding: 10px 12px;
  color: var(--soft-ink);
  white-space: nowrap;
}

.submenu-label {
  display: block;
  padding: 12px 12px 4px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submenu a:hover,
.submenu a.active {
  color: var(--ink);
  background: var(--mint);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-therapist,
.nav-find-therapist,
.nav-donate {
  padding: 12px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-therapist {
  color: var(--ink) !important;
  background: #fff;
  border: 2px solid var(--green);
}

.nav-therapist:hover {
  color: #fff !important;
  background: var(--green);
}

.nav-find-therapist,
.nav-donate {
  color: #fff !important;
  background: var(--green);
}

.nav-find-therapist:hover,
.nav-find-therapist.active {
  color: #fff !important;
  background: var(--teal);
}

.language-tools {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
}

.translate-toggle {
  min-height: 42px;
  padding: 10px 16px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  color: var(--teal);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.translate-toggle:hover,
.translate-toggle[aria-expanded="true"] {
  color: #fff;
  background: var(--teal);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  width: min(260px, calc(100vw - 40px));
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.language-menu[hidden] {
  display: none;
}

.language-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(18, 17, 15, 0.14);
  border-radius: 999px;
  color: var(--teal);
  background: var(--paper);
  font-weight: 900;
  cursor: pointer;
}

.language-button.active,
.language-button:hover {
  color: #fff;
  background: var(--teal);
}

.translate-widget {
  min-height: 36px;
  overflow: hidden;
}

.translate-widget .goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.translate-widget .goog-te-combo {
  width: 100%;
  min-height: 42px;
  margin: 0 !important;
  padding: 8px 12px;
  border: 1px solid rgba(18, 17, 15, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: #fff;
}

#app {
  min-height: 70vh;
  outline: none;
}

.hero,
.page-hero,
.feature-band,
.quick-actions,
.facts-section,
.program-preview,
.newsletter,
.two-column,
.directory-panel,
.contact-grid,
.sponsor-band,
.page-grid,
.event-overview {
  padding-left: clamp(18px, 6vw, 92px);
  padding-right: clamp(18px, 6vw, 92px);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: calc(100vh - 124px);
  padding-top: 72px;
  padding-bottom: 72px;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  background: linear-gradient(115deg, var(--cream) 0%, var(--cream) 58%, var(--mint) 58%);
}

.hero-slider {
  position: relative;
  min-height: max(560px, min(760px, calc(100vh - 124px)));
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #050505;
}

.hero-slide-track {
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: 72px clamp(56px, 9vw, 132px) 96px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide::before {
  z-index: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.22) 36%, rgba(255, 255, 255, 0.08) 43%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 28%, rgba(255, 255, 255, 0.08) 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-slide::after {
  z-index: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -88px 110px rgba(0, 0, 0, 0.38),
    inset 0 0 120px rgba(255, 255, 255, 0.08);
}

.hero-slide.active {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide-image,
.hero-slide-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08) brightness(0.96);
  transform: scale(1.04);
  transition: transform 900ms ease;
}

.hero-slide.active .hero-slide-image {
  transform: scale(1);
}

.hero-slide-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.84) 0%, rgba(18, 17, 15, 0.56) 46%, rgba(18, 17, 15, 0.14) 100%),
    linear-gradient(0deg, rgba(18, 17, 15, 0.6) 0%, rgba(18, 17, 15, 0.05) 52%, rgba(18, 17, 15, 0.25) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
}

.hero-slide h1 {
  max-width: 1050px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-slide .eyebrow {
  color: #b8f24d;
}

.hero-slide .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-slide .button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  min-width: 158px;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-slide .button.primary {
  color: #fff;
  border-color: var(--green);
  background: linear-gradient(180deg, #67c500 0%, #4cab00 100%);
  box-shadow: 0 14px 30px rgba(76, 171, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-slide .button.quiet {
  color: #fff;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.16);
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 17, 15, 0.32);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-control:hover,
.slider-control:focus-visible {
  background: rgba(95, 176, 0, 0.92);
}

.slider-control.prev {
  left: clamp(14px, 2vw, 28px);
}

.slider-control.next {
  right: clamp(14px, 2vw, 28px);
}

.slider-dots {
  position: absolute;
  left: clamp(56px, 9vw, 132px);
  bottom: 38px;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dots button {
  width: 42px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.slider-dots button.active {
  width: 64px;
  background: #b8f24d;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead,
.page-hero p,
.section-heading p,
.feature-band p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 20px;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.button.quiet {
  color: var(--teal);
  border-color: transparent;
  background: #fff;
}

.image-stage {
  height: min(70vh, 680px);
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
  background: var(--ink);
  color: #fff;
}

.quick-actions article,
.quick-action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 34px 38px 34px 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.quick-action-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-action-card:hover,
.quick-action-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(18, 17, 15, 0.22);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  outline: none;
}

.quick-action-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.quick-action-card::after {
  content: "\2192";
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 22px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.quick-action-card:hover::after,
.quick-action-card:focus-visible::after {
  transform: translateX(4px);
}

.quick-actions > :nth-child(3)::after {
  color: var(--ink);
  background: var(--gold);
}

.quick-actions > :nth-child(1) {
  color: var(--ink);
  background: var(--mint);
}

.quick-actions > :nth-child(2) {
  color: #fff;
  background: var(--teal);
}

.quick-actions > :nth-child(3) {
  color: #fff;
  background: var(--plum);
}

.quick-actions article::before,
.quick-action-card::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 34px;
  width: 5px;
  background: var(--green);
}

.quick-actions span,
.program-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-actions h2,
.feature-band h2,
.facts-section h2,
.program-preview h2,
.newsletter h2,
.two-column h2,
.directory-panel h2,
.sponsor-band h2,
.contact-grid h2 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.quick-actions p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.55;
}

.quick-actions > :nth-child(1) p {
  color: rgba(18, 17, 15, 0.78);
  padding-right: 48px;
}

.quick-actions > :nth-child(2)::before {
  background: var(--gold);
}

.quick-actions > :nth-child(3) p {
  color: rgba(255, 255, 255, 0.84);
}

.quick-actions > :nth-child(3)::before {
  background: var(--gold);
}

.quick-actions h2 {
  margin: 0 0 12px;
  max-width: 440px;
  font-size: clamp(21px, 1.6vw, 27px);
  line-height: 1.2;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.feature-band.mint {
  background: var(--mint);
}

.feature-band.cream {
  background: var(--paper);
}

.feature-band.dark {
  color: #fff;
  background: var(--teal);
}

.feature-band.dark p,
.feature-band.dark .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.facts-section,
.program-preview,
.newsletter,
.two-column,
.directory-panel,
.contact-grid,
.sponsor-band,
.page-grid,
.team-page,
.content-page,
.donation-page,
.event-overview {
  padding-top: 88px;
  padding-bottom: 88px;
}

.facts-section {
  background: var(--paper);
}

.fact-grid,
.program-grid,
.two-column,
.contact-grid,
.team-grid,
.content-grid,
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.two-column {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.fact-grid article,
.program-card,
.two-column article,
.contact-grid article,
.team-card,
.content-card,
.tier-grid article {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(18, 17, 15, 0.07);
}

.two-column article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  text-align: left;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.mission-statement {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.18), rgba(18, 17, 15, 0.08)),
    var(--teal);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(18, 17, 15, 0.16);
  isolation: isolate;
}

.mission-statement::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--green);
  z-index: -1;
}

.mission-statement::after {
  content: "";
  position: absolute;
  top: -82px;
  right: -76px;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  z-index: -1;
}

.mission-statement-vision {
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.12), rgba(18, 17, 15, 0.08)),
    var(--plum);
}

.mission-statement-vision::before {
  background: var(--gold);
}

.mission-statement span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 7px 12px;
  color: var(--ink);
  background: #b8f24d;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mission-statement-vision span {
  background: var(--gold);
}

.mission-statement h2 {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.mission-statement p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.58;
}

.contact-card-grid {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card-grid .contact-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 239, 0.9)),
    #fff;
  border-color: rgba(22, 78, 84, 0.14);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--green);
}

.contact-card-email::before {
  background: var(--green);
}

.contact-card-phone::before {
  background: var(--teal);
}

.contact-card-address::before {
  background: var(--plum);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(22, 26, 24, 0.14);
}

.contact-card-email .contact-card-icon {
  background: var(--green);
}

.contact-card-phone .contact-card-icon {
  background: var(--teal);
}

.contact-card-address .contact-card-icon {
  background: var(--plum);
}

.contact-card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-grid .contact-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--teal);
}

.contact-card-grid .contact-card p {
  max-width: 280px;
}

.contact-card-grid .contact-card a {
  color: var(--teal);
  font-weight: 800;
  text-decoration-color: rgba(22, 78, 84, 0.32);
  text-underline-offset: 4px;
}

.contact-card-grid .contact-card a:hover {
  color: var(--plum);
}

.two-column h2 {
  margin-top: 0;
}

.fact-grid strong {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-grid article:nth-child(1) {
  color: #fff8ef;
  background: #5b3927;
  border-color: transparent;
}

.fact-grid article:nth-child(2) {
  color: #fff7ec;
  background: #7a5136;
  border-color: transparent;
}

.fact-grid article:nth-child(3) {
  color: #24160e;
  background: #c49a70;
  border-color: transparent;
}

.fact-grid article:nth-child(1) strong,
.fact-grid article:nth-child(2) strong {
  color: #f4d7ae;
}

.fact-grid article:nth-child(3) strong {
  color: #5b3927;
}

.fact-grid article p {
  color: inherit;
}

.fact-grid p,
.program-card p,
.two-column p,
.contact-grid p,
.team-card p,
.content-card p,
.tier-grid p,
.directory-panel p,
.sponsor-band p {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.62;
}

.section-heading {
  max-width: 860px;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-card h3 {
  margin: 12px 0;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.18;
}

.program-card.with-image {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.program-card-visual {
  height: 190px;
  margin: 0;
  overflow: hidden;
  background: var(--mint);
}

.program-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card-body {
  flex: 1;
  padding: 26px;
}

.program-card.with-image .program-card-body {
  display: flex;
  flex-direction: column;
}

.program-brochure-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.program-brochure-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.program-brochure-link:hover,
.program-brochure-link:focus-visible {
  color: #fff;
  background: var(--teal);
  outline: none;
}

.training-card .program-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.training-card-details {
  margin-top: auto;
  padding-top: 22px;
}

.training-card-details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.training-card-details summary::-webkit-details-marker {
  display: none;
}

.training-card-details summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
}

.training-card-details[open] summary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.training-card-details[open] summary::after {
  content: "-";
  color: var(--ink);
  background: var(--gold);
}

.training-card-details div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.training-card-details div p {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.58;
}

.training-card-details .button {
  width: max-content;
  min-height: 40px;
  margin-top: 8px;
  padding: 9px 14px;
  font-size: 14px;
}

.training-card:nth-child(4) {
  background: var(--mint);
}

.visual-programs {
  align-items: stretch;
}

.program-categories {
  display: grid;
  gap: 58px;
}

.program-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  max-width: 900px;
}

.upcoming-events {
  padding: 88px clamp(18px, 6vw, 92px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.28), rgba(111, 36, 71, 0.34)),
    var(--teal);
}

.events-header,
.event-calendar-layout,
.event-card-grid {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.events-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.events-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.events-header h2 {
  max-width: 780px;
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.events-header p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.upcoming-events .eyebrow {
  color: #b8f24d;
}

.event-source-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto 18px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(95, 176, 0, 0.18), rgba(217, 154, 43, 0.16)),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.event-source-bar span {
  display: block;
  margin-bottom: 7px;
  color: #b8f24d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-source-bar strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.05;
}

.event-source-bar p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.event-source-bar .button {
  white-space: nowrap;
}

.event-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.featured-event-spotlight {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.featured-event-visual {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--mint);
}

.featured-event-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-event-date {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  min-width: 112px;
  padding: 14px 16px 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.featured-event-date span,
.featured-event-date small {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-event-date strong {
  margin: 6px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 0.9;
}

.featured-event-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
}

.featured-event-content .eyebrow {
  color: var(--plum);
}

.featured-event-content h3 {
  margin: 8px 0 14px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
}

.featured-event-content p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.62;
}

.featured-event-content .button {
  width: max-content;
  margin-top: auto;
}

.event-spotlight-actions {
  margin-top: auto;
}

.event-spotlight-actions .button {
  margin-top: 0;
}

.spotlight-meta {
  grid-template-columns: 1fr;
}

.event-month-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.event-month {
  display: flex;
  flex-direction: column;
  min-height: 204px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.event-month.important {
  color: var(--ink);
  background:
    linear-gradient(140deg, rgba(255, 253, 248, 0.98), rgba(246, 240, 231, 0.98)),
    #fffdf8;
  border-color: rgba(217, 154, 43, 0.74);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.event-month-top {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.event-month.important .event-month-top {
  border-bottom-color: rgba(18, 17, 15, 0.14);
}

.event-month-top span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.05;
}

.event-month-top strong {
  color: #b8f24d;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.event-month.important .event-month-top strong {
  color: var(--plum);
}

.event-month p {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.48;
}

.event-month.important p {
  color: var(--soft-ink);
}

.event-month-days {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.event-date-placeholder {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.event-date-pill {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-date-pill.important {
  color: #fff;
  background: var(--plum);
  border-color: var(--plum);
  box-shadow: 0 18px 45px rgba(111, 36, 71, 0.26);
}

.event-date-number {
  display: grid;
  place-items: center;
  min-height: 62px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.event-date-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.event-date-copy b {
  font-size: 17px;
  line-height: 1.15;
}

.event-date-copy small {
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0.78;
}

.event-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 70px clamp(18px, 6vw, 92px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.18), rgba(111, 36, 71, 0.24)),
    var(--teal);
}

.event-cta-band.cream {
  color: var(--ink);
  background: var(--cream);
}

.event-cta-band.compact {
  padding-top: 56px;
  padding-bottom: 56px;
}

.event-cta-band > div:first-child {
  max-width: 860px;
}

.event-cta-band h2 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.event-cta-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.event-cta-band .eyebrow {
  color: #b8f24d;
}

.event-cta-band.cream p {
  color: var(--soft-ink);
}

.event-cta-band.cream .eyebrow {
  color: var(--plum);
}

.event-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.event-cta-band.cream .button:not(.primary) {
  background: #fff;
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card-grid-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.event-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
}

.event-card-image {
  min-height: 230px;
  margin: 0;
  background: var(--mint);
}

.event-card.featured .event-card-image {
  min-height: 100%;
}

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

.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.event-tag {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 12px 0 12px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.08;
}

.event-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.58;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.event-meta span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.event-meta small {
  color: var(--plum);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-meta strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.event-card .button {
  width: max-content;
  margin-top: auto;
}

.event-card .button.small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 14px;
}

.content-page,
.donation-page {
  padding-left: clamp(18px, 6vw, 92px);
  padding-right: clamp(18px, 6vw, 92px);
  background: var(--paper);
}

.donation-impact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  max-width: 1180px;
  margin: 0 auto 26px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.donation-impact-copy {
  padding: clamp(30px, 5vw, 58px);
}

.donation-impact-copy .eyebrow {
  color: #b8f24d;
}

.donation-impact-copy h2,
.donation-ways-heading h2,
.sponsorship-heading h2 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.donation-impact-copy p,
.donation-ways-heading p,
.sponsorship-heading p {
  font-size: 19px;
  line-height: 1.62;
}

.donation-impact-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.donation-ways-heading p,
.sponsorship-heading p {
  color: var(--soft-ink);
}

.donation-impact-copy strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 16px;
  color: var(--ink);
  background: #b8f24d;
  border-radius: 999px;
}

.donation-impact-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
}

.donation-impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donation-impact-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(18, 17, 15, 0.78);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.45;
}

.donation-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.donation-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.donation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.donation-gallery figure:hover img {
  transform: scale(1.035);
}

.donation-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(18, 17, 15, 0.76);
  border-radius: 8px;
  font-weight: 800;
}

.donation-ways-heading {
  margin: 62px auto 0;
  text-align: center;
}

.donation-ways-heading p {
  margin-left: auto;
  margin-right: auto;
}

.content-card span,
.tier-grid span {
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card h3,
.tier-grid h3 {
  margin: 12px 0;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.18;
}

.content-card .button {
  min-height: 42px;
  margin-top: 12px;
  padding: 9px 14px;
  font-size: 14px;
}

.single-card-grid {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.blog-page {
  background: linear-gradient(180deg, var(--cream), #fffaf2 58%, var(--mint));
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.blog-article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 8px solid var(--gold);
  box-shadow: 0 16px 46px rgba(18, 17, 15, 0.09);
}

.blog-article-card:nth-child(2) {
  border-top-color: var(--green);
}

.blog-article-card:nth-child(3) {
  border-top-color: var(--plum);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 22px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 8px;
}

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

.blog-article-card:nth-child(1) .blog-card-image img {
  object-position: 50% 22%;
}

.blog-article-card:nth-child(2) .blog-card-image img {
  object-position: 50% 50%;
}

.blog-article-card:nth-child(3) .blog-card-image img {
  object-position: 50% 24%;
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.blog-card-top span,
.blog-card-top small,
.blog-sources h4,
.blog-points h4 {
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-top small {
  color: var(--soft-ink);
  white-space: nowrap;
}

.blog-article-card h3 {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

.blog-article-card p,
.blog-article-card li {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.65;
}

.blog-article-card details {
  margin-top: auto;
  padding-top: 18px;
}

.blog-article-card summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.blog-article-card summary::-webkit-details-marker {
  display: none;
}

.blog-article-card summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.blog-article-card details[open] summary::after {
  content: "-";
}

.blog-article-body {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.blog-points {
  margin: 26px 0;
  padding: 22px;
  background: var(--mint);
  border-left: 6px solid var(--green);
}

.blog-points h4,
.blog-sources h4 {
  margin: 0 0 14px;
}

.blog-points ul {
  margin: 0;
  padding-left: 20px;
}

.blog-points li + li {
  margin-top: 10px;
}

.blog-takeaway {
  padding: 18px 20px;
  color: var(--ink) !important;
  background: #f3d487;
  border-left: 6px solid var(--plum);
  font-weight: 700;
}

.blog-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.blog-sources h4 {
  flex-basis: 100%;
}

.blog-sources a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--teal);
  background: #fff;
  border: 1px solid rgba(22, 78, 84, 0.24);
  border-radius: 999px;
  font-weight: 800;
}

.updates-page {
  background: linear-gradient(180deg, var(--paper), #fffaf2 58%, var(--mint));
}

.updates-feature-card {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 34px auto 0;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(34, 93, 81, 0.94), rgba(122, 34, 77, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(217, 154, 43, 0.45), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(18, 17, 15, 0.18);
  color: #fff;
}

.updates-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--gold);
}

.updates-feature-card span {
  color: #ffd77a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.updates-feature-card h3 {
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.updates-feature-card p {
  max-width: 580px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.65;
}

.updates-feature-card .button {
  background: #fff;
  border-color: #fff;
  color: var(--teal);
}

.updates-feature-card .button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #14110f;
}

.news-embed-shell {
  max-width: 1180px;
  margin: 34px auto 0;
}

.news-embed-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(18, 17, 15, 0.11);
}

.news-embed-frame iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.news-embed-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-embed-fallback p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .news-embed-frame iframe {
    min-height: 620px;
  }

  .news-embed-fallback {
    align-items: stretch;
    flex-direction: column;
  }

  .news-embed-fallback .button {
    width: 100%;
  }
}

.contact-map-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  padding: clamp(44px, 6vw, 86px) clamp(18px, 6vw, 92px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 78, 84, 0.98), rgba(111, 36, 71, 0.95)),
    var(--teal);
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.contact-map-copy .eyebrow {
  color: #f3d487;
}

.contact-map-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.contact-map-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.6;
}

.contact-map-copy .button:not(.primary) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.contact-map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.donation-options {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.donation-options .content-card {
  border: 0;
  border-radius: 8px;
}

.donation-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.donation-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.donation-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 150px;
  min-height: 58px;
  margin-bottom: 22px;
  padding: 10px 16px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 17, 15, 0.14);
  font-weight: 900;
  line-height: 1;
}

.canadahelps-logo {
  gap: 1px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.canadahelps-logo b {
  color: #e1433f;
}

.canadahelps-logo strong {
  color: #2f8f4e;
}

.paypal-logo {
  gap: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.paypal-logo b {
  color: #003087;
}

.paypal-logo strong {
  color: #009cde;
}

.mail-logo {
  gap: 12px;
  color: var(--teal);
  font-size: 22px;
}

.mail-logo svg {
  width: 54px;
  height: 38px;
}

.mail-logo rect,
.mail-logo path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donation-options .content-card:nth-child(1) {
  color: #fff;
  background: var(--plum);
}

.donation-options .content-card:nth-child(2) {
  color: #fff;
  background: var(--teal);
}

.donation-options .content-card:nth-child(3) {
  color: var(--ink);
  background: #f3d487;
}

.donation-options .content-card h3,
.donation-options .content-card p,
.donation-options .content-card span {
  color: inherit;
}

.donation-options .content-card p {
  opacity: 0.88;
}

.donation-options .content-card .button {
  color: var(--ink);
  background: #fff;
  border-color: transparent;
}

.praise-wall {
  max-width: 1180px;
  margin: 72px auto 0;
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(223, 238, 231, 0.96), rgba(246, 240, 231, 0.95)),
    var(--mint);
  border: 1px solid rgba(18, 17, 15, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.praise-heading {
  margin: 0 auto;
  text-align: center;
}

.praise-heading p {
  margin-left: auto;
  margin-right: auto;
}

.praise-wall-panel {
  margin: clamp(26px, 4vw, 42px) auto 0;
  padding: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  background: #fff;
  border: 1px solid rgba(18, 17, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(18, 17, 15, 0.12);
}

.praise-wall-panel img {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
  object-fit: contain;
}

.praise-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.praise-logo {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  color: var(--teal);
  background: #fff;
  border: 1px solid rgba(18, 17, 15, 0.12);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18, 17, 15, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.praise-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 181, 0, 0.55);
  box-shadow: 0 18px 38px rgba(18, 17, 15, 0.13);
}

.praise-logo img {
  display: block;
  max-width: 88%;
  max-height: 74px;
  object-fit: contain;
}

.praise-logo img + span {
  margin-top: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--soft-ink);
}

.praise-logo span {
  display: block;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 900;
  line-height: 1.08;
}

.praise-logo.green {
  color: #103f35;
  background: #b8f24d;
}

.praise-logo.blue {
  color: #fff;
  background: #1d5f9f;
}

.praise-logo.gold {
  color: var(--ink);
  background: #f3d487;
}

.praise-logo.canadahelps {
  color: #2f8f4e;
  background: #fff;
}

.praise-logo.canadahelps span::first-letter {
  color: #e1433f;
}

.praise-logo.greenshield {
  color: #005c4b;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 238, 231, 0.94)),
    #fff;
}

.praise-logo.greenshield span {
  position: relative;
  padding-left: 38px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  letter-spacing: 0;
}

.praise-logo.greenshield span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%) rotate(45deg);
  border: 6px solid #005c4b;
  border-top-color: transparent;
  border-left-color: transparent;
}

.praise-logo.ink {
  color: #fff;
  background: var(--ink);
}

.praise-logo.plum {
  color: #fff;
  background: var(--plum);
}

.praise-logo.red {
  color: #fff;
  background: #b3262f;
}

.praise-logo.paper {
  color: var(--ink);
  background: var(--paper);
}

.praise-logo.teal {
  color: #fff;
  background: var(--teal);
}

.praise-logo.mint {
  color: var(--teal);
  background: var(--mint);
}

.sponsorship-heading {
  margin: 72px auto 0;
  text-align: center;
}

.tier-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tier-grid article {
  border-radius: 8px;
  background: var(--cream);
}

.tier-grid article:nth-child(1) {
  background: #f8ead3;
}

.tier-grid article:nth-child(2) {
  background: var(--mint);
}

.tier-grid article:nth-child(3) {
  background: #f3d487;
}

.tier-grid article:nth-child(4) {
  color: #fff;
  background: var(--plum);
}

.tier-grid article:nth-child(4) h3,
.tier-grid article:nth-child(4) p,
.tier-grid article:nth-child(4) span {
  color: #fff;
}

.event-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  background: var(--mint);
}

.event-intro h2 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.event-intro p {
  color: var(--soft-ink);
  font-size: 19px;
  line-height: 1.62;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.event-facts article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.event-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-facts strong {
  color: var(--teal);
  font-size: 21px;
  line-height: 1.2;
}

.content-page.alt {
  background: var(--cream);
}

.theme-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.theme-list span {
  padding: 18px 20px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
  line-height: 1.35;
}

.resource-page {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mint) 100%);
}

.resource-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.resource-callout .eyebrow {
  color: #b8f24d;
}

.resource-callout h2 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.resource-callout p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.62;
}

.resource-heading {
  margin: 72px auto 0;
  text-align: center;
}

.resource-heading p {
  margin-left: auto;
  margin-right: auto;
}

.resource-region-list {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.resource-region {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(18, 17, 15, 0.07);
}

.resource-region h3 {
  margin: 0 0 20px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.12;
}

.resource-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-area {
  padding: 22px;
  background: var(--cream);
  border-radius: 8px;
}

.resource-area h4 {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 18px;
}

.resource-area ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.resource-area li {
  color: var(--soft-ink);
  line-height: 1.48;
}

.team-page {
  padding-left: clamp(18px, 6vw, 92px);
  padding-right: clamp(18px, 6vw, 92px);
  background: var(--paper);
}

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

.team-section + .team-section {
  margin-top: 72px;
}

.team-card.with-image {
  overflow: hidden;
  padding: 0;
}

.team-card {
  align-self: start;
}

.team-card-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mint);
}

.team-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card-body {
  padding: 30px;
}

.team-card span {
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 12px 0;
  color: var(--teal);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
}

.team-card-summary {
  color: var(--ink);
  font-weight: 800;
}

.team-card-details {
  margin-top: 16px;
}

.team-card-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--teal);
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  list-style: none;
}

.team-card-details summary::-webkit-details-marker {
  display: none;
}

.team-card-details summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
}

.team-card-details[open] summary {
  color: #fff;
  background: var(--teal);
}

.team-card-details[open] summary::after {
  content: "-";
}

.team-card-bio {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.team-card-bio p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.6;
}

.center {
  margin-top: 34px;
  text-align: center;
}

.newsletter {
  color: #fff;
  background: var(--plum);
  text-align: center;
}

.newsletter .eyebrow,
.newsletter p {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 760px;
  margin: 26px auto 0;
  gap: 12px;
}

.newsletter label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  text-align: left;
}

.newsletter input {
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  background: #fff;
}

.newsletter button {
  align-self: end;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.page-hero {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--paper);
}

.image-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.86), rgba(18, 17, 15, 0.5)),
    var(--hero-image) center / cover no-repeat;
}

.image-hero .eyebrow,
.image-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.harlyn-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  min-height: 620px;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 6vw, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 14%, rgba(217, 154, 43, 0.22), transparent 32%),
    linear-gradient(135deg, #1d1015 0%, #6f2447 46%, #164e54 100%);
  overflow: hidden;
}

.harlyn-hero-copy {
  max-width: 760px;
}

.harlyn-hero .eyebrow {
  color: #f3d487;
}

.harlyn-hero h1,
.harlyn-section h2,
.harlyn-story-card h2,
.harlyn-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: 0;
}

.harlyn-hero h1 {
  max-width: 840px;
  font-size: clamp(40px, 5.8vw, 82px);
}

.harlyn-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.68;
}

.harlyn-dates {
  margin: 22px 0 0;
  color: #f3d487 !important;
  font-weight: 900;
}

.harlyn-tagline {
  margin: 14px 0 0;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px) !important;
  font-style: italic;
  line-height: 1.18 !important;
}

.harlyn-portrait {
  position: relative;
  width: min(100%, 460px);
  margin: 0;
  justify-self: center;
}

.harlyn-portrait::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 26px;
  border: 1px solid rgba(243, 212, 135, 0.55);
}

.harlyn-portrait img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  border: 10px solid rgba(255, 253, 248, 0.92);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.harlyn-memorial-band {
  padding: clamp(28px, 4vw, 48px) clamp(18px, 6vw, 92px);
  color: #2b1b12;
  background: #f3d487;
  text-align: center;
}

.harlyn-memorial-band p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
}

.harlyn-page {
  padding: clamp(50px, 6vw, 90px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 240, 231, 0.98)),
    var(--cream);
}

.harlyn-page > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.harlyn-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
}

.harlyn-story-card,
.harlyn-facts article,
.scholarship-callout,
.harlyn-crisis {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(18, 17, 15, 0.08);
}

.harlyn-story-card {
  padding: clamp(30px, 4vw, 56px);
}

.harlyn-story-card h2,
.harlyn-section h2,
.harlyn-cta h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
}

.harlyn-story-card p,
.harlyn-section p,
.harlyn-checklist,
.harlyn-steps p,
.harlyn-crisis p,
.harlyn-cta p {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.7;
}

.harlyn-quote {
  margin: 34px 0;
  padding: 28px;
  color: #fff;
  background: var(--plum);
  border-left: 6px solid var(--gold);
}

.harlyn-quote p {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
}

.harlyn-quote cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-weight: 800;
}

.harlyn-facts {
  display: grid;
  gap: 14px;
  align-self: start;
}

.harlyn-facts article {
  padding: 24px;
  border-left: 6px solid var(--gold);
}

.harlyn-facts span,
.harlyn-steps span {
  display: block;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.harlyn-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 20px;
  line-height: 1.25;
}

.harlyn-section {
  margin-top: clamp(44px, 6vw, 78px);
}

.harlyn-section > p,
.harlyn-section > h2 {
  max-width: 900px;
}

.harlyn-section.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.scholarship-callout {
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
}

.scholarship-callout strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.scholarship-callout.gold {
  background: #fff7dd;
  border-left: 8px solid var(--gold);
}

.scholarship-callout.teal {
  color: #fff;
  background: var(--teal);
  border: 0;
}

.scholarship-callout.teal strong,
.scholarship-callout.teal p {
  color: #fff;
}

.scholarship-callout a,
.harlyn-crisis a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.harlyn-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.harlyn-checklist li {
  padding: 18px 20px 18px 24px;
  background: #fff;
  border-left: 6px solid var(--green);
  box-shadow: 0 12px 34px rgba(18, 17, 15, 0.06);
}

.harlyn-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.harlyn-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.harlyn-steps span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--plum);
  border-radius: 50%;
  font-size: 18px;
}

.harlyn-steps h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 23px;
}

.harlyn-steps p {
  margin: 0;
}

.harlyn-section.resources .content-grid {
  grid-template-columns: repeat(3, 1fr);
}

.harlyn-crisis {
  margin-top: clamp(44px, 6vw, 78px);
  padding: clamp(26px, 4vw, 42px);
  border-left: 8px solid var(--plum);
}

.harlyn-crisis strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.harlyn-cta {
  padding: clamp(48px, 6vw, 84px) clamp(18px, 6vw, 92px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(111, 36, 71, 0.96), rgba(22, 78, 84, 0.98)),
    var(--teal);
}

.harlyn-cta > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.harlyn-cta .eyebrow {
  color: #f3d487;
}

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

.harlyn-memory-line {
  margin-top: 34px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px !important;
}

.page-grid {
  background: var(--cream);
}

.sponsor-band,
.directory-panel {
  background: var(--mint);
}

.directory-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.filter-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.filter-preview span {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.directory-explorer {
  padding: 88px clamp(18px, 6vw, 92px);
  background:
    linear-gradient(180deg, var(--mint) 0%, var(--paper) 52%),
    var(--paper);
}

.directory-matchmaker {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto 24px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(237, 248, 243, 0.96), rgba(248, 242, 232, 0.92)),
    #fff;
  border: 1px solid rgba(18, 78, 84, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 17, 15, 0.08);
}

.matchmaker-intro,
.matchmaker-form {
  border-radius: 8px;
}

.matchmaker-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(18, 78, 84, 0.94), rgba(111, 36, 71, 0.92));
}

.matchmaker-intro h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.matchmaker-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.matchmaker-intro .eyebrow {
  color: var(--gold);
}

.matchmaker-note {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 800;
}

.matchmaker-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  background: #fff;
  border: 1px solid var(--line);
}

.matchmaker-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.matchmaker-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--ink);
  border: 0;
  font-weight: 900;
}

.matchmaker-field.wide {
  grid-column: 1 / -1;
}

.matchmaker-field legend {
  margin-bottom: 10px;
}

.matchmaker-field select,
.matchmaker-field input,
.matchmaker-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
}

.matchmaker-field textarea {
  resize: vertical;
  line-height: 1.45;
}

.matchmaker-field select:focus,
.matchmaker-field input:focus,
.matchmaker-field textarea:focus {
  outline: 3px solid rgba(89, 183, 0, 0.2);
  border-color: var(--green);
}

.matchmaker-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.matchmaker-chip {
  position: relative;
}

.matchmaker-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.matchmaker-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--teal);
  background: rgba(237, 248, 243, 0.78);
  border: 1px solid rgba(18, 78, 84, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.matchmaker-chip input:checked + span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 8px 22px rgba(18, 78, 84, 0.16);
}

.matchmaker-chip input:focus-visible + span {
  outline: 3px solid rgba(89, 183, 0, 0.28);
  outline-offset: 2px;
}

.matchmaker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matchmaker-actions .button {
  cursor: pointer;
}

.matchmaker-results {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(248, 242, 232, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.matchmaker-results > p {
  margin: 0;
  color: var(--soft-ink);
}

.matchmaker-results > strong {
  color: var(--teal);
  font-size: 18px;
}

.matchmaker-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.matchmaker-result-card {
  display: grid;
  gap: 9px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(18, 78, 84, 0.16);
  border-radius: 8px;
}

.matchmaker-result-card span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matchmaker-result-card h3 {
  margin: 0;
  color: var(--teal);
  font-size: 20px;
  line-height: 1.15;
}

.matchmaker-result-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.35;
}

.matchmaker-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.matchmaker-reasons em {
  padding: 6px 8px;
  color: var(--teal);
  background: rgba(89, 183, 0, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.directory-matchmaker.compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 18px;
  padding: 16px 18px;
}

.matchmaker-mini-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  min-width: 0;
}

.matchmaker-mini-copy .eyebrow,
.matchmaker-mini-copy h2,
.matchmaker-mini-copy p {
  margin: 0;
}

.matchmaker-mini-copy h2 {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.matchmaker-mini-copy p {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.35;
}

.matchmaker-wizard {
  grid-column: 1 / -1;
  padding: 18px;
}

.matchmaker-step-status {
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matchmaker-step .matchmaker-field {
  gap: 10px;
}

.matchmaker-step .matchmaker-field legend {
  color: var(--teal);
  font-size: 20px;
  line-height: 1.2;
}

.matchmaker-step .matchmaker-field p {
  margin: -4px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 500;
}

.directory-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.directory-controls,
.directory-results-panel,
.directory-cta-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 17, 15, 0.08);
}

.directory-controls {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 22px;
  padding: 28px;
}

.directory-controls h2 {
  margin: 10px 0 10px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
}

.directory-controls p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.directory-search,
.directory-filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.directory-search input,
.directory-filter-grid input,
.directory-filter-grid select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.directory-search input:focus,
.directory-filter-grid input:focus,
.directory-filter-grid select:focus {
  outline: 3px solid rgba(89, 183, 0, 0.2);
  border-color: var(--green);
}

.directory-filter-grid {
  display: grid;
  gap: 14px;
}

.directory-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.directory-action-row .button {
  border: 2px solid var(--ink);
  cursor: pointer;
}

.directory-action-row .button.primary {
  border-color: var(--green);
}

.directory-source-note {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.directory-source-note strong {
  color: var(--plum);
}

.directory-source-note span {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.directory-results-panel {
  padding: clamp(20px, 3vw, 34px);
}

.directory-result-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.directory-result-summary strong {
  color: var(--teal);
  font-size: 18px;
}

.directory-result-summary span {
  max-width: 430px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}

.directory-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, #fff 0%, rgba(237, 248, 243, 0.45) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.provider-card.filter-match {
  border-color: rgba(89, 183, 0, 0.42);
  box-shadow: 0 18px 38px rgba(22, 26, 24, 0.1);
}

.provider-card.ai-match {
  border-color: rgba(111, 36, 71, 0.36);
  box-shadow: 0 20px 44px rgba(111, 36, 71, 0.12);
}

.provider-card.ai-match::after {
  content: "Suggested match";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  color: #fff;
  background: var(--plum);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.provider-card.ai-match-focus {
  outline: 4px solid rgba(89, 183, 0, 0.24);
  outline-offset: 3px;
}

.provider-card.filter-match::before {
  content: "Matches selected filters";
  align-self: flex-start;
  margin-bottom: -4px;
  padding: 7px 10px;
  color: var(--teal);
  background: rgba(89, 183, 0, 0.12);
  border: 1px solid rgba(89, 183, 0, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.provider-card-top {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.provider-avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: #fff;
  background: var(--plum);
  border-radius: 18px;
  font-weight: 900;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 14px 32px rgba(22, 26, 24, 0.12);
  flex: 0 0 auto;
}

.provider-photo {
  margin: 0;
}

.provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.provider-photo-missing {
  background:
    linear-gradient(145deg, rgba(98, 172, 0, 0.86), rgba(18, 78, 84, 0.94));
  color: #fff;
  position: relative;
}

.provider-photo-missing::after {
  content: "Photo";
  position: absolute;
  right: 50%;
  bottom: 9px;
  transform: translateX(50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.provider-photo-missing span {
  transform: translateY(-4px);
}

.provider-location,
.provider-practice {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.35;
}

.provider-card h3 {
  margin: 3px 0;
  color: var(--teal);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.18;
}

.provider-summary {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.58;
}

.provider-availability {
  margin: -4px 0 0;
  padding: 12px 14px;
  color: var(--teal);
  background: rgba(237, 248, 243, 0.92);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.provider-meta,
.provider-tags,
.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-meta span,
.provider-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.provider-meta span {
  color: #fff;
  background: var(--teal);
}

.provider-tags span {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.provider-actions {
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.provider-actions .button.small {
  min-height: 44px;
  padding: 10px 16px;
}

.provider-actions .quiet-provider {
  color: var(--teal);
  background: #fff;
  border: 2px solid var(--teal);
}

.provider-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--teal);
  font-weight: 900;
}

.provider-contact-details {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.provider-contact-details a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.provider-details {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.provider-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  cursor: pointer;
  color: var(--teal);
  background: #fff;
  font-weight: 900;
  line-height: 1;
  list-style: none;
}

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

.provider-details summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
}

.provider-details summary:hover {
  color: #fff;
  background: var(--teal);
}

.provider-details[open] summary {
  color: #fff;
  background: var(--teal);
}

.provider-details[open] summary::after {
  content: "-";
}

.provider-full-bio {
  margin-top: 14px;
  padding: 16px;
  background: var(--paper);
  border-radius: 8px;
}

.provider-full-bio strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.provider-full-bio p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.6;
}

.provider-detail-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
}

.provider-detail-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
  gap: 12px;
}

.provider-detail-list dt {
  color: var(--plum);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.provider-detail-list dd {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.provider-detail-list a {
  color: var(--teal);
  font-weight: 900;
}

.directory-empty {
  margin: 22px 0 0;
  padding: 20px;
  color: var(--soft-ink);
  background: var(--cream);
  border-radius: 8px;
}

.directory-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 64px clamp(18px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(237, 248, 243, 0.92), rgba(255, 246, 224, 0.95)),
    var(--mint);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.directory-cta-panel h2 {
  max-width: 820px;
  margin: 10px 0 12px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.directory-cta-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.6;
}

.join-therapist-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 88px clamp(18px, 6vw, 92px);
  background:
    linear-gradient(180deg, var(--mint) 0%, var(--paper) 46%),
    var(--paper);
}

.join-therapist-intro,
.therapist-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 17, 15, 0.09);
}

.join-therapist-intro {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(22, 78, 84, 0.96), rgba(111, 36, 71, 0.92)),
    var(--teal);
}

.join-therapist-intro .eyebrow {
  color: #d7ff94;
}

.join-therapist-intro h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.02;
}

.join-therapist-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.6;
}

.join-profile-preview {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.join-profile-preview strong {
  color: var(--teal);
}

.join-profile-preview span {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.therapist-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  background: #fff;
}

.therapist-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, rgba(246, 240, 231, 0.42) 100%);
}

.therapist-form legend {
  padding: 0 10px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.therapist-form label,
.field-label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.therapist-form input,
.therapist-form select,
.therapist-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.45;
}

.therapist-form textarea {
  resize: vertical;
}

.therapist-form input:focus,
.therapist-form select:focus,
.therapist-form textarea:focus {
  outline: 3px solid rgba(89, 183, 0, 0.22);
  border-color: var(--green);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-grid.stacked {
  align-items: start;
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-chip {
  display: inline-flex !important;
  gap: 8px !important;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--soft-ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.checkbox-chip input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--green);
}

.checkbox-chip span {
  font-size: 13px;
  font-weight: 800;
}

.therapist-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 10px 4px 0;
}

.therapist-form-actions .button {
  border: 0;
  cursor: pointer;
}

.therapist-form-actions .button:not(.primary) {
  border: 2px solid var(--ink);
}

.form-status {
  flex: 1 1 260px;
  margin: 0;
  color: var(--teal);
  font-weight: 900;
  line-height: 1.35;
}

.live-application-panel {
  display: grid;
  gap: 22px;
}

.live-application-copy,
.application-frame-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 17, 15, 0.09);
}

.live-application-copy {
  padding: clamp(24px, 3vw, 36px);
}

.live-application-copy h3 {
  margin: 10px 0 14px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.live-application-copy p {
  max-width: 780px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.6;
}

.application-frame-wrap {
  overflow: hidden;
  background: var(--paper);
}

.application-frame {
  display: block;
  width: 100%;
  min-height: 1180px;
  border: 0;
  background: #fff;
}

.application-fallback {
  margin: 0;
  color: var(--soft-ink);
  font-weight: 800;
  line-height: 1.45;
}

.urgent {
  border-color: rgba(111, 36, 71, 0.35);
}

.urgent h3 {
  color: var(--plum);
}

.therapist-email-tool {
  padding: clamp(34px, 6vw, 86px) clamp(18px, 6vw, 92px);
  background: linear-gradient(135deg, var(--mint), #fffdf8 48%, #f3e4d5);
}

.email-tool-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.email-tool-intro h2 {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.email-tool-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.7;
}

.email-tool-stats {
  display: grid;
  align-content: center;
  padding: 24px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.email-tool-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 0.9;
}

.email-tool-stats span {
  margin-top: 8px;
  font-weight: 900;
}

.email-tool-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: start;
}

.email-tool-panel {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 17, 15, 0.08);
}

.email-tool-panel h3 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 24px;
}

.email-tool-panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 900;
}

.email-tool-panel input,
.email-tool-panel select,
.email-tool-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 700;
}

.email-tool-panel textarea {
  resize: vertical;
  line-height: 1.55;
}

.email-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.email-tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}

.email-tool-actions.stacked {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.email-selection-status,
.email-tool-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--plum);
  font-weight: 900;
}

.recipient-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 6px;
}

.recipient-row {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px !important;
  align-items: start;
  margin: 0 !important;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, var(--paper));
}

.recipient-row[hidden] {
  display: none !important;
}

.recipient-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--green);
}

.recipient-row span,
.recipient-row strong,
.recipient-row small,
.recipient-row em {
  display: block;
}

.recipient-row strong {
  color: var(--teal);
  font-size: 17px;
}

.recipient-row small {
  margin-top: 4px;
  color: var(--soft-ink);
  line-height: 1.4;
}

.recipient-row em {
  margin-top: 8px;
  color: var(--plum);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cubedrive-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 5px solid var(--gold);
  background: var(--cream);
}

.cubedrive-note p:last-child {
  margin-bottom: 0;
  color: var(--soft-ink);
  line-height: 1.6;
}

.site-footer {
  position: relative;
  display: block;
  padding: 62px clamp(18px, 6vw, 92px) 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.96), rgba(35, 25, 18, 0.98)),
    var(--ink);
  border-top: 6px solid #c49a70;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(240px, 0.8fr) minmax(360px, 1.15fr);
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
  align-items: stretch;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 16px;
}

.footer-brand-card,
.footer-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.footer-brand-card {
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.1), rgba(196, 154, 112, 0.1)),
    rgba(255, 253, 248, 0.05);
}

.footer-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 0 22px;
  padding: 0;
  background: transparent;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.footer-brand-card p,
.footer-card p {
  margin: 0;
}

.footer-kicker {
  margin-bottom: 10px;
  color: #d9b572 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-card h3 {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-contact a {
  width: max-content;
  max-width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(217, 181, 114, 0.45);
}

.footer-contact a:hover,
.footer-link-grid a:hover {
  color: #fffdf8;
}

.footer-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-pill {
  width: auto;
  padding: 11px 16px;
  color: var(--ink) !important;
  background: #d9b572;
  border: 1px solid #d9b572;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1 !important;
}

.footer-pill.quiet {
  color: #fffdf8 !important;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.footer-link-grid a {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
}

.footer-link-grid a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  background: #d9b572;
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1220px;
  margin: 26px auto 0;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .split-hero,
  .feature-band,
  .mission-vision,
  .directory-panel,
  .donation-impact-panel,
  .event-cta-band,
  .event-calendar-layout,
  .contact-map-band,
  .harlyn-hero,
  .harlyn-story-grid,
  .harlyn-section.split,
  .event-overview {
    grid-template-columns: 1fr;
  }

  .mission-statement {
    min-height: 320px;
  }

  .harlyn-hero {
    min-height: 0;
  }

  .harlyn-portrait {
    justify-self: start;
    width: min(100%, 420px);
  }

  .harlyn-section.resources .content-grid {
    grid-template-columns: 1fr;
  }

  .donation-impact-photo {
    min-height: 360px;
  }

  .donation-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .donation-gallery figure:first-child {
    grid-column: span 2;
  }

  .hero-slide {
    padding-left: clamp(42px, 8vw, 92px);
    padding-right: clamp(42px, 8vw, 92px);
  }

  .hero-slide-overlay {
    background:
      linear-gradient(90deg, rgba(18, 17, 15, 0.86) 0%, rgba(18, 17, 15, 0.62) 64%, rgba(18, 17, 15, 0.28) 100%),
      linear-gradient(0deg, rgba(18, 17, 15, 0.62) 0%, rgba(18, 17, 15, 0.08) 55%, rgba(18, 17, 15, 0.3) 100%);
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .event-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .event-card.featured .event-card-image {
    min-height: 320px;
  }

  .directory-matchmaker,
  .directory-shell,
  .directory-cta-panel,
  .join-therapist-page {
    grid-template-columns: 1fr;
  }

  .directory-controls,
  .join-therapist-intro {
    position: static;
  }

  .event-cta-actions {
    justify-content: flex-start;
  }

  .quick-actions,
  .fact-grid,
  .two-column,
  .contact-grid,
  .resource-callout,
  .resource-area-grid,
  .team-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .praise-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .theme-list {
    grid-template-columns: 1fr;
  }

  .quick-actions article,
  .quick-action-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 760px) {
  .crisis-strip {
    flex-direction: column;
    gap: 4px;
    padding: 10px 16px;
    text-align: center;
    line-height: 1.35;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 900;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .nav-group > a {
    display: block;
    padding: 10px 0;
  }

  .nav-therapist,
  .nav-find-therapist,
  .nav-donate {
    margin-top: 4px;
    padding: 13px 16px !important;
    text-align: center;
  }

  .language-tools {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    border-radius: 8px;
  }

  .translate-toggle {
    width: 100%;
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 14px 28px rgba(18, 17, 15, 0.1);
  }

  .nav-group {
    display: grid;
  }

  .nav-group::after {
    display: none;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0 14px;
    border: 0;
    border-left: 3px solid var(--green);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu a {
    padding: 8px 0;
    white-space: normal;
    line-height: 1.35;
  }

  .site-header {
    min-height: 78px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-logo {
    height: 56px;
    max-width: min(210px, 48vw);
    object-fit: contain;
  }

  .split-hero,
  .page-hero,
  .feature-band,
  .facts-section,
  .program-preview,
  .newsletter,
  .two-column,
  .directory-panel,
  .contact-grid,
  .sponsor-band,
  .page-grid,
  .team-page,
  .content-page,
  .donation-page,
  .event-overview {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .harlyn-hero,
  .harlyn-page,
  .harlyn-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .harlyn-hero h1 {
    font-size: 36px;
  }

  .harlyn-tagline,
  .harlyn-memorial-band p {
    font-size: 22px !important;
  }

  .harlyn-story-card,
  .scholarship-callout,
  .harlyn-crisis {
    padding: 26px;
  }

  .harlyn-steps article {
    grid-template-columns: 1fr;
  }

  .content-page,
  .donation-page,
  .team-page,
  .join-therapist-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .join-therapist-page {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .form-grid.two,
  .form-grid.three,
  .form-grid.four {
    grid-template-columns: 1fr;
  }

  .therapist-form fieldset {
    padding: 20px;
  }

  .live-application-copy {
    padding: 24px;
  }

  .application-frame {
    min-height: 980px;
  }

  .contact-map-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 320px;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }

  .donation-impact-copy {
    padding: 28px;
  }

  .donation-impact-photo {
    min-height: 280px;
  }

  .donation-impact-photo figcaption {
    position: static;
    border-radius: 0;
  }

  .donation-gallery {
    grid-template-columns: 1fr;
  }

  .donation-gallery figure:first-child {
    grid-column: auto;
  }

  .donation-gallery figure {
    min-height: 230px;
  }

  .praise-wall {
    margin-top: 52px;
    padding: 28px;
  }

  .praise-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .praise-logo {
    min-height: 92px;
    padding: 14px;
  }

  .donation-ways-heading,
  .sponsorship-heading,
  .resource-heading {
    text-align: left;
  }

  .resource-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .resource-callout {
    gap: 20px;
  }

  .resource-callout .button {
    width: 100%;
  }

  .directory-explorer {
    padding: 56px 18px;
  }

  .matchmaker-question-grid,
  .matchmaker-result-list,
  .directory-results {
    grid-template-columns: 1fr;
  }

  .directory-matchmaker {
    padding: 14px;
  }

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

  .matchmaker-mini-copy {
    display: grid;
  }

  .matchmaker-actions .button,
  .matchmaker-result-card .button {
    width: 100%;
  }

  .directory-result-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .directory-result-summary span {
    text-align: left;
  }

  .directory-cta-panel {
    padding: 56px 18px;
  }

  .directory-cta-panel .button {
    width: 100%;
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

  .upcoming-events {
    padding: 56px 18px;
  }

  .event-month-grid,
  .event-card-grid-secondary {
    grid-template-columns: 1fr;
  }

  .featured-event-visual {
    min-height: 260px;
  }

  .featured-event-date {
    left: 18px;
    bottom: 18px;
    min-width: 96px;
    padding: 12px 14px 14px;
  }

  .featured-event-date strong {
    font-size: 46px;
  }

  .event-cta-band {
    gap: 22px;
    padding: 56px 18px;
  }

  .event-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .event-cta-actions .button {
    width: 100%;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .events-header-actions,
  .events-header .button {
    width: 100%;
  }

  .events-header-actions {
    flex-direction: column;
  }

  .event-source-bar {
    grid-template-columns: 1fr;
  }

  .event-source-bar .button {
    width: 100%;
  }

  .email-tool-intro,
  .email-tool-grid,
  .email-filter-grid,
  .email-tool-actions.stacked {
    grid-template-columns: 1fr;
  }

  .email-tool-stats {
    min-height: 160px;
  }

  .recipient-list {
    max-height: 440px;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .event-card .button {
    width: 100%;
  }

  .featured-event-content .button {
    width: 100%;
  }

  .hero-slider {
    min-height: clamp(540px, calc(100svh - 92px), 640px);
  }

  .quick-actions article,
  .quick-action-card {
    min-height: auto;
    padding: 30px 28px 30px 50px;
  }

  .quick-actions article::before,
  .quick-action-card::before {
    top: 31px;
    bottom: 31px;
    left: 28px;
    width: 4px;
  }

  .quick-action-card::after {
    right: 24px;
    bottom: 24px;
  }

  .quick-actions h2 {
    font-size: 22px;
  }

  .hero-slide {
    align-items: end;
    padding: 48px 18px 76px;
  }

  .hero-slide-content {
    width: 100%;
  }

  .hero-slide h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero-slide .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-slide .button {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button-row .button,
  .newsletter button,
  .newsletter input {
    width: 100%;
  }

  .button {
    min-height: 46px;
    padding: 12px 16px;
    text-align: center;
  }

  .slider-control {
    display: none;
  }

  .slider-dots {
    left: 22px;
    bottom: 28px;
  }

  .slider-dots button {
    width: 32px;
  }

  .slider-dots button.active {
    width: 48px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-brand-card,
  .footer-card {
    padding: 24px;
  }

  .footer-logo {
    width: min(230px, 100%);
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card-visual {
    height: 220px;
  }

  .image-stage {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .crisis-strip {
    font-size: 13px;
  }

  .site-header {
    min-height: 72px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo {
    height: 50px;
    max-width: 50vw;
  }

  .menu-toggle {
    min-width: 44px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-nav {
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 84px);
    padding: 16px;
  }

  .hero-slider {
    min-height: clamp(520px, calc(100svh - 84px), 600px);
  }

  .hero-slide {
    padding: 42px 16px 70px;
  }

  .hero-slide h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .hero-slide .lead,
  .lead,
  .page-hero p,
  .section-heading p,
  .feature-band p,
  .donation-ways-heading p,
  .sponsorship-heading p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .quick-actions article,
  .quick-action-card,
  .fact-grid article,
  .program-card,
  .two-column article,
  .contact-grid article,
  .team-card,
  .content-card,
  .tier-grid article {
    padding: 24px;
  }

  .program-card.with-image {
    padding: 0;
  }

  .program-card-body {
    padding: 22px;
  }

  .program-card-visual {
    height: 200px;
  }

  .events-header h2 {
    font-size: 30px;
  }

  .featured-event-content {
    padding: 22px;
  }

  .featured-event-content h3 {
    font-size: 29px;
  }

  .featured-event-date {
    min-width: 86px;
    border-width: 4px;
  }

  .featured-event-date strong {
    font-size: 40px;
  }

  .event-month {
    min-height: 0;
    padding: 18px;
  }

  .event-month-top span {
    font-size: 24px;
  }

  .event-date-pill {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .event-date-number {
    min-height: 54px;
    font-size: 30px;
  }

  .event-cta-band h2 {
    font-size: 28px;
  }

  .event-card-image,
  .event-card.featured .event-card-image {
    min-height: 220px;
  }

  .event-card-body {
    padding: 22px;
  }

  .event-card h3 {
    font-size: 25px;
  }

  .directory-controls,
  .directory-results-panel,
  .provider-card {
    padding: 22px;
  }

  .provider-card-top {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .provider-avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border-width: 2px;
  }

  .provider-photo-missing::after {
    bottom: 6px;
    font-size: 8px;
  }

  .provider-actions,
  .provider-contact,
  .provider-profile-links {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-actions .button,
  .provider-link {
    justify-content: center;
    width: 100%;
  }

  .provider-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .praise-logo-grid {
    grid-template-columns: 1fr;
  }

  .praise-wall,
  .resource-callout {
    padding: 24px;
  }

  .footer-action-row {
    flex-direction: column;
  }

  .footer-pill {
    width: 100%;
    text-align: center;
  }

  .footer-link-grid {
    gap: 8px;
  }
}
