:root {
    --cream: #fbfbfb;
    --cream-deep: #ffeed6;
    --white: #ffffff;
    --ink: #14213d;
    --muted: #536078;
    --indigo: #0878d1;
    --indigo-dark: #075ba5;
    --indigo-soft: #dcefff;
    --coral: #ff5b35;
    --coral-soft: #ffd9ce;
    --teal: #178fd9;
    --teal-soft: #d9efff;
    --yellow: #ffc62e;
    --yellow-soft: #ffedaa;
    --lavender: #a76ed8;
    --lavender-soft: #ead7ff;
    --line: rgba(20, 33, 61, 0.14);
    --shadow: 0 18px 36px rgba(20, 33, 61, 0.12);
    --soft-shadow: 7px 7px 0 rgba(20, 33, 61, 0.12);
    --radius-small: 18px;
    --radius: 28px;
    --radius-large: 42px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Be Vietnam Pro", sans-serif;
    line-height: 1.65;
}

body.modal-open {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
}

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

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

h1,
h2,
h3 {
    font-family: "Bricolage Grotesque", sans-serif;
}

.brand {
    font-family: "Plus Jakarta Sans", sans-serif;
}

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.12;
}

h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 5.7vw, 5.35rem);
    letter-spacing: -0.03em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 4vw, 3.7rem);
    letter-spacing: -0.025em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--muted);
}

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

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

.section {
    padding: 104px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 251, 251, 0.92);
    backdrop-filter: blur(18px);
}

.nav-shell,
.nav-links,
.footer-links,
.brand,
.hero-actions {
    display: flex;
    align-items: center;
}

.nav-shell {
    min-height: 78px;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    gap: 11px;
    line-height: 1;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 15px 15px 15px 4px;
    color: var(--white);
    background: var(--indigo);
    box-shadow: 4px 4px 0 var(--coral);
    font-size: 1.15rem;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--indigo-dark);
    font-size: 1rem;
}

.brand small {
    margin-top: 5px;
    color: var(--coral);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-links {
    gap: 27px;
}

.nav-links a,
.footer-links a {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--indigo);
}

.menu-toggle {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-small {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 0.76rem;
}

.button-primary {
    color: var(--white);
    background: var(--indigo);
    box-shadow: 0 8px 18px rgba(8, 120, 209, 0.24);
}

.button-primary:hover {
    background: var(--indigo-dark);
    box-shadow: 0 12px 22px rgba(8, 120, 209, 0.3);
}

.site-header .button-primary {
    background: var(--coral);
    box-shadow: 0 8px 18px rgba(255, 91, 53, 0.26);
}

.site-header .button-primary:hover {
    background: #e84a26;
    box-shadow: 0 12px 22px rgba(255, 91, 53, 0.32);
}

.button-secondary {
    color: var(--indigo);
    border-color: var(--line);
    background: var(--white);
}

.button-secondary:hover {
    box-shadow: var(--soft-shadow);
}

.hero-actions .button-primary {
    box-shadow: 0 6px 14px rgba(8, 120, 209, 0.18);
}

.hero-actions .button-primary:hover {
    box-shadow: 0 9px 18px rgba(8, 120, 209, 0.24);
}

.hero-actions .button-secondary {
    border: 0;
    box-shadow: 0 6px 14px rgba(36, 34, 60, 0.08);
}

.hero-actions .button-secondary:hover {
    box-shadow: 0 9px 18px rgba(36, 34, 60, 0.12);
}

.button-light {
    color: var(--indigo-dark);
    background: var(--white);
    box-shadow: 0 8px 18px rgba(36, 34, 60, 0.13);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: var(--indigo);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--coral);
}

.hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - 79px);
    align-items: center;
    overflow: hidden;
    padding: 56px 0;
}

.hero-grid,
.approach-grid,
.support-grid,
.faq-grid {
    display: grid;
    align-items: center;
    gap: 68px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
}

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

.hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--cream);
}

.hero-base {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.motion-pending .hero-base,
.motion-ready .hero-base {
    opacity: 0;
}

.motion-pending .hero-copy > *,
.motion-ready .hero-copy > * {
    opacity: 0;
}

.hero-animation-complete .hero-base {
    opacity: 1;
}

.hero-illustrated .hero-grid {
    position: relative;
    z-index: 2;
}

.hero h1 em {
    color: var(--coral);
    font-family: inherit;
    font-style: normal;
}

.hero-intro {
    max-width: 640px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 13px;
}

.art-frame {
    position: relative;
    border: 0;
    background: transparent;
    overflow: visible;
}

.art-frame img,
.art-frame picture {
    width: 100%;
    height: 100%;
}

.art-frame img {
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(36, 34, 60, 0.1));
}

.art-frame picture {
    display: block;
}

.hero-art {
    aspect-ratio: 1.35;
}

.hero-art img {
    position: absolute;
    inset: 0;
}

.heading-centered {
    max-width: 670px;
    margin: 0 auto 52px;
    text-align: center;
}

.eyebrow-centered {
    justify-content: center;
}

.section-heading>p:last-child {
    margin-bottom: 0;
}

.programs {
    padding-top: 118px;
}

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

.program-card {
    min-height: 300px;
    padding: 25px 22px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: 6px 6px 0 rgba(20, 33, 61, 0.13);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover {
    transform: translateY(-7px);
    box-shadow: 9px 12px 0 rgba(20, 33, 61, 0.16);
}

.program-card-coral {
    background: #ff704d;
}

.program-card-teal {
    background: #1689d5;
}

.program-card-yellow {
    background: var(--yellow);
}

.program-card-lavender {
    background: #b784e2;
}

.program-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 15px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.program-card p {
    margin-bottom: 23px;
    font-size: 0.86rem;
    line-height: 1.7;
}

.program-card-teal h3,
.program-card-teal p,
.program-card-teal .text-link {
    color: var(--white);
}

.program-card-coral p,
.program-card-yellow p,
.program-card-lavender p {
    color: #29334a;
}

.program-card-coral .text-link,
.program-card-yellow .text-link,
.program-card-lavender .text-link {
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    padding: 0;
    color: var(--indigo);
    background: transparent;
    font-size: 0.79rem;
    font-weight: 700;
    transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
    gap: 12px;
    color: var(--coral);
}

.how-it-works {
    background: #0878d1;
}

@media (min-width: 981px) {
    .how-it-works {
        display: flex;
        min-height: 100svh;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .hero {
        min-height: calc(100svh - 78px);
    }

    .hero-illustrated {
        align-items: flex-start;
    }

    .hero-illustrated .hero-grid {
        width: min(calc(100% - 96px), 1760px);
        gap: 0;
        grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
    }

    .hero-copy {
        padding-top: 48px;
    }

    .site-header .nav-shell,
    .site-footer .footer-grid {
        width: min(calc(100% - 96px), 1760px);
    }

}

@media (min-width: 1200px) and (max-width: 1440px) {
    .hero h1 {
        font-size: clamp(3.1rem, 5.2vw, 4.75rem);
    }
}

@media (min-width: 1920px) {
    .hero-picture {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
    }

    .hero-image {
        height: auto;
        transform: none;
        object-fit: contain;
    }
}

.heading-split {
    display: grid;
    align-items: end;
    gap: 68px;
    margin-bottom: 44px;
    grid-template-columns: 1.1fr 0.9fr;
}

.how-it-works .eyebrow,
.cta-card .eyebrow {
    color: var(--yellow-soft);
}

.how-it-works h2 {
    color: var(--coral);
}

.cta-card h2 {
    color: var(--white);
}

.how-it-works .heading-split>p {
    color: var(--indigo-soft);
}

.step-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.step-card {
    display: flex;
    gap: 20px;
    border: 0;
    border-radius: var(--radius);
    padding: 25px 22px 21px;
    background: var(--white);
}

.step-card h3 {
    color: var(--ink);
}

.step-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.step-number {
    display: grid;
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 50%;
    color: var(--indigo-dark);
    background: var(--yellow);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.83rem;
    font-weight: 800;
}

.step-card:nth-child(2) .step-number {
    color: var(--white);
    background: var(--coral);
}

.step-card:nth-child(3) .step-number {
    color: var(--white);
    background: var(--lavender);
}

.approach-grid {
    grid-template-columns: 0.98fr 1.02fr;
}

.approach {
    background: var(--indigo);
}

.approach-copy>p:not(.eyebrow) {
    color: #30384d;
}

.approach-art,
.support-art {
    aspect-ratio: 1.35;
}

.approach-copy>p:not(.eyebrow),
.support-copy>p:not(.eyebrow) {
    margin-bottom: 24px;
}

.approach-list {
    display: grid;
    gap: 9px;
}

.approach-list>div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 14px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 4px 4px 0 rgba(20, 33, 61, 0.06);
}

.approach-list>div>span {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--indigo);
    font-size: 0.73rem;
}

.approach-list>div:nth-child(2)>span {
    background: var(--coral);
}

.approach-list>div:nth-child(3)>span {
    color: var(--ink);
    background: var(--yellow);
}

.approach-list p {
    margin: 0;
}

.approach-list strong,
.approach-list small {
    display: block;
}

.approach-list strong {
    color: var(--ink);
    font-size: 0.82rem;
}

.approach-list small {
    color: var(--muted);
    font-size: 0.73rem;
}

.support-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.process-support {
    margin-top: 104px;
    padding-top: 96px;
}

.process-support h2 {
    color: var(--coral);
}

.process-support .support-copy>p {
    color: var(--indigo-soft);
}

.support-copy .button-secondary {
    border: 0;
}

.faq-grid {
    align-items: start;
    grid-template-columns: 0.82fr 1.18fr;
}

.faq .section-heading {
    position: sticky;
    top: 116px;
}

.faq-list {
    display: grid;
    gap: 11px;
}

details {
    border: 0;
    border-radius: var(--radius-small);
    background: var(--white);
    box-shadow: 4px 4px 0 rgba(20, 33, 61, 0.06);
}

.faq-list details:nth-child(1) {
    border-left: 5px solid var(--coral);
}

.faq-list details:nth-child(2) {
    border-left: 5px solid var(--indigo);
}

.faq-list details:nth-child(3) {
    border-left: 5px solid var(--yellow);
}

.faq-list details:nth-child(4) {
    border-left: 5px solid var(--lavender);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 20px;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

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

summary span {
    color: var(--coral);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 180ms ease;
}

details[open] summary span {
    transform: rotate(45deg);
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 0.85rem;
}

.cta-section {
    padding-top: 0;
}

.cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    border-radius: var(--radius-large);
    padding: 49px 55px;
    background: #8e58c7;
}

.cta-card h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.cta-decoration {
    position: absolute;
    right: 190px;
    bottom: -99px;
    color: rgba(255, 255, 255, 0.07);
    font-size: 13rem;
    line-height: 1;
}

.cta-card>*:not(.cta-decoration) {
    position: relative;
    z-index: 1;
}

.site-footer {
    padding: 30px 0;
    background: var(--coral);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-links {
    gap: 20px;
}

.site-footer p {
    margin: 0;
    font-size: 0.72rem;
}

.site-footer p,
.site-footer .brand strong,
.site-footer .brand small,
.site-footer .footer-links a {
    color: var(--white);
}

.site-footer .footer-links a:hover {
    color: var(--white);
    opacity: 0.75;
}

.site-footer .brand-mark {
    color: var(--coral);
    background: var(--white);
    box-shadow: 4px 4px 0 rgba(20, 33, 61, 0.2);
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    overflow-y: auto;
    place-items: center;
    padding: 24px;
    background: rgba(20, 33, 61, 0.52);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    width: min(100%, 610px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 35px;
    background: var(--cream);
    box-shadow: 0 25px 70px rgba(20, 33, 61, 0.26);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--indigo);
    background: var(--indigo-soft);
    font-size: 1.65rem;
    line-height: 1;
}

.modal h2 {
    margin-bottom: 10px;
    font-size: 2.25rem;
}

.modal-intro {
    margin-bottom: 20px;
    font-size: 0.88rem;
}

form {
    display: grid;
    gap: 13px;
}

label>span {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
}

label small {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 12px;
    color: var(--ink);
    background: var(--white);
    font-size: 0.84rem;
}

textarea {
    resize: vertical;
}

.button-submit {
    width: 100%;
    margin-top: 3px;
}

.success-state {
    padding: 16px 5px 8px;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--teal);
    box-shadow: 7px 7px 0 var(--teal-soft);
    font-size: 1.8rem;
    font-weight: 700;
}

.success-state p:not(.eyebrow) {
    margin-bottom: 24px;
}

@media (max-width: 1199px) {
    .hero {
        display: flex;
        flex-direction: column;
        min-height: calc(100svh - 78px);
        padding: 48px 0 0;
    }

    .hero-picture {
        position: static;
        order: 2;
        flex: 1 1 auto;
        display: flex;
        align-items: flex-end;
        width: 100%;
        height: auto;
        margin-top: 36px;
        overflow: hidden;
    }

    .hero-grid {
        order: 1;
        flex: 0 0 auto;
    }

    .hero-illustrated .hero-grid {
        width: 100%;
        min-height: 0;
        gap: 0;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-copy {
        width: min(calc(100% - 48px), var(--container));
        margin: 0 auto;
    }

    .hero-image {
        position: static;
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: none;
    }

}

@media (min-width: 681px) and (max-width: 1199px) {
    .hero h1 {
        font-size: clamp(4rem, 7.4vw, 5.4rem);
    }

    .hero-intro {
        max-width: 600px;
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .hero-actions {
        width: fit-content;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-copy {
        padding-top: 36px;
    }
}

@media (min-width: 681px) and (max-width: 1199px) and (orientation: landscape) and (min-height: 600px) {
    .hero {
        display: block;
        padding: 0;
        overflow: hidden;
    }

    .hero-picture {
        position: absolute;
        inset: 0;
        order: unset;
        flex: unset;
        display: block;
        width: 100%;
        height: 100%;
        margin-top: 0;
        overflow: visible;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }

    .hero-grid {
        order: unset;
    }

    .hero-illustrated .hero-grid {
        width: min(calc(100% - 48px), var(--container));
        min-height: calc(100svh - 78px);
        margin-inline: auto;
        gap: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        align-items: start;
    }

    .hero-copy {
        width: min(100%, 540px);
        margin: 0;
        padding-top: 44px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 4.7vw, 3.5rem);
    }

    .hero-intro {
        max-width: none;
        font-size: 1.1rem;
    }
}

@media (max-width: 980px) {
    .nav-shell {
        position: relative;
    }

    .menu-toggle {
        display: grid;
        width: 46px;
        height: 46px;
        place-content: center;
        gap: 5px;
        border: 0;
        border-radius: 14px;
        background: var(--indigo);
    }

    .menu-toggle[aria-expanded="true"] {
        background: var(--coral);
    }

    .menu-toggle span {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--white);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        gap: 5px;
        border: 1px solid var(--line);
        border-top: 0;
        border-radius: 0 0 18px 18px;
        padding: 13px 16px 17px;
        background: rgba(251, 251, 251, 0.98);
        box-shadow: 0 14px 22px rgba(20, 33, 61, 0.1);
    }

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

    .nav-links a {
        padding: 8px 0;
    }

    .nav-links .button {
        margin-top: 5px;
    }

    .hero-grid,
    .approach-grid,
    .support-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .hero-art {
        aspect-ratio: 1.55;
    }

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

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

    .approach-art,
    .support-art {
        aspect-ratio: 1.35;
    }

    .support-copy {
        order: 2;
    }

    .support-art {
        order: 1;
    }

    .faq-grid {
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .faq .section-heading {
        position: static;
    }

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

@media (min-width: 376px) and (max-width: 680px) {
    .hero h1 {
        font-size: clamp(2.4rem, 10vw, 3rem);
    }

    .hero .hero-intro {
        font-size: 0.95rem;
    }
}

@media (min-width: 415px) and (max-width: 680px) {
    .hero .hero-intro {
        font-size: 1.2rem;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 76px 0;
    }

    .site-header .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        position: relative;
        height: calc(97.5svh - 78px);
        height: calc(97.5dvh - 78px);
        min-height: 0;
        padding: 28px 0 0;
    }

    .hero-illustrated .hero-grid {
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: 0;
        gap: 0;
    }

    .hero-picture {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        flex: none;
        margin-top: 0;
        width: 100%;
        height: 58%;
        z-index: 1;
        display: block;
        pointer-events: none;
        background: transparent;
    }

    .hero-base {
        display: block;
        width: 100%;
        height: 100%;
    }

    .hero-copy {
        width: min(calc(100% - 30px), var(--container));
        min-width: 0;
        margin: 0 auto;
    }

    h1 {
        margin-bottom: 14px;
        font-size: clamp(2.15rem, 9.4vw, 2.6rem);
    }

    h2 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .hero-intro {
        margin-bottom: 18px;
        font-size: 0.84rem;
        line-height: 1.52;
    }

    .hero-actions {
        width: fit-content;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .button {
        width: auto;
        min-height: 44px;
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    .hero-illustrated .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-art {
        aspect-ratio: 1.35;
    }

    .programs {
        padding-top: 84px;
    }

    .heading-centered {
        margin-bottom: 34px;
    }

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

    .program-card {
        min-height: 0;
        padding: 22px;
    }

    .program-icon {
        margin-bottom: 20px;
    }

    .heading-split {
        gap: 10px;
        margin-bottom: 30px;
        grid-template-columns: 1fr;
    }

    .process-support {
        margin-top: 70px;
        padding-top: 60px;
    }

    .step-card {
        padding: 20px 18px 17px;
    }

    .approach-art,
    .support-art {
        aspect-ratio: 1.35;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 30px;
        padding: 33px 25px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        gap: 11px 18px;
    }

    .modal {
        place-items: start center;
        padding: 15px;
    }

    .modal-panel {
        margin-top: 12px;
        border-radius: 22px;
        padding: 28px 20px 22px;
    }

    .modal h2 {
        padding-right: 24px;
        font-size: 1.9rem;
    }
}

@media (max-width: 680px) and (max-height: 780px) {
    .hero {
        padding-top: 16px;
    }

    h1 {
        margin-bottom: 10px;
        font-size: clamp(2rem, 9vw, 2.4rem);
    }

    .hero-intro {
        margin-bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button:hover {
        transform: none;
    }

    .program-card:hover {
        transform: none;
    }

    .text-link {
        transition: color 180ms ease;
    }

    .text-link:hover {
        gap: 8px;
    }

    summary span {
        transition: none;
    }

    details[open] summary span {
        transform: none;
    }

    .menu-toggle span {
        transition: none;
    }

    .nav-links a,
    .footer-links a,
    .button {
        transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
    }

    .hero-base,
    .hero-copy > * {
        opacity: 1 !important;
        transform: none !important;
    }

}
