:root {
  --evergreen-3: #2a5044;
  --evergreen: #124b36;
  --evergreen-2: #0b3528;
  --sage: #8fa77e;
  --sage-soft: #dfe8d8;
  --clay: #c96f3e;
  --clay-soft: #f3dfd2;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --ink: #18342a;
  --muted: #5f7169;
  --line: rgba(18, 75, 54, 0.16);
  --shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  --radius: 8px;
  --space: clamp(2rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 8% 12%, rgba(143, 167, 126, 0.12), transparent 28rem), radial-gradient(circle at 92% 34%, rgba(199, 168, 90, 0.12), transparent 30rem), linear-gradient(180deg, var(--paper) 0%, var(--ivory) 48%, var(--paper) 100%);
  color: var(--ink);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

a {
  color: inherit;
}

.nowrap {
  white-space: nowrap;
}

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  background: var(--evergreen);
  color: white;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-180%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 1.35rem;
}

.section {
  padding: var(--space) 0;
  position: relative;
}

.site-header {
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 100px;
  padding: 0 1.35rem;
  position: relative; /* <-- ADD THIS */
}

.brand img {
  height: auto;
  filter: contrast(1.08) saturate(1.04);
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: left center;
  width: clamp(220px, 22vw, 300px);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-links a,
.nav-cta,
.nav-dropdown summary {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a,
.nav-dropdown summary {
  color: var(--muted);
}

.nav-links a:hover,
.nav-dropdown summary:hover {
  color: var(--evergreen);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown summary::after {
  content: "⌄";
  display: inline-block;
  font-size: 0.8rem;
  margin-left: 0.35rem;
}

.dropdown-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  display: grid;
  gap: 0;
  left: 50%;
  min-width: 225px;
  opacity: 0;
  padding: 0.45rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 1rem);
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 30;
}

.nav-dropdown[open] .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  border-radius: 6px;
  color: var(--evergreen);
  padding: 0.7rem 0.8rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--ivory);
}

.wide-menu {
  min-width: 340px;
}

.wide-menu a {
  font-weight: 800;
}

.nav-cta,
.btn {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
}

.nav-cta,
.btn-primary {
  background: var(--evergreen);
  color: #ffffff !important;
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--evergreen-2);
}

.btn-secondary {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--evergreen);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--evergreen);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 24px;
  pointer-events: none; /* <-- ADD THIS */
}

.hero {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 84%, rgba(251, 247, 239, 0.96) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 42%, rgba(255, 253, 248, 0.62) 63%, rgba(255, 253, 248, 0.12) 100%),
    url("assets/group-home-hero.webp") right center / auto 100% no-repeat,
    var(--paper);
  isolation: isolate;
  min-height: min(760px, calc(100vh - 100px));
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.02));
  z-index: -1;
}

/* .hero-stamp {
  bottom: -3rem;
  filter: contrast(1.05) saturate(0.7);
  left: clamp(1rem, 5vw, 4rem);
  mix-blend-mode: multiply;
  opacity: 0.045;
  position: absolute;
  width: min(360px, 34vw);
  z-index: -1;
} */

.hero-content {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  min-height: min(760px, calc(100vh - 100px));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #a4792c;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.1rem;
  max-width: none;
}

.hero-eyebrow {
  white-space: nowrap;
}

.hero .eyebrow::after {
  background: #a4792c;
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.9rem;
  width: 64px;
}

.hero .btn-primary {
  background: var(--evergreen);
  color: #fff;
}

.hero .btn-primary:hover {
  background: var(--evergreen-2);
}

.hero .btn-secondary {
  background: rgba(255, 253, 248, 0.85);
  border-color: rgba(18, 75, 54, 0.35);
  color: var(--evergreen);
}

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 1.1rem;
  max-width: 820px;
}

h2 {
  color: var(--evergreen);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h3 {
  color: var(--evergreen);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.hero-copy {
  color: #10241d;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  max-width: 680px;
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-pillars {
  align-items: center;
  display: flex;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: none;
  width: max-content;
}

.hero-pillars span {
  align-items: center;
  border-right: 1px solid rgba(18, 75, 54, 0.18);
  color: #10241d;
  display: flex;
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 36px;
  padding: 0 0.55rem;
  white-space: nowrap;
}

.hero-pillars span:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-pillars span:first-child {
  padding-left: 0;
}

.community-strip {
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.96) 0%, rgba(255, 253, 248, 0.86) 100%);
  border-top: 0;
  padding: clamp(2.2rem, 4vw, 3.8rem) 0 clamp(2.8rem, 5vw, 4.4rem);
  position: relative;
}

.community-strip::after {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(251, 247, 239, 0.98));
  bottom: -1px;
  content: "";
  height: 4rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.community-strip-layout {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  position: relative;
  z-index: 1;
}

.community-intro h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin: 0;
}

.community-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.community-cards article {
  align-items: center;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 54px 1fr;
  min-height: 108px;
  padding: 1rem;
}

.community-cards span {
  align-items: center;
  background: var(--evergreen);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-weight: 900;
  height: 54px;
  place-items: center;
  width: 54px;
}

.community-cards article:nth-child(2) span {
  background: #bd862c;
}

.community-cards article:nth-child(3) span {
  background: #5a3e75;
}

.community-cards article:nth-child(4) span {
  background: #3d7768;
}

.community-cards p {
  color: #10241d;
  font-weight: 800;
  margin: 0;
}

.support-layout,
.model-layout,
.inclusion-layout,
.careers-layout,
.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-copy {
  border-left: 3px solid var(--clay);
  color: var(--muted);
  font-size: 1.08rem;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.intro {
  background: radial-gradient(circle at 50% 42%, rgba(143, 167, 126, 0.12), transparent 42%), radial-gradient(circle at 8% 12%, rgba(255, 253, 248, 0.05), transparent 28%), linear-gradient(135deg, rgba(255, 253, 248, 0.04), transparent 45%), var(--evergreen);
  color: white;
  overflow: hidden;
}

.intro-layout {
  display: grid;
  min-height: clamp(620px, 70vw, 760px);
  place-items: center;
  position: relative;
}

.intro-main {
  background: linear-gradient(90deg, rgba(10, 42, 31, 0), rgba(10, 42, 31, 0.42) 14%, rgba(10, 42, 31, 0.42) 86%, rgba(10, 42, 31, 0));
  border-bottom: 1px solid rgba(199, 168, 90, 0.34);
  border-top: 1px solid rgba(199, 168, 90, 0.34);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(2.4rem, 5vw, 4.6rem) clamp(1.25rem, 5vw, 4rem);
  position: relative;
  text-align: left;
  z-index: 1;
}

.intro-main::before,
.intro-main::after {
  background: #c7a85a;
  content: "";
  height: 54px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.intro-main::before {
  left: 0;
}

.intro-main::after {
  right: 0;
}

.intro-main h2 {
  color: #c79642;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.intro-body {
  color: rgba(255, 253, 248, 0.86);
  display: grid;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  gap: 1.35rem;
  line-height: 1.58;
  margin: 0 auto;
  max-width: 720px;
}

.intro-body p {
  margin: 0;
}

.intro-closing {
  color: #fffdf8;
  font-weight: 700;
  margin-top: 0.75rem;
}

.intro-closing.strong {
  color: var(--clay-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

.intro-watermark {
  left: 50%;
  opacity: 0.055;
  position: absolute;
  top: 50%;
  transform: translate(15%, -50%);
  width: min(520px, 48vw);
  filter: saturate(0) brightness(2);
}

.promise {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.78) 0%, rgba(251, 247, 239, 0.58) 42%, rgba(255, 253, 248, 0.82) 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 253, 248, 0.88) 0%, rgba(255, 253, 248, 0.68) 34%, rgba(255, 253, 248, 0.18) 70%),
    url("assets/promise-community-background.webp") center center / cover no-repeat,
    var(--ivory);
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.promise-shell {
  max-width: 1040px;
  /* padding: clamp(2.3rem, 5vw, 4.6rem); */
  text-align: center;
}

.promise .section-kicker {
  color: var(--evergreen);
  letter-spacing: 0.28em;
  margin-bottom: 1.15rem;
}

.promise-shell::before {
  display: none;
}

.promise h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 auto;
  max-width: 980px;
}

.promise-divider {
  align-items: center;
  color: #c7a85a;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin: 1.25rem auto 1.15rem;
}

.promise-divider span {
  background: rgba(199, 168, 90, 0.45);
  height: 1px;
  width: 42px;
}

.promise-divider strong {
  font-size: 1.35rem;
  line-height: 1;
}

.promise-values {
  color: var(--evergreen);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.promise-note {
  color: #263f36;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 720px;
}

.support-panel {
  background: var(--evergreen);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: white;
  line-height: 1.5;
  padding: clamp(2rem, 5vw, 4rem);
  padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
}

.support-panel h2,
.support-panel .section-kicker {
  color: white;
}

.support-panel h2 {
  font-size: clamp(1.8rem, 2.85vw, 2.85rem);
}

.support-kicker {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  margin-bottom: 1.2rem;
}

.support-panel h2 span:not(.nowrap) {
  color: var(--clay-soft);
  text-transform: uppercase;
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .nowrap {
    white-space: normal;
  }
}

.support-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.support-panel strong {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
  margin-top: 1.25rem;
}

.trust-points {
  display: grid;
  gap: 1rem;
}

.trust-points div {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 18px 1fr;
  padding: 1.15rem 0;
}

.trust-points span {
  background: var(--clay);
  border-radius: 50%;
  height: 12px;
  margin-top: 0.45rem;
  width: 12px;
}

.trust-points p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-map {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 2rem;
}

.service-feature {
  background: var(--clay);
  border-radius: var(--radius);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.service-feature h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-feature p {
  color: rgba(255, 255, 255, 0.9);
}

.service-number {
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: auto;
}

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

.service-cluster article {
  background: var(--ivory);
  border: 1px solid var(--line);
  min-height: 150px;
  padding: 1.35rem;
}

.service-cluster p {
  color: var(--muted);
  margin-bottom: 0;
}

.services {
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(255, 253, 248, 0.98)), var(--paper);
  position: relative;
}

.support-section-title {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.65rem;
  text-align: center;
}

.support-section-title h2,
.support-section-title h3 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.support-section-title span {
  align-items: center;
  display: flex;
}

.support-section-title > span::before {
  background: #c7a85a;
  content: "";
  display: block;
  height: 1px;
  width: clamp(42px, 8vw, 125px);
}

.support-section-title > span::after {
  color: #c7a85a;
  content: "❧";
  font-size: 1.25rem;
  margin-left: 0.75rem;
}

.support-section-title > span:first-child::after {
  margin-left: 0.75rem;
}

.support-section-title > span:last-child {
  flex-direction: row-reverse;
}

.support-section-title > span:last-child::after {
  margin-left: 0;
  margin-right: 0.75rem;
}

.support-card-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(4, 1fr);
}

.support-card,
.age-support details {
  background: radial-gradient(circle at 50% 8%, rgba(223, 232, 216, 0.45), transparent 36%), #fbf7ef;
  border: 1px solid rgba(18, 75, 54, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  overflow: hidden;
}

.support-card summary,
.age-support summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  justify-items: center;
  list-style: none;
  min-height: 310px;
  padding: 1.55rem;
  text-align: center;
}

.support-card summary::-webkit-details-marker,
.age-support summary::-webkit-details-marker {
  display: none;
}

.support-card strong,
.age-support strong {
  color: var(--evergreen);
  display: block;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  margin-top: 1rem;
}

.support-summary,
.age-support summary > span:not(.support-icon):not(.learn-more) {
  color: #17251f;
  display: block;
  font-size: 1.02rem;
  line-height: 1.45;
  margin: 0.9rem auto 1.2rem;
  max-width: 245px;
}

.support-card p,
.age-support details > p {
  border-top: 1px solid rgba(18, 75, 54, 0.12);
  color: var(--muted);
  margin: 0;
  padding: 1.1rem 1.35rem 1.35rem;
  text-align: center;
}

.support-icon {
  align-items: center;
  background: rgba(143, 167, 126, 0.16);
  border-radius: 50%;
  color: var(--evergreen);
  display: grid;
  font-size: 2.45rem;
  font-weight: 900;
  height: 92px;
  place-items: center;
  width: 92px;
}

.support-icon::before {
  line-height: 1;
}

.home-icon::before {
  content: "⌂";
}

.living-icon::before,
.youth-icon::before {
  content: "▮▮";
  letter-spacing: -0.22em;
}

.community-icon::before {
  content: "♥";
}

.care-icon::before {
  content: "♡";
  font-size: 3.2rem;
}

.child-icon::before {
  content: "✦";
}

.adult-icon::before {
  content: "●";
}

.learn-more {
  align-items: center;
  background: var(--evergreen);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 1.25rem;
  justify-content: center;
  min-height: 44px;
  min-width: 180px;
  padding: 0.65rem 1rem;
}

.learn-more.gold {
  background: #bd862c;
}

.support-card[open] .learn-more,
.age-support details[open] .learn-more {
  background: var(--clay);
}

.support-card[open] .learn-more span,
.age-support details[open] .learn-more span {
  transform: rotate(90deg);
}

.age-title {
  margin-bottom: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.age-title h3 {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
}

.age-support {
  background: #fbf7ef;
  border: 1px solid rgba(18, 75, 54, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.age-support details {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.age-support details + details {
  border-left: 1px solid rgba(199, 168, 90, 0.35);
}

.age-support summary {
  align-items: start;
  grid-template-columns: 104px 1fr;
  justify-items: start;
  min-height: 260px;
  padding: 2rem;
  text-align: left;
}

.age-support .support-icon {
  grid-row: span 3;
  height: 86px;
  width: 86px;
}

.age-support strong {
  margin-top: 0;
}

.age-support summary > span:not(.support-icon):not(.learn-more) {
  margin: 0.4rem 0 1.15rem;
  max-width: 310px;
}

.model {
  background: linear-gradient(180deg, rgba(239, 244, 231, 0.2) 0%, rgba(6, 57, 31, 0) 18%), radial-gradient(circle at 78% 24%, rgba(190, 217, 147, 0.12), transparent 32%), linear-gradient(135deg, #06391f 0%, #0b4b2d 48%, #06371f 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.model::before {
  /* background: linear-gradient(180deg, rgba(251, 247, 239, 0.88), rgba(251, 247, 239, 0)); */
  content: "";
  height: clamp(2.5rem, 6vw, 5rem);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.model::after {
  /* background: url("assets/sanctuary-care-wordmark-transparent.webp") right center / contain no-repeat; */
  content: "";
  inset: auto 2rem 3rem auto;
  opacity: 0.045;
  position: absolute;
  width: min(520px, 42vw);
  height: 180px;
  mix-blend-mode: screen;
}

.model-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  position: relative;
  z-index: 2;
}

.model h2,
.model h3 {
  color: white;
}

.model .section-kicker {
  color: #d3aa4f;
}

.model-left h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 1rem;
}

.model-page h1 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.03;
  margin: 0 0 1rem;
}

.model-page .model-card h2 {
  color: #dcefa8;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 0 0 0.35rem;
}

.model-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  margin: 0 0 1.35rem;
  max-width: 620px;
}

.model-improvements {
  display: grid;
  gap: 0.75rem;
}

.model-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(226, 238, 204, 0.18);
  border-radius: 20px;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 84px 1fr;
  padding: 1rem 1.2rem;
}

.model-card-icon {
  align-items: center;
  display: flex;
  background: linear-gradient(135deg, #eff5ce, #c7db8b);
  border-radius: 50%;
  color: var(--evergreen);
  font-size: 2rem;
  font-weight: 900;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.model-card h3 {
  color: #dcefa8;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 0 0 0.35rem;
}

.model-card ul {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 1.1rem;
}

.model-listen,
.model-share,
.model-framework-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(226, 238, 204, 0.22);
  border-radius: 22px;
}

.model-listen {
  /* display: grid;
  gap: 0 1rem;
  grid-template-columns: 70px 1fr; */
  margin-top: 0.9rem;
  padding: 1.5rem 1.5rem;
}

.model-listen span {
  align-items: center;
  color: #e6d7a2;
  display: flex;
  font-size: 2.7rem;
  grid-row: span 2;
  justify-content: center;
}

.model-listen p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin: 0;
}

.model-listen strong {
  color: white;
}

.model-framework {
  display: grid;
  gap: 1.4rem;
}

.model-framework-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.model-framework-card h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.12;
  margin: 0 0 0.9rem;
}

.model-framework-card h3 span {
  color: #dcefa8;
}

.model-framework-card p,
.model-share p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.45;
  margin: 0;
}

.model-pillars {
  display: grid;
  gap: 1.05rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.model-pillars li {
  align-items: center;
  background: linear-gradient(90deg, #fffdf8 0%, #f3efdc 100%);
  border-radius: 999px;
  color: var(--evergreen);
  display: grid;
  gap: 1rem;
  grid-template-columns: 64px 1fr auto;
  min-height: 72px;
  padding: 0.45rem 1.25rem 0.45rem 0.45rem;
}

.model-pillars li:nth-child(2),
.model-pillars li:nth-child(5) {
  background: linear-gradient(90deg, #eef6cf 0%, #d6e99c 100%);
}

.model-pillars li:nth-child(3),
.model-pillars li:nth-child(4) {
  background: linear-gradient(90deg, #fff5e6 0%, #f1dfbd 100%);
}

.model-pillars span {
  align-items: center;
  background: var(--evergreen);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 1.4rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.model-pillars strong {
  font-size: 1.1rem;
}

.model-pillars em {
  font-style: normal;
  font-weight: 900;
}

.model-share {
  padding: 1.5rem 1.5rem;
}

.model-share > span {
  align-items: center;
  background: #fffdf8;
  border-radius: 10px;
  color: var(--evergreen);
  display: flex;
  font-size: 1.4rem;
  height: 46px;
  justify-content: center;
  margin-bottom: 0.8rem;
  width: 54px;
}
/* 
.model-share h3 {
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
} */

.model-share .btn {
  margin-top: 1rem;
}

.inclusion-layout {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
}

.inclusion-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  gap: 1.6rem;
}

.inclusion-card {
  border-left: 8px solid var(--sage);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.inclusion-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 960px;
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0 auto;
}

.story-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  gap: 1.6rem;
}

.story-card {
  border-left: 8px solid var(--clay);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.story-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 960px;
}

/* 1. The outer section handles ONLY the full-bleed background */
/* 
.inclusion {
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.75)), 
              url("assets/diverse-community-support.webp") center center / cover no-repeat;
  padding: 60px 0; /* Padding on top and bottom of the section */
/* width: 100%; */
/* } */

.inclusion-section {
  background: var(--ivory);
  padding: var(--space) 0;
  width: 100%;
}

/* 2. Fix the layout container so it matches your site's standard content width */
.inclusion-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 0 auto;
}

/* 3. Keep the inner content neat */
.inclusion-content {
  max-width: 100%;
  text-align: left;
}
/*
.inclusion-art::after {
  background: radial-gradient(circle at 16% 18%, rgba(255, 253, 248, 0.3), transparent 9rem), linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.18));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
} */

.process {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92) 0%, rgba(251, 247, 239, 0.98) 100%);
}

.process-heading {
  margin: 0 auto 2rem;
  text-align: center;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  min-height: 220px;
  padding: 1.5rem;
  position: relative;
}

.steps span {
  color: var(--clay);
  display: block;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
/* 
.steps li::before {
  background: var(--sage-soft);
  border-radius: 50%;
  color: var(--evergreen);
  content: counter(step);
  counter-increment: step;
  display: grid;
  font-weight: 900;
  height: 44px;
  place-items: center;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 44px;
} */

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.ready-cta {
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(255, 253, 248, 0.98));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.ready-cta-panel {
  align-items: center;
  background: radial-gradient(circle at 74% 104%, rgba(199, 168, 90, 0.16), transparent 13rem), linear-gradient(90deg, #f8efe5 0%, #fcf5ec 62%, #fbf0e4 100%);
  border: 1px solid rgba(18, 75, 54, 0.06);
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(2.4rem, 4vw, 3.2rem) clamp(2.2rem, 5vw, 4rem);
  position: relative;
}

.ready-cta-panel::before,
.ready-cta-panel::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.ready-cta-panel::before {
  background: radial-gradient(ellipse at center, rgba(143, 167, 126, 0.45) 0 46%, transparent 48%), radial-gradient(ellipse at center, rgba(143, 167, 126, 0.38) 0 46%, transparent 48%), radial-gradient(ellipse at center, rgba(143, 167, 126, 0.3) 0 46%, transparent 48%), radial-gradient(ellipse at center, rgba(143, 167, 126, 0.24) 0 46%, transparent 48%), linear-gradient(105deg, transparent 0 48%, rgba(143, 167, 126, 0.45) 49% 51%, transparent 52%);
  background-position:
    0 0,
    1.8rem 2.3rem,
    3.5rem 4.6rem,
    5.1rem 6.8rem,
    3.2rem 1rem;
  background-repeat: no-repeat;
  background-size:
    4.6rem 1.7rem,
    4.2rem 1.55rem,
    3.8rem 1.4rem,
    3.4rem 1.25rem,
    2.5rem 14rem;
  height: 22rem;
  opacity: 0.82;
  right: -1.6rem;
  top: -0.2rem;
  transform: rotate(-48deg);
  width: 12rem;
}

.ready-cta-panel::after {
  background: radial-gradient(circle at 66% 58%, rgba(199, 168, 90, 0.22) 0 3.4rem, transparent 3.5rem), radial-gradient(circle at 82% 40%, rgba(143, 167, 126, 0.18), transparent 6rem), radial-gradient(circle at 45% 95%, rgba(251, 247, 239, 0.7), transparent 10rem);
  bottom: -3.2rem;
  height: 13rem;
  right: -0.7rem;
  width: 27rem;
}

.ready-cta h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.6vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 1.5rem;
}

.ready-cta .section-kicker {
  align-items: center;
  color: var(--evergreen);
  display: flex;
  font-size: 1.05rem;
  font-weight: 950;
  gap: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.35rem;
}

.ready-cta-copy p:not(.section-kicker) {
  color: #2d3f37;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.42;
  margin: 0;
  max-width: 650px;
}

.ready-cta-actions {
  display: grid;
  gap: 1.35rem;
  justify-self: stretch;
  position: relative;
  z-index: 1;
}

.ready-action {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-size: clamp(1.12rem, 1.45vw, 1.38rem);
  font-weight: 900;
  gap: 1.15rem;
  justify-content: flex-start;
  min-height: 82px;
  padding: 1rem 1.8rem;
  text-decoration: none;
}

.ready-action span {
  font-size: 2.25rem;
  line-height: 1;
}

.ready-action-primary {
  background: var(--evergreen);
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  color: white;
}

.ready-action-secondary {
  background: rgba(255, 253, 248, 0.68);
  border: 2px solid var(--evergreen);
  color: #10241d;
}

.careers {
  background: radial-gradient(circle at 88% 8%, rgba(201, 111, 62, 0.1), transparent 20rem), linear-gradient(180deg, rgba(251, 247, 239, 0.98) 0%, rgba(255, 253, 248, 0.98) 100%);
}

.careers-layout {
  align-items: center;
}

.careers-page {
  min-height: 640px;
}

.careers-page h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  margin: 0 0 1.2rem;
}

.careers-layout p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
}

.career-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.career-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--evergreen);
  display: flex;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  justify-content: space-between;
  min-height: 76px;
}

.career-list li::after {
  background: var(--clay);
  border-radius: 50%;
  content: "";
  height: 11px;
  width: 11px;
}

.career-hero {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 1) 0%, rgba(255, 253, 248, 0.94) 35%, rgba(255, 253, 248, 0.48) 58%, rgba(255, 253, 248, 0.08) 100%),
    url("assets/careers-hero-support.webp") right center / auto 100% no-repeat,
    var(--ivory);
  border-bottom: 1px solid rgba(18, 75, 54, 0.1);
  min-height: 470px;
  overflow: hidden;
}

.career-hero-inner {
  align-items: center;
  display: grid;
  min-height: 470px;
}

.career-hero-copy {
  /* max-width: 520px; */
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.career-hero h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.1vw, 5.5rem);
  line-height: 0.96;
  margin: 0.7rem 0 1.25rem;
}

.career-hero p:not(.section-kicker) {
  color: #263b33;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
  margin: 0 0 1.45rem;
  max-width: 450px;
}

.career-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.career-page-section {
  background: radial-gradient(circle at 8% 18%, rgba(199, 168, 90, 0.07), transparent 24rem), linear-gradient(180deg, var(--paper), var(--ivory));
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.career-title-row {
  align-items: center;
  color: var(--evergreen);
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  justify-content: center;
  margin: 0 auto clamp(1.35rem, 2.7vw, 2.3rem);
  text-align: center;
}

.career-title-row span {
  background: #c09142;
  height: 1px;
  width: clamp(48px, 9vw, 92px);
}

.career-title-row h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0;
}

.positions-title,
.receive-title {
  margin-top: clamp(2.1rem, 5vw, 3.7rem);
}

.career-why-grid,
.career-position-grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

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

.career-position-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.career-why-grid article,
.career-position-grid article {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(18, 75, 54, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  min-height: 245px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  text-align: center;
}

.career-position-grid article {
  min-height: 320px;
}

.career-icon {
  align-items: center;
  background: radial-gradient(circle at 35% 28%, rgba(255, 253, 248, 0.72), transparent 42%), #e7eed8;
  border-radius: 50%;
  color: var(--evergreen);
  display: flex;
  font-size: 1.8rem;
  height: 66px;
  justify-content: center;
  line-height: 1;
  margin: 0 auto 1.2rem;
  width: 66px;
}

.career-why-grid h3,
.career-position-grid h3 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}

.career-why-grid p,
.career-position-grid p {
  color: #263b33;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.career-position-grid a {
  color: var(--evergreen);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 0.35rem;
  margin-top: 1.25rem;
  text-decoration: none;
}

.career-position-grid a:hover {
  color: #9a6b25;
}

.career-receive-list {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.career-receive-list li {
  align-items: center;
  border-right: 1px solid rgba(18, 75, 54, 0.14);
  color: #263b33;
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.6rem;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.3;
  padding: 0.75rem 1rem;
}

.career-receive-list li:last-child {
  border-right: 0;
}

.career-receive-list li::before {
  align-items: center;
  background: var(--evergreen);
  border-radius: 50%;
  color: white;
  content: "✓";
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 1.35rem;
  justify-content: center;
  width: 1.35rem;
}

.contact-form {
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--ink);
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.contact-form label {
  color: var(--evergreen);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0.25rem 0 0.35rem;
}

.form-status {
  color: var(--evergreen);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.referral-page {
  background: radial-gradient(circle at 8% 18%, rgba(143, 167, 126, 0.16), transparent 28rem), radial-gradient(circle at 92% 70%, rgba(199, 168, 90, 0.12), transparent 28rem), var(--ivory);
}

.referral-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.05fr);
}

.referral-intro {
  position: sticky;
  top: 130px;
}

.referral-intro h1 {
  color: var(--evergreen);
  /* font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
  line-height: 1; */
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.referral-intro p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
}

.referral-form {
  border: 1px solid rgba(18, 75, 54, 0.12);
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
}

.footer {
  background: var(--paper);
  /* background: radial-gradient(circle at 15% 15%, rgba(143, 167, 126, 0.12), transparent 24rem), radial-gradient(circle at 90% 68%, rgba(199, 168, 90, 0.12), transparent 20rem), linear-gradient(135deg, #06391f 0%, #0a4a2c 52%, #052f1d 100%); */
  border-top: 0;
  color: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  padding: clamp(2rem, 3vw, 5rem) 0 2rem;
  position: relative;
}

.footer-main {
  padding: 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  grid-template-columns: minmax(280px, 1.15fr) repeat(2, minmax(220px, 0.9fr));
}

.footer-about,
.footer-column {
  border-right: 1px solid rgba(199, 168, 90, 0.34);
  min-height: 330px;
  padding-right: clamp(1rem, 2.5vw, 1.75rem);
}

.footer-actions-column {
  border-right: 0;
}

.footer-heart {
  align-items: center;
  color: #d6aa3d;
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
}

.footer-heart span {
  background: rgba(214, 170, 61, 0.9);
  height: 1px;
  width: 44px;
}

.footer-heart strong {
  font-size: 1.7rem;
  line-height: 1;
}

.footer-tagline {
  color: #f1d99a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 1.6rem;
}

.footer-about > p:not(.footer-tagline) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 300px;
}

.footer-contact-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: start; /* Aligns everything to the top */
  padding: 0;
  list-style: none;
}

.footer-contact-list li,
.footer-contact-list a {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 0.8rem;
  text-decoration: none;
}

.footer-contact-list span {
  align-items: center;
  background: #cddd85;
  border-radius: 50%;
  color: var(--evergreen);
  display: flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-column h2,
.land-acknowledgement h2 {
  color: #d6aa3d;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.footer-column h2::after {
  background: #d6aa3d;
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.8rem;
  width: 56px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-column a::before {
  color: #d6aa3d;
  content: "›";
  font-size: 1.5rem;
  font-weight: 900;
  margin-right: 0.7rem;
}

.footer-actions-column a {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.footer-actions-column a::before {
  content: "";
  margin: 0;
}

.footer-actions-column span {
  color: #d6aa3d;
  font-size: 1.55rem;
  min-width: 34px;
}

.land-acknowledgement {
  align-items: center;
  /* Updated the background position and size here 👇 */
  background:
    linear-gradient(90deg, rgba(6, 57, 31, 0.96) 0%, rgba(6, 57, 31, 0.88) 42%, rgba(6, 57, 31, 0.54) 66%, rgba(6, 57, 31, 0.18) 100%),
    url("assets/land-acknowledgement-art.webp") center center / cover no-repeat,
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 170, 61, 0.54);
  border-radius: 22px;
  display: grid;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.42fr);
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
}

.land-acknowledgement::after {
  background: radial-gradient(circle at 82% 18%, rgba(214, 170, 61, 0.2), transparent 10rem), linear-gradient(90deg, rgba(6, 57, 31, 0) 0%, rgba(6, 57, 31, 0.12) 56%, rgba(6, 57, 31, 0.28) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.land-acknowledgement > div:not(.land-scene) {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.land-acknowledgement p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.land-scene {
  align-self: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 280px;
  position: relative;
}

.land-leaf {
  display: none;
}

.footer-legal {
  align-items: center;
  border-top: 1px solid rgba(214, 170, 61, 0.62);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.footer-legal p {
  color: var(--muted);
  margin: 0;
}

.footer-legal nav {
  display: flex;
  gap: 1.2rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}
/* 
.footer-inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
} */

.footer img {
  /* background: rgba(255, 253, 248, 0.94); */
  border-radius: 8px;
  filter: contrast(1.08) saturate(1.04);
  height: auto;
  object-fit: contain;
  object-position: right center;
  padding: 0.5rem 0.75rem;
  width: min(280px, 60vw);
  /* mix-blend-mode: multiply; */
}

.about-hero {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 247, 239, 0.96)), radial-gradient(circle at 82% 18%, rgba(143, 167, 126, 0.2), transparent 34%), var(--ivory);
  overflow: hidden;
  padding-top: clamp(5.5rem, 9vw, 8rem);
}

.about-hero-layout,
.about-story-layout,
.about-depth-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-hero-layout {
  align-items: center;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 0;
}

.about-hero p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  margin-top: 1.25rem;
  max-width: 700px;
}

.about-hero-art {
  aspect-ratio: 1.1;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.78), rgba(251, 247, 239, 0.1)),
    url("assets/group-home-hero.webp") center center / cover no-repeat;
  border: 1px solid rgba(18, 75, 54, 0.1);
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  min-height: 360px;
}

.about-section-intro {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.about-section-intro h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 0;
}

.about-story {
  background: var(--ivory);
}

/* .about-story.story-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 247, 239, 0.96)),
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 42%, rgba(255, 253, 248, 0.62) 63%, rgba(255, 253, 248, 0.12) 100%),
    url("assets/group-home-hero.webp") right center / auto 100% no-repeat,
    var(--paper);
} */

.about-story-heading {
  /* align-self: center; */
  border-left: 5px solid var(--clay);
  padding-left: clamp(1.25rem, 3vw, 2rem);
}

.about-story-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.about-story-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 1rem 0 0;
  max-width: 420px;
}

.about-panel-copy,
.about-depth-list {
  color: var(--muted);
  display: grid;
  font-size: 1.08rem;
  gap: 1.1rem;
  max-width: 760px;
}

.about-panel-copy p,
.about-depth-list p {
  margin: 0;
}

.about-pillars {
  background: radial-gradient(circle at 8% 18%, rgba(199, 168, 90, 0.1), transparent 22rem), var(--ivory);
}

.about-pillar-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.about-pillar-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 270px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
}

.about-pillar-grid article > span {
  align-items: center;
  background: rgba(143, 167, 126, 0.16);
  border-radius: 999px;
  color: var(--evergreen);
  display: inline-flex;
  font-size: 1.5rem;
  height: 3.1rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 3.1rem;
}

.about-pillar-grid h3 {
  font-size: 1.25rem;
}

.about-pillar-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-depth {
  background: var(--paper);
}

.about-depth h2 {
  max-width: 560px;
}

.about-team {
  background: var(--ivory);
}

.about-team-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.about-team-panel {
  align-content: start;
  align-items: start;
  border: 1px solid rgba(18, 75, 54, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.about-team-panel::after {
  background: rgba(255, 255, 255, 0.18);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

/* 2. Hide the desktop left-to-right fade */
  .story-panel::before,
  .inclusion-panel::before,
  .operational-panel::before,
  .about-team-panel::before {
    display: none;
  }
  /* 3. Panel specific images (These MUST come after .about-team-panel) */
  .story-panel {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.1) 0%, rgba(255, 253, 248, 0.92) 45%, rgba(255, 253, 248, 1) 100%),
      url("assets/group-home-hero.webp") center top / 125% auto no-repeat,
      var(--sage-soft);
  }

  .inclusion-panel {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.1) 0%, rgba(255, 253, 248, 0.92) 45%, rgba(255, 253, 248, 1) 100%),
      url("assets/diverse-community-support.webp") center top / 125% auto no-repeat,
      var(--sage-soft);
  }

  .operational-panel {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.1) 0%, rgba(255, 253, 248, 0.92) 45%, rgba(255, 253, 248, 1) 100%),
      url("assets/operational-team-inclusive.webp") center top / 125% auto no-repeat,
      var(--sage-soft);
  }

.about-team-panel > header,
.about-team-panel > .about-panel-copy {
  align-self: center;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

/* 4. Push the text down past the images */
  .about-team-panel > header {
    max-width: 100%;
    padding-top: clamp(14rem, 50vw, 22rem);
  }

.join-team {
  background: var(--paper);
}

.join-team-box {
  background: var(--evergreen);
  border-radius: var(--radius);
  color: white;
  max-width: 980px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.join-team-box .section-kicker,
.join-team-box h2 {
  color: white;
}

.join-team-box h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.join-team-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin: 0 auto 1.5rem;
  max-width: 720px;
}

.about-cta {
  background: var(--evergreen);
  color: white;
}

.about-cta-box {
  max-width: 920px;
  text-align: center;
}

.about-cta h2 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.about-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin: 0 auto 1.4rem;
  max-width: 720px;
}

.about-cta .hero-actions {
  justify-content: center;
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.services-page-hero {
  background: radial-gradient(circle at 80% 18%, rgba(143, 167, 126, 0.18), transparent 34%), var(--ivory);
}

.services-page-hero-inner {
  max-width: 920px;
  text-align: center;
}

.services-page-hero h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}

.services-page-hero p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  margin: 0 auto;
  max-width: 760px;
}

.service-detail-list {
  background: var(--paper);
}

.service-detail-stack {
  display: grid;
  gap: 1rem;
}

.service-detail-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding: clamp(1.5rem, 4vw, 3rem);
  scroll-margin-top: 120px;
}

.service-detail-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  margin-bottom: 0;
}

.service-detail-card ul {
  columns: 2;
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail-card li {
  break-inside: avoid;
  border-bottom: 1px solid rgba(18, 75, 54, 0.12);
  font-weight: 700;
  padding: 0.65rem 0;
}

.single-service-hero {
  background: radial-gradient(circle at 82% 18%, rgba(143, 167, 126, 0.16), transparent 32%), var(--ivory);
}

.single-service-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.single-service-hero h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  margin-bottom: 0;
}

.single-service-intro {
  align-self: end;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.single-service-list {
  background: var(--paper);
}

.single-service-box {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.single-service-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.single-service-box ul {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.single-service-box li {
  border-bottom: 1px solid rgba(18, 75, 54, 0.12);
  font-weight: 800;
  padding: 0.85rem 0;
}

.youth-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.9) 42%, rgba(251, 247, 239, 0.48) 68%, rgba(251, 247, 239, 0.12) 100%),
    linear-gradient(180deg, rgba(251, 247, 239, 0.14), rgba(251, 247, 239, 0.78)),
    url("assets/youth-support-sketch.webp") right center / auto 100% no-repeat,
    var(--ivory);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.youth-hero::after {
  background: radial-gradient(circle at 70% 18%, rgba(199, 168, 90, 0.12), transparent 16rem), linear-gradient(180deg, rgba(251, 247, 239, 0), rgba(251, 247, 239, 0.96));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.youth-hero .container {
  position: relative;
  z-index: 1;
}

.youth-hero .single-service-layout {
  min-height: 500px;
}

.youth-hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
}

.youth-hero .single-service-intro {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(18, 75, 54, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  color: #2d3f37;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  backdrop-filter: blur(10px);
}

.youth-intro {
  background: var(--paper);
}

.youth-intro-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.youth-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
}

.youth-support-areas {
  background: var(--ivory);
}

.youth-area-stack {
  display: grid;
  gap: 1rem;
}

.youth-area-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.youth-area-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 1.05;
}

.youth-area-card div > p:not(.section-kicker) {
  color: var(--muted);
  margin-bottom: 0;
}

.youth-area-card ul {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.youth-area-card li {
  align-items: start;
  border-bottom: 1px solid rgba(18, 75, 54, 0.12);
  display: grid;
  font-weight: 800;
  gap: 0.65rem;
  grid-template-columns: 22px 1fr;
  padding: 0.7rem 0;
}

.youth-area-card li::before {
  color: var(--clay);
  content: "✓";
  font-weight: 900;
}

.youth-approach {
  background: var(--evergreen);
  color: white;
}

.youth-approach-box {
  max-width: 920px;
  text-align: center;
}

.youth-approach-box .section-kicker,
.youth-approach-box h2 {
  color: white;
}

.youth-approach-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
}

.youth-approach-box p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  max-width: 780px;
}

.youth-page-hero {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 78%, rgba(255, 253, 248, 0.95) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 1) 0%, rgba(255, 253, 248, 0.96) 34%, rgba(255, 253, 248, 0.68) 57%, rgba(255, 253, 248, 0.18) 100%),
    url("assets/youth-support-sketch.webp") right center / auto 106% no-repeat,
    var(--ivory);
  border-bottom: 1px solid rgba(18, 75, 54, 0.1);
  min-height: 500px;
  overflow: hidden;
}

.youth-page-hero-inner {
  align-items: center;
  display: grid;
  min-height: 500px;
}

.youth-page-hero-copy {
  max-width: 560px;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.youth-page-hero h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5.4vw, 5.7rem);
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0.55rem 0 1.3rem;
}

.youth-page-hero p:not(.section-kicker) {
  color: #253b33;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.youth-page-areas {
  background: radial-gradient(circle at 5% 18%, rgba(199, 168, 90, 0.08), transparent 24rem), linear-gradient(180deg, var(--paper), var(--ivory));
  padding: clamp(1.3rem, 2.2vw, 2.1rem) 0 clamp(3rem, 6vw, 5rem);
}

.youth-page-title-row {
  align-items: center;
  color: var(--evergreen);
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  justify-content: center;
  margin: 0 auto clamp(1.35rem, 2.7vw, 2.3rem);
  text-align: center;
}

.youth-page-title-row span {
  background: #c09142;
  height: 1px;
  width: clamp(48px, 9vw, 92px);
}

.youth-page-title-row h2 {
  color: var(--evergreen);
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.youth-page-card-grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1050px;
}

.youth-page-card {
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.99), rgba(251, 247, 239, 0.88));
  border: 1px solid rgba(18, 75, 54, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  display: grid;
  gap: clamp(0.9rem, 1.5vw, 1.15rem);
  grid-template-columns: 68px minmax(0, 1fr);
  min-height: 250px;
  padding: clamp(1.35rem, 2.2vw, 2.1rem);
  position: relative;
}

.youth-page-card::after {
  background: linear-gradient(90deg, rgba(199, 168, 90, 0.18), transparent);
  content: "";
  height: 1px;
  left: clamp(1.15rem, 1.9vw, 1.65rem);
  position: absolute;
  right: clamp(1.15rem, 1.9vw, 1.65rem);
  top: 0;
}

.youth-page-icon {
  align-items: center;
  background: radial-gradient(circle at 35% 28%, rgba(255, 253, 248, 0.72), transparent 42%), #e7eed8;
  border-radius: 50%;
  color: var(--evergreen);
  display: flex;
  font-size: 1.85rem;
  height: 58px;
  justify-content: center;
  line-height: 1;
  width: 58px;
}

.youth-page-card h3 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.04;
  margin: 0 0 0.8rem;
}

.youth-page-card p {
  color: #263b33;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.4rem;
  max-width: 420px;
}

.youth-card-link {
  color: #9a6b25;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  gap: 0.35rem;
  text-decoration: none;
}

.youth-card-link:hover {
  color: var(--evergreen);
}

.youth-approach-strip {
  background: linear-gradient(180deg, rgba(239, 240, 226, 0.92), rgba(231, 234, 216, 0.9));
  margin: clamp(1.4rem, 3vw, 2.2rem) calc(50% - 50vw) 0;
  padding: clamp(1.3rem, 3vw, 2.1rem) max(1.35rem, calc((100vw - 1180px) / 2 + 1.35rem));
  text-align: center;
}

.youth-approach-strip h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  margin: 0 0 1.3rem;
}

.youth-approach-strip ul {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 0 auto;
  max-width: 1060px;
  padding: 0;
}

.youth-approach-strip li {
  align-items: center;
  border-right: 1px solid rgba(18, 75, 54, 0.14);
  color: #152c24;
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.45rem;
  justify-items: center;
  line-height: 1.25;
  min-height: 92px;
  padding: 0 0.7rem;
}

.youth-approach-strip li:last-child {
  border-right: 0;
}

.youth-approach-strip li span {
  color: var(--evergreen);
  font-size: 2rem;
  line-height: 1;
}

.residential-page-hero {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 1) 0%, rgba(255, 253, 248, 0.94) 36%, rgba(255, 253, 248, 0.48) 58%, rgba(255, 253, 248, 0.08) 100%),
    url("assets/residential-community-home.webp") right center / auto 100% no-repeat,
    var(--ivory);
  border-bottom: 1px solid rgba(18, 75, 54, 0.1);
  min-height: 470px;
  overflow: hidden;
}

.residential-page-hero-inner {
  align-items: center;
  display: grid;
  min-height: 470px;
}

.residential-page-copy {
  max-width: 560px;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.residential-page-copy h1 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.1vw, 5.5rem);
  line-height: 0.96;
  margin: 0.7rem 0 1.25rem;
}

.residential-page-copy p:not(.section-kicker) {
  color: #263b33;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.65;
  margin: 0 0 1.45rem;
  max-width: 460px;
}

.residential-services {
  background: radial-gradient(circle at 5% 18%, rgba(199, 168, 90, 0.08), transparent 24rem), linear-gradient(180deg, var(--paper), var(--ivory));
  padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.residential-title-row h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  letter-spacing: 0;
  text-transform: none;
}

.residential-card-grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.residential-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(18, 75, 54, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(18, 75, 54, 0.06);
  min-height: 300px;
  padding: clamp(1.35rem, 2.5vw, 2.2rem);
}

.residential-icon {
  align-items: center;
  background: radial-gradient(circle at 35% 28%, rgba(255, 253, 248, 0.72), transparent 42%), #e7eed8;
  border-radius: 50%;
  color: var(--evergreen);
  display: flex;
  font-size: 1.85rem;
  font-weight: 900;
  height: 66px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 1.35rem;
  width: 66px;
}

.residential-card h3 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
}

.residential-card p {
  color: #263b33;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 1.55rem;
}

.residential-card a {
  color: #9a6b25;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  gap: 0.35rem;
  text-decoration: none;
}

.residential-card a:hover {
  color: var(--evergreen);
}

.residential-approach-strip {
  background: linear-gradient(180deg, rgba(239, 240, 226, 0.92), rgba(231, 234, 216, 0.9));
  border-radius: 12px;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  padding: clamp(1.3rem, 3vw, 2.1rem);
  text-align: center;
}

.residential-approach-strip h2 {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  margin: 0 0 1.3rem;
}

.residential-approach-strip ul {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.residential-approach-strip li {
  align-items: center;
  border-right: 1px solid rgba(18, 75, 54, 0.14);
  color: #152c24;
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.45rem;
  justify-items: center;
  line-height: 1.25;
  min-height: 92px;
  padding: 0 0.7rem;
}

.residential-approach-strip li:last-child {
  border-right: 0;
}

.residential-approach-strip li span {
  color: var(--evergreen);
  font-size: 2rem;
  line-height: 1;
}

.youth-page-cta {
  align-items: center;
  background: radial-gradient(circle at 18% 12%, rgba(143, 167, 126, 0.28), transparent 22rem), linear-gradient(135deg, var(--evergreen), var(--evergreen-2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(18, 75, 54, 0.2);
  color: white;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(1.15rem, 2.2vw, 1.55rem) clamp(1.4rem, 3vw, 2.2rem);
}

.youth-page-cta-mission,
.youth-page-cta-contact {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto minmax(0, 1fr);
}

.youth-page-cta-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.youth-page-cta span {
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: flex;
  font-size: 2rem;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.youth-page-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  margin: 0;
}

.youth-page-cta strong {
  color: white;
}

.youth-page-cta .btn {
  background: var(--paper);
  border: 0;
  color: var(--evergreen);
  min-width: 160px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 0.75rem 1.35rem 1.25rem;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 50; /* <-- ADD THIS */
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
  }

  .dropdown-menu {
    background: var(--ivory);
    border: 0;
    box-shadow: none;
    left: auto;
    margin-top: 0.75rem;
    min-width: 0;
    opacity: 1;
    padding: 0.25rem;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .dropdown-menu a {
    border-bottom: 0;
    padding: 0.65rem 0.75rem;
    white-space: normal;
  }

  /* .nav-cta {
    display: none;
  } */

  .intro-layout,
  .about-hero-layout,
  .about-story-layout,
  .about-depth-layout,
  .about-team-layout,
  .service-detail-card,
  .single-service-layout,
  .single-service-box,
  .youth-intro-layout,
  .youth-area-card,
  .hero-content,
  .community-strip-layout,
  .support-layout,
  .model-layout,
  .inclusion-layout,
  .careers-layout,
  .contact-layout,
  .ready-cta-panel,
  .referral-layout,
  .service-map,
  .promise-shell {
    grid-template-columns: 1fr;
  }

  .promise-note {
    grid-column: auto;
    margin-top: 0;
  }

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

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

  .age-support {
    grid-template-columns: 1fr;
  }

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

  .about-hero-art {
    min-height: 360px;
    order: -1;
  }

  .about-story-heading {
    transform: none;
  }

  .referral-intro {
    position: static;
  }

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

  .service-detail-card ul {
    columns: 1;
  }

  .age-support details + details {
    border-left: 0;
    border-top: 1px solid rgba(199, 168, 90, 0.35);
  }

  .intro-watermark {
    left: 50%;
    max-width: 320px;
    opacity: 0.06;
    position: absolute;
    top: 50%;
    transform: translate(-10%, -50%);
    width: 55%;
  }

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

  /* 1. Base panel structure (removed the background gradient here!) */
  .about-team-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* .story-panel,
  .inclusion-panel,
  .operational-panel {
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.94) 0%, rgba(255, 253, 248, 0.98) 100%);
  } */

  .about-team-panel > header,
  .about-team-panel > .about-panel-copy {
    max-width: 100%;
  }

  .youth-page-hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.1) 0%, rgba(255, 253, 248, 0.92) 58%, rgba(255, 253, 248, 1) 100%),
      url("assets/youth-support-sketch.webp") center top / 125% auto no-repeat,
      var(--ivory);
    min-height: auto;
  }

  .youth-page-hero-inner {
    min-height: auto;
  }

  .youth-page-hero-copy {
    padding-top: clamp(18rem, 58vw, 30rem);
  }

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

  .residential-page-hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.12) 0%, rgba(255, 253, 248, 0.92) 58%, rgba(255, 253, 248, 1) 100%),
      url("assets/residential-community-home.webp") center top / 125% auto no-repeat,
      var(--ivory);
    min-height: auto;
  }

  .residential-page-hero-inner {
    min-height: auto;
  }

  .residential-page-copy {
    padding-top: clamp(18rem, 58vw, 30rem);
  }

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

  .career-hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.12) 0%, rgba(255, 253, 248, 0.92) 58%, rgba(255, 253, 248, 1) 100%),
      url("assets/careers-hero-support.webp") center top / 125% auto no-repeat,
      var(--ivory);
    min-height: auto;
  }

  .career-hero-inner {
    min-height: auto;
  }

  .career-hero-copy {
    padding-top: clamp(18rem, 58vw, 30rem);
  }

  .career-why-grid,
  .career-position-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-receive-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .career-receive-list li:nth-child(3n) {
    border-right: 0;
  }

  .residential-approach-strip ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .residential-approach-strip li:nth-child(3n) {
    border-right: 0;
  }

  .youth-approach-strip ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .youth-approach-strip li:nth-child(3n) {
    border-right: 0;
  }

  .footer-about,
  .footer-column {
    border-right: 0;
    min-height: auto;
    padding-right: 0;
  }

  .land-acknowledgement {
    background:
      linear-gradient(180deg, rgba(6, 57, 31, 0.96) 0%, rgba(6, 57, 31, 0.82) 62%, rgba(6, 57, 31, 0.28) 100%),
      url("assets/land-acknowledgement-art.webp") center bottom / cover no-repeat,
      rgba(255, 255, 255, 0.035);
    grid-template-columns: 1fr;
    /* padding-bottom: 12rem; */
  }

  .land-scene {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 1rem;
  }

  .story-section,
  .inclusion-section {
    background-image: none;
  }

  .section {
    padding: 4rem 0;
  }

  .brand img {
    width: 210px;
  }

  .nav {
    min-height: 80px;
    padding: 0 1rem;
  }

  .nav-links {
    top: 80px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero {
    background:
      /* Lowered the starting opacity from 0.96 to 0.2 so the image is visible */
      linear-gradient(180deg, rgba(255, 253, 248, 0.2) 0%, rgba(255, 253, 248, 0.7) 52%, rgba(255, 253, 248, 0.98) 100%),
      /* Swapped '130% auto' for 'cover' to ensure it scales cleanly */ url("assets/group-home-hero.webp") center top / cover no-repeat,
      var(--paper);
  }

  .hero-content {
    padding-bottom: 4rem;
    /* padding-top: clamp(15rem, 58vw, 24rem); */
    padding-top: 2rem;
  }

  .hero-overlay {
    /* Drastically reduced the overlay thickness from 0.9 to 0.1 */
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(255, 253, 248, 0.3));
  }

  .youth-hero {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.86) 0%, rgba(251, 247, 239, 0.96) 48%, rgba(251, 247, 239, 1) 100%),
      url("assets/youth-support-sketch.webp") center top / 145% auto no-repeat,
      var(--ivory);
    min-height: auto;
  }

  .youth-hero .single-service-layout {
    min-height: auto;
    padding-top: clamp(16rem, 66vw, 28rem);
  }

  .youth-hero .single-service-intro {
    background: rgba(255, 253, 248, 0.86);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .hero-eyebrow {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .promise {
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.86) 0%, rgba(251, 247, 239, 0.96) 48%, rgba(251, 247, 239, 1) 100%), var(--ivory);
  }

  .intro-main h2 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .intro-layout {
    min-height: auto;
  }

  .intro-main {
    padding: 2rem 1.25rem;
  }

  .intro-main::before,
  .intro-main::after {
    height: 42px;
  }

  .promise h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .promise-values {
    letter-spacing: 0.12em;
  }

  .ready-cta-panel {
    border-radius: 18px;
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .inclusion-art {
    min-height: 320px;
  }

  .ready-cta-panel::before {
    opacity: 0.35;
    right: -3rem;
  }

  .ready-cta h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
    white-space: normal;
  }

  .ready-action {
    justify-content: center;
    min-height: 70px;
  }

  .footer-grid,
  .footer-legal,
  .footer-legal nav {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-about,
  .footer-column {
    border-bottom: 1px solid rgba(214, 170, 61, 0.38);
    padding-bottom: 1.6rem;
  }

  .footer-actions-column {
    border-bottom: 0;
  }

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

  .footer-legal nav {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .youth-page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .youth-page-card-grid,
  .youth-page-card {
    grid-template-columns: 1fr;
  }

  .residential-page-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .career-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .career-hero-actions .btn {
    width: 100%;
  }

  .career-why-grid,
  .career-position-grid {
    grid-template-columns: 1fr;
  }

  .career-why-grid article,
  .career-position-grid article {
    min-height: auto;
  }

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

  .career-receive-list li,
  .career-receive-list li:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 75, 54, 0.14);
  }

  .career-receive-list li:last-child {
    border-bottom: 0;
  }

  .residential-card {
    min-height: auto;
  }

  .residential-approach-strip ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .residential-approach-strip li,
  .residential-approach-strip li:nth-child(3n) {
    border-right: 1px solid rgba(18, 75, 54, 0.14);
  }

  .residential-approach-strip li:nth-child(2n) {
    border-right: 0;
  }

  .youth-page-icon {
    height: 58px;
    width: 58px;
  }

  .youth-approach-strip ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .youth-approach-strip li,
  .youth-approach-strip li:nth-child(3n) {
    border-right: 1px solid rgba(18, 75, 54, 0.14);
  }

  .youth-approach-strip li:nth-child(2n) {
    border-right: 0;
  }

  .hero-pillars,
  .community-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-pillars span {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 75, 54, 0.14);
    padding-bottom: 0.75rem;
    white-space: normal;
  }

  .trust-grid,
  .service-cluster,
  .support-card-grid,
  .about-pillar-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .support-section-title {
    gap: 0.8rem;
  }

  .support-section-title h2,
  .support-section-title h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .about-hero-art {
    background-position: center;
    min-height: 280px;
  }

  .about-section-intro {
    text-align: left;
  }

  .about-pillar-grid article {
    min-height: auto;
  }

  .support-section-title > span::before {
    width: 34px;
  }

  .support-section-title > span::after {
    display: none;
  }

  .support-card summary {
    min-height: auto;
    padding: 1.45rem;
  }

  .age-support summary {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 1.45rem;
    text-align: center;
  }

  .age-support .support-icon {
    grid-row: auto;
  }

  .age-support summary > span:not(.support-icon):not(.learn-more) {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-grid p {
    min-height: auto;
  }

  .intro-copy {
    border-left: 0;
    border-top: 3px solid var(--clay);
    padding-left: 0;
    padding-top: 1.35rem;
  }

  .service-feature {
    min-height: 330px;
  }

  .model-left h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .model-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .model-card-icon {
    height: 62px;
    width: 62px;
  }

  .model-listen {
    grid-template-columns: 1fr;
  }

  /* .model-listen span {
    grid-row: auto;
    justify-content: flex-start;
  } */

  .model-pillars li {
    grid-template-columns: 54px 1fr auto;
    min-height: 64px;
    padding-right: 0.9rem;
  }

  .model-pillars span {
    height: 50px;
    width: 50px;
  }

  .steps li {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-end;
  }

  .footer-contact-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between items when stacked on mobile */
  }
}
