/* ==========================================================================
   MC Community Services — 2026 Redesign, v3
   Design system: "Quiet Confidence"
   Research-grounded for special-needs & mental-health family audiences:
   warm minimalism, low cognitive load, predictable navigation, plain
   language, trust signals, readable serif + humanist sans.
   Source Serif 4 (headings) + Nunito Sans (text)
   Warm paper, deep pine, sage, soft terracotta. No horizontal scrolling.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
a { color: inherit; }

/* ---------- Tokens ---------- */
:root {
    --paper: #FAF7F1;
    --sand: #F0E9DC;
    --sage: #E5EDE3;
    --white: #FFFFFF;
    --pine-900: #163327;
    --pine-700: #1E4434;
    --pine-500: #2E6149;
    --leaf: #7AB547;            /* brand logo green — small accents */
    --terra: #C96845;
    --terra-deep: #B05634;
    --terra-soft: #F6E3D9;
    --sky: #5E8FAE;
    --sky-soft: #E2ECF2;
    --plum: #8B74A8;
    --plum-soft: #ECE6F2;
    --leaf-soft: #E9F2DE;
    --ink: #243029;
    --ink-soft: #57655C;
    --line: #E3DCCC;
    --line-dark: rgba(250, 247, 241, 0.18);

    --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
    --font-text: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 3px rgba(30, 51, 39, 0.06), 0 4px 14px rgba(30, 51, 39, 0.06);
    --shadow-md: 0 2px 6px rgba(30, 51, 39, 0.06), 0 16px 40px rgba(30, 51, 39, 0.10);

    --container: 1180px;
    --pad: clamp(1.25rem, 4vw, 2.5rem);
    --header-h: 78px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
    font-family: var(--font-text);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.012em;
    color: var(--pine-900);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--ink-soft); }
strong { color: var(--ink); }

::selection { background: var(--pine-700); color: var(--paper); }

a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 3px solid var(--terra);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 4000;
    background: var(--pine-900);
    color: var(--paper);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--radius-sm) 0;
    text-decoration: none;
    font-weight: 700;
}
.skip-link:focus { left: 0; }

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad);
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(3.75rem, 8vw, 6.25rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.75rem); }

/* "Pillowed" full-width tinted insets — soft, modern section rhythm */
.tint-block {
    margin-inline: clamp(0.5rem, 1.5vw, 1.25rem);
    border-radius: var(--radius-lg);
}
.tint-block--sage { background: var(--sage); }
.tint-block--sand { background: var(--sand); }
.tint-block--pine { background: var(--pine-700); }
.tint-block--pine h2, .tint-block--pine h3, .tint-block--pine h4 { color: var(--paper); }
.tint-block--pine p { color: rgba(250, 247, 241, 0.82); }
.tint-block--pine strong { color: var(--paper); }

.section-head { max-width: 700px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: 1rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pine-500);
    margin-bottom: 0.9rem;
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--leaf);
}
.tint-block--pine .eyebrow { color: var(--leaf); }

.lede { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.6; }

.plain-english {
    display: block;
    font-style: italic;
    font-family: var(--font-display);
    color: var(--pine-500);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--terra { background: var(--terra); color: #fff; }
.btn--terra:hover { background: var(--terra-deep); }
.btn--pine { background: var(--pine-700); color: #fff; }
.btn--pine:hover { background: var(--pine-500); }
.btn--outline { border-color: var(--pine-700); color: var(--pine-700); background: transparent; }
.btn--outline:hover { background: var(--pine-700); color: #fff; }
.btn--paper { background: var(--paper); color: var(--pine-900); }
.btn--paper:hover { background: #fff; }
.btn--ghost-light { border-color: rgba(250, 247, 241, 0.55); color: var(--paper); background: transparent; }
.btn--ghost-light:hover { background: rgba(250, 247, 241, 0.12); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--pine-700);
    text-decoration: none;
    border-bottom: 2px solid var(--leaf);
    padding-bottom: 0.05rem;
    transition: gap 0.15s ease, color 0.15s ease;
}
.text-link:hover { gap: 0.7rem; color: var(--pine-900); }

/* ---------- Header (conventional, predictable) ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1500;
    background: rgba(250, 247, 241, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 24px rgba(30, 51, 39, 0.07);
}
.header-bar {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 48px; width: auto; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    background: var(--white);
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--pine-900);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.site-nav > a, .nav-drop > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.site-nav > a:hover, .nav-drop > a:hover, .site-nav > a[aria-current="page"] {
    background: var(--sage);
    color: var(--pine-900);
}
.nav-cta { margin-left: 0.6rem; }

.nav-drop { position: relative; }
.nav-drop > a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 0.2rem;
}
.nav-drop-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.6rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-drop-menu a {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-drop-menu a:hover { background: var(--sage); color: var(--pine-900); }
.nav-drop-menu a small {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--ink-soft);
}

@media (max-width: 1080px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        background: var(--paper);
        padding: 1.25rem var(--pad) 3rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.28s ease;
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav > a, .nav-drop > a { padding: 0.9rem 1rem; font-size: 1.08rem; border-radius: var(--radius-sm); }
    .nav-drop-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; background: transparent;
        padding: 0 0 0 1rem; min-width: 0;
    }
    .nav-cta { margin: 1rem 0 0; }
    body.nav-locked { overflow: hidden; }
}

/* ---------- Hero (home) ---------- */
.hero {
    padding-top: calc(var(--header-h) + clamp(2.75rem, 6vw, 5rem));
    padding-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    top: calc(var(--header-h) - 120px);
    right: -180px;
    width: 620px;
    height: 620px;
    background: var(--sage);
    border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%;
    opacity: 0.8;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
    position: relative;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 em { font-style: italic; font-weight: 500; color: var(--terra); }
.hero .lede { margin-top: 1.5rem; max-width: 33rem; }
.hero .btn-row { margin-top: 2.25rem; }

.hero-media { position: relative; }
.arch-photo {
    border-radius: var(--radius-pill) var(--radius-pill) var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--white);
}
.arch-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .arch-photo { aspect-ratio: 4 / 4.6; max-width: 430px; margin-inline: auto; }
.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    background: var(--pine-700);
    color: var(--paper);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow-md);
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.4;
}
.hero-badge strong { display: block; font-size: 1.45rem; color: #C9E29B; }

/* ---------- Trust strip ---------- */
.trust-strip {
    border-block: 1px solid var(--line);
    background: var(--white);
}
.trust-strip-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 1.1rem var(--pad);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2.75rem;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink-soft);
}
.trust-item svg { width: 19px; height: 19px; color: var(--leaf); flex-shrink: 0; }

/* ---------- Stat tiles ---------- */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 760px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.stat-tile .stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    color: var(--pine-700);
    line-height: 1.05;
}
.stat-tile .stat-label {
    margin-top: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-soft);
}

/* ---------- Split (image + text) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}
.split--reverse .split-media { order: 2; }
@media (max-width: 880px) {
    .split, .split--reverse { grid-template-columns: 1fr; }
    .split--reverse .split-media { order: 0; }
}
.split-body h2 { margin-bottom: 1.15rem; }
.split-body p + p { margin-top: 1rem; }
.rounded-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--white);
}
.rounded-photo img { width: 100%; height: auto; }
figure.rounded-photo figcaption,
figure .photo-caption {
    background: var(--white);
    padding: 0.8rem 1rem 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-soft);
    text-align: center;
}

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.4rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .card-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 660px) { .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; } }

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
a.card { text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.card--leaf { --card-soft: var(--leaf-soft); --card-strong: var(--pine-500); }
.card--sky { --card-soft: var(--sky-soft); --card-strong: var(--sky); }
.card--plum { --card-soft: var(--plum-soft); --card-strong: var(--plum); }
.card--terra { --card-soft: var(--terra-soft); --card-strong: var(--terra); }

.card-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--card-strong, var(--pine-500));
    margin-bottom: 0.75rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.97rem; }
.card .text-link { margin-top: auto; padding-top: 1.1rem; }

.icon-disc {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-soft, var(--sage));
    color: var(--card-strong, var(--pine-700));
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}
.icon-disc svg { width: 26px; height: 26px; }

/* compact icon card (benefits etc.) */
.icon-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.icon-card h3, .icon-card h4 {
    font-family: var(--font-text);
    font-size: 1.04rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--pine-900);
}
.icon-card p { font-size: 0.93rem; }
.icon-card .icon-disc { width: 46px; height: 46px; margin-bottom: 0.9rem; }
.icon-card .icon-disc svg { width: 23px; height: 23px; }
.tint-block--pine .icon-card {
    background: rgba(250, 247, 241, 0.07);
    border-color: var(--line-dark);
    box-shadow: none;
}
.tint-block--pine .icon-card h3, .tint-block--pine .icon-card h4 { color: var(--paper); }
.tint-block--pine .icon-card .icon-disc { background: rgba(122, 181, 71, 0.2); color: #C9E29B; }

/* ---------- Care path (what to expect) ---------- */
.care-path {
    list-style: none;
    counter-reset: care;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
@media (max-width: 980px) { .care-path { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .care-path { grid-template-columns: 1fr; } }
.care-path li {
    counter-increment: care;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.care-path li::before {
    content: counter(care);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--sage);
    color: var(--pine-700);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.care-path li strong, .care-path li h3 {
    display: block;
    font-family: var(--font-text);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--pine-900);
    margin-bottom: 0.4rem;
}
.care-path li p { font-size: 0.92rem; }

/* vertical variant for longer step content */
.step-list { list-style: none; counter-reset: step; display: grid; gap: 0; }
.step-list li {
    counter-increment: step;
    position: relative;
    padding: 0 0 1.9rem 3.5rem;
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--pine-700);
    color: var(--paper);
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 2.65rem;
    bottom: 0.2rem;
    width: 2px;
    background: var(--line);
}
.step-list li strong, .step-list li h3 {
    display: block;
    color: var(--pine-900);
    font-family: var(--font-text);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}
.step-list li p { font-size: 0.95rem; }

/* ---------- Check list ---------- */
.check-list { list-style: none; display: grid; gap: 0.9rem; }
.check-list li { position: relative; padding-left: 2.15rem; color: var(--ink-soft); }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--leaf-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E6149' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.72rem no-repeat;
}
.check-list--cols { grid-template-columns: 1fr 1fr; column-gap: 2.25rem; }
@media (max-width: 660px) { .check-list--cols { grid-template-columns: 1fr; } }
.tint-block--pine .check-list li { color: rgba(250, 247, 241, 0.82); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--pine-900);
    font-size: 1.12rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2.5px solid var(--pine-500);
    border-bottom: 2.5px solid var(--pine-500);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg); }
.faq-body { padding: 0 1.6rem 1.5rem; }
.faq-body p + p { margin-top: 0.75rem; }

/* ---------- Callout ---------- */
.callout {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    background: var(--leaf-soft);
    border: 1px solid #D6E5C4;
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
}
.callout .icon-disc { margin-bottom: 0; background: var(--white); width: 46px; height: 46px; }
.callout strong { color: var(--pine-900); display: block; margin-bottom: 0.2rem; }
.callout p { font-size: 0.95rem; margin: 0; }
.callout--sand { background: var(--sand); border-color: var(--line); }
.callout--terra { background: var(--terra-soft); border-color: #EBD2C4; }
.callout--terra .icon-disc { color: var(--terra); }
.callout--sky { background: var(--sky-soft); border-color: #CFE0EB; }
.callout--sky .icon-disc { color: var(--sky); }
.callout--plum { background: var(--plum-soft); border-color: #DCD2E8; }
.callout--plum .icon-disc { color: var(--plum); }

/* ---------- Tags / pills ---------- */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--pine-700);
    background: var(--sage);
    border-radius: var(--radius-pill);
    padding: 0.42rem 0.95rem;
}
.tag svg { width: 15px; height: 15px; }
.tag--terra { background: var(--terra-soft); color: var(--terra-deep); }
.tag--sky { background: var(--sky-soft); color: #3F6B86; }
.tag--plum { background: var(--plum-soft); color: #6C568B; }
.tag--sand { background: var(--sand); color: var(--ink); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.page-hero--pine .tag, .tint-block--pine .tag {
    background: rgba(250, 247, 241, 0.12);
    color: var(--paper);
}

/* ---------- Team grid ---------- */
.person-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.person-photo {
    position: relative;
    background: var(--sage);
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: center;
}
.person-photo .arch-photo {
    width: 150px;
    aspect-ratio: 1 / 1.15;
    border-width: 5px;
    box-shadow: var(--shadow-sm);
}
.person-photo .avatar-fallback {
    width: 100%; height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pine-500);
}
.person-photo .avatar-fallback svg { width: 56px; height: 56px; }
.tenure-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--leaf);
    color: var(--pine-900);
    font-size: 0.74rem;
    font-weight: 800;
    padding: 0.32rem 0.8rem;
    border-radius: var(--radius-pill);
}
.person-body { padding: 1.4rem 1.5rem 1.8rem; }
.person-body h3 { font-size: 1.25rem; }
.person-role {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terra);
    margin: 0.3rem 0 0.8rem;
}
.person-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ---------- Program finder ---------- */
.finder {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.finder-head {
    background: var(--sage);
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.finder-head h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.finder-head .eyebrow { margin-bottom: 0; }
.finder-body { padding: 2rem; }
.finder-step[hidden] { display: none; }
.finder-q {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--pine-900);
    margin-bottom: 1.25rem;
}
.finder-options { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.finder-options .btn { border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); font-weight: 700; }
.finder-options .btn:hover { border-color: var(--pine-700); background: var(--sage); box-shadow: var(--shadow-sm); }
.finder-result { display: none; }
.finder-result.is-active { display: block; }
.finder-result h4 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.finder-result .card-kicker { margin-bottom: 0.6rem; }
.finder-result p { margin-bottom: 1.25rem; }
.finder-reset {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: underline;
    color: var(--ink-soft);
}
.finder-reset:hover { color: var(--ink); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
    padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem));
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}
.page-hero .hero-blob {
    top: -160px;
    right: -220px;
    width: 520px;
    height: 520px;
}
.page-hero h1 { max-width: 17em; position: relative; }
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--terra); }
.page-hero .lede { margin-top: 1.4rem; max-width: 44rem; position: relative; }
.page-hero .btn-row { margin-top: 2rem; position: relative; }
.page-hero .tag-row { margin-top: 1.75rem; position: relative; }

.page-hero--pine { background: var(--pine-700); }
.page-hero--pine .hero-blob { background: var(--pine-500); opacity: 0.5; }
.page-hero--pine h1 { color: var(--paper); }
.page-hero--pine h1 em { color: #C9E29B; }
.page-hero--pine .lede { color: rgba(250, 247, 241, 0.85); }
.page-hero--pine .eyebrow { color: var(--leaf); }
.page-hero--pine .breadcrumbs { color: rgba(250, 247, 241, 0.7); }
.page-hero--pine .breadcrumbs a:hover { color: var(--paper); }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    position: relative;
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--pine-900); text-decoration: underline; }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Contact panel ---------- */
.contact-panel {
    background: var(--pine-700);
    border-radius: var(--radius-lg);
    padding: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--paper);
}
.contact-panel h2, .contact-panel h3 { color: var(--paper); }
.contact-panel p { color: rgba(250, 247, 241, 0.82); }
.contact-panel .eyebrow { color: var(--leaf); }
.contact-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.25rem;
}
@media (max-width: 880px) { .contact-cols { grid-template-columns: 1fr; } }
.contact-col { border-top: 1px solid var(--line-dark); padding-top: 1.4rem; }
.contact-col h3 {
    font-family: var(--font-text);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #C9E29B;
    margin-bottom: 1rem;
}
.contact-col p { font-size: 0.98rem; margin-bottom: 0.85rem; }
.contact-col strong { color: var(--paper); }
.contact-col a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(250, 247, 241, 0.35); }
.contact-col a:hover { border-bottom-color: var(--leaf); }
.contact-big {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--paper);
    text-decoration: none;
    border-bottom: 2px solid var(--leaf);
    margin: 0.3rem 0 0.8rem;
}
.contact-big:hover { color: #C9E29B; }

/* ---------- Prose (long-form) ---------- */
.prose { max-width: 820px; }
.prose h2 { margin: 2.75rem 0 1rem; font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.prose h3 { margin: 2rem 0 0.75rem; }
.prose h4 { margin: 1.5rem 0 0.5rem; font-family: var(--font-text); font-weight: 800; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.4rem; color: var(--ink-soft); }
.prose li { margin-bottom: 0.45rem; }
.prose li::marker { color: var(--pine-500); font-weight: 700; }
.prose a { color: var(--pine-700); font-weight: 700; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.prose blockquote {
    border-left: 4px solid var(--leaf);
    padding-left: 1.25rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}
.prose table, .table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 0.93rem;
}
.prose th, .table th {
    background: var(--sage);
    text-align: left;
    padding: 0.8rem 1rem;
    font-weight: 800;
    color: var(--pine-900);
}
.prose td, .table td {
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    vertical-align: top;
}

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--pine-700);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 3.75rem);
    text-align: center;
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -180px;
    width: 480px;
    height: 480px;
    background: var(--pine-500);
    border-radius: 58% 42% 55% 45% / 50% 55% 45% 50%;
    opacity: 0.45;
    pointer-events: none;
}
.cta-band h2 { color: var(--paper); margin-bottom: 0.75rem; position: relative; }
.cta-band h2 em { font-style: italic; color: #C9E29B; }
.cta-band p { color: rgba(250, 247, 241, 0.85); max-width: 40rem; margin-inline: auto; position: relative; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--pine-900);
    color: rgba(250, 247, 241, 0.75);
    padding: clamp(3.25rem, 6vw, 4.5rem) 0 2.5rem;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--paper);
    margin-bottom: 1rem;
}
.footer-brand p { margin-bottom: 0.75rem; color: inherit; }
.footer-heading {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--leaf);
    margin-bottom: 1.1rem;
}
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--paper); text-decoration: underline; }
.footer-contact { display: grid; gap: 0.8rem; }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.25rem; color: var(--leaf); }
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--paper); text-decoration: underline; }
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line-dark);
    font-size: 0.86rem;
    color: rgba(250, 247, 241, 0.55);
}
.footer-bottom p { margin-bottom: 0.5rem; color: inherit; }
.footer-bottom a { color: rgba(250, 247, 241, 0.72); }

/* ---------- Reveal + lightbox + utilities ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(22, 51, 39, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}
.image-lightbox.active { opacity: 1; visibility: visible; }
.image-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: var(--radius-md);
}
.image-lightbox .close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--paper);
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ---------- Hero slideshow (gentle crossfade in the arch frame) ---------- */
.hero-slideshow { position: relative; }
.hero-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-slideshow img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .hero-slideshow img { transition: none; }
}
