@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Lora";
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("../fonts/lora-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Lora";
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("../fonts/lora-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --cream: #f7f4ee;
    --white: #ffffff;
    --green: #315a57;
    --green-dark: #234643;
    --sage: #a9b9a7;
    --sage-light: #e7ede5;
    --clay: #d29a7e;
    --clay-light: #f2dfd4;
    --ink: #263432;
    --muted: #596563;
    --line: #dddcd5;
    --error: #8c2f2f;
    --success: #275746;
    --shadow: 0 20px 55px rgba(38, 52, 50, 0.08);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--cream);
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.preview-bar {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 44px;
    padding: 0.55rem 1rem;
    color: #fff;
    background: #263432;
    font-size: 0.9rem;
}

.preview-bar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

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

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

button,
select {
    cursor: pointer;
}

a {
    color: var(--green-dark);
    text-underline-offset: 0.2em;
}

a:hover {
    text-decoration-thickness: 2px;
}

:focus-visible {
    outline: 3px solid #c16e45;
    outline-offset: 4px;
    border-radius: 4px;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.55rem, 5.4vw, 5rem);
    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    transform: translateY(-180%);
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
}

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

.eyebrow {
    margin-bottom: 0.8rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.35rem;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
    border-color: var(--green-dark);
    background: var(--green-dark);
    transform: translateY(-1px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.button--small {
    min-height: 44px;
    padding: 0.65rem 1.15rem;
}

.button--secondary {
    border-color: var(--green);
    background: transparent;
    color: var(--green-dark);
}

.button--secondary:hover {
    color: var(--white);
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.55rem;
    color: var(--green-dark);
    font-weight: 700;
}

.crisis-banner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--green-dark);
    color: #fff;
    font-size: 0.84rem;
    line-height: 1.55;
}

.crisis-banner a {
    color: #fff;
    font-weight: 700;
}

.crisis-banner p,
.crisis-lines ul {
    margin-bottom: 0;
}

.crisis-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
    gap: 2rem;
    align-items: center;
    padding-block: 0.85rem;
}

.crisis-banner__label {
    margin-bottom: 0.2rem !important;
    color: #dbe6d9;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.crisis-lines {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 1.5rem;
}

.crisis-lines summary {
    min-height: 44px;
    padding-block: 0.7rem;
    cursor: pointer;
    font-weight: 700;
}

.crisis-lines ul {
    padding: 0 0 0.7rem 1.15rem;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(221, 220, 213, 0.8);
    background: rgba(247, 244, 238, 0.94);
    backdrop-filter: blur(12px);
}

.header-inner {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 0.8rem;
    color: var(--ink);
    text-decoration: none;
}

.brand__mark {
    display: inline-flex;
    width: 50px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 52% 48% 48% 52% / 56% 43% 57% 44%;
    background: var(--green);
    color: var(--white);
    font-family: "Lora", Georgia, serif;
    font-size: 0.94rem;
    font-weight: 700;
}

.brand__name {
    font-family: "Lora", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 1.5vw, 1.35rem);
}

.site-nav > a:not(.button) {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.site-nav > a:not(.button):hover {
    color: var(--green);
}

.nav-toggle {
    display: none;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.nav-toggle__icon {
    position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    position: absolute;
    left: 0;
    content: "";
}

.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after { top: 6px; }

.hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4.5rem, 8vw, 8rem);
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: 8%;
    left: -7rem;
    width: 17rem;
    height: 17rem;
    border-radius: 42% 58% 53% 47% / 45% 45% 55% 55%;
    background: rgba(169, 185, 167, 0.25);
    content: "";
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.hero-copy {
    max-width: 720px;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.75;
}

.supporting-line {
    margin-bottom: 2rem;
    color: var(--green-dark);
    font-family: "Lora", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    align-items: center;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.8rem;
    margin: 2.5rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
    list-style: none;
}

.hero-facts li {
    position: relative;
    padding-left: 1.15rem;
}

.hero-facts li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clay);
    content: "";
}

.hero-visual {
    position: relative;
    padding-right: 1rem;
    padding-bottom: 2.5rem;
}

.photo-placeholder {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px dashed rgba(49, 90, 87, 0.45);
    background: linear-gradient(145deg, var(--sage-light), #f2e8df);
    color: var(--green-dark);
    font-weight: 700;
    text-align: center;
}

.responsive-photo {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.responsive-photo--hero {
    min-height: 520px;
    border-radius: 46% 46% 28px 28px / 20% 20% 28px 28px;
}

.photo-placeholder small {
    color: var(--muted);
    font-weight: 500;
}

.photo-placeholder--hero {
    min-height: 520px;
    padding: 2rem;
    border-radius: 46% 46% 28px 28px / 20% 20% 28px 28px;
}

.photo-placeholder__shape {
    width: 135px;
    height: 135px;
    margin-bottom: 1rem;
    border: 2px solid rgba(49, 90, 87, 0.22);
    border-radius: 60% 40% 50% 50% / 42% 51% 49% 58%;
    box-shadow: 70px 28px 0 -25px rgba(210, 154, 126, 0.42), -58px 40px 0 -34px rgba(49, 90, 87, 0.25);
}

.hero-note {
    position: absolute;
    right: -0.4rem;
    bottom: 0;
    width: min(82%, 330px);
    padding: 1.15rem 1.3rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-note span {
    float: left;
    margin-right: 0.45rem;
    color: var(--clay);
    font-family: "Lora", Georgia, serif;
    font-size: 2.2rem;
    line-height: 0.8;
}

.hero-note p {
    margin-bottom: 0;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
}

.section {
    padding-block: clamp(4.5rem, 8vw, 8rem);
}

.section--white {
    background: var(--white);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 520px;
    color: var(--muted);
}

.section-heading--centered {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-inline: auto;
    text-align: center;
}

.section-heading--centered p:last-child {
    max-width: 620px;
}

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

.support-card {
    min-height: 255px;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--cream);
}

.support-card:nth-child(2),
.support-card:nth-child(6) {
    background: var(--sage-light);
}

.support-card:nth-child(4) {
    background: #f5e9e2;
}

.support-card__number {
    display: block;
    margin-bottom: 2.6rem;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.support-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.people-grid {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 1.5rem;
}

.person-card {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.25fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.person-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.72fr);
}

.person-card:nth-child(even) .person-card__photo {
    order: 2;
}

.person-card__photo {
    min-height: 640px;
}

.photo-placeholder--portrait {
    height: 100%;
    min-height: 640px;
    padding: 2rem;
    border: 0;
    border-radius: 0;
}

.photo-placeholder__initial {
    color: rgba(49, 90, 87, 0.23);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(6rem, 14vw, 10rem);
    line-height: 1;
}

.person-card__content {
    padding: clamp(2rem, 5vw, 4.5rem);
}

.person-card__role {
    margin-bottom: 0.55rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.person-card__content > p:not(.person-card__role) {
    max-width: 650px;
    color: var(--muted);
}

.person-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 2rem 0;
    border-top: 1px solid var(--line);
}

.person-details > div {
    padding: 1rem 1rem 1rem 0;
    border-bottom: 1px solid var(--line);
}

.person-details > div:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.person-details dt {
    margin-bottom: 0.25rem;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.person-details dd {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.person-details ul {
    margin: 0;
    padding-left: 1.1rem;
}

.draft-copy {
    color: #7a3d20 !important;
    font-size: 0.82rem !important;
    font-weight: 700;
}

.draft-copy--box {
    padding: 0.8rem 1rem;
    border: 1px dashed var(--clay);
    border-radius: var(--radius-sm);
    background: var(--clay-light);
}

.section--approach {
    overflow: hidden;
    background: var(--green);
    color: #f8fbf7;
}

.section--approach h2,
.section--approach .eyebrow {
    color: #fff;
}

.section--approach p {
    max-width: 700px;
    color: #e3ebe2;
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.55fr 1.2fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.approach-mark {
    display: grid;
    width: min(100%, 360px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 56% 44% 49% 51% / 42% 50% 50% 58%;
    background: rgba(255, 255, 255, 0.08);
}

.approach-mark span {
    color: #fff;
    font-family: "Lora", Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
}

.section--approach blockquote {
    max-width: 650px;
    margin: 2rem 0 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--clay);
    color: #fff;
    font-family: "Lora", Georgia, serif;
    font-size: clamp(1.2rem, 2.3vw, 1.65rem);
    line-height: 1.5;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.process-intro {
    position: sticky;
    top: 8rem;
    align-self: start;
}

.process-intro p:last-child {
    max-width: 430px;
    color: var(--muted);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    counter-increment: steps;
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.process-list li::before {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--sage-light);
    color: var(--green-dark);
    content: counter(steps, decimal-leading-zero);
    font-size: 0.78rem;
    font-weight: 700;
}

.process-list span {
    padding-top: 0.55rem;
    font-size: 1.02rem;
    font-weight: 600;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro p:last-child {
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    cursor: pointer;
    font-family: "Lora", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    list-style: none;
}

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

.faq-list summary span {
    position: relative;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage-light);
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 15px;
    left: 9px;
    width: 14px;
    height: 2px;
    background: var(--green);
    content: "";
}

.faq-list summary span::after {
    transform: rotate(90deg);
    transition: transform 160ms ease;
}

.faq-list details[open] summary span::after {
    transform: rotate(0deg);
}

.faq-list details p {
    max-width: 730px;
    padding: 0 3.5rem 1.5rem 0;
    color: var(--muted);
}

.section--contact {
    background: #e9eee7;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 8rem;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 480px;
    color: var(--muted);
}

.contact-options {
    display: grid;
    gap: 0.8rem;
    margin: 2rem 0;
}

.contact-options > div {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(49, 90, 87, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.5);
}

.contact-options__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 1.1rem;
}

.contact-options strong,
.contact-options span:not(.contact-options__icon) {
    display: block;
}

.contact-options span:not(.contact-options__icon) {
    color: var(--muted);
    font-size: 0.82rem;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-style: normal;
    font-weight: 700;
}

.form-card {
    padding: clamp(1.35rem, 4vw, 3rem);
    border: 1px solid rgba(49, 90, 87, 0.14);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 24px 70px rgba(49, 90, 87, 0.08);
}

.contact-form {
    display: grid;
    gap: 1.35rem;
}

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

.field {
    min-width: 0;
}

.field label,
.fieldset legend {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
}

.optional {
    color: var(--muted);
    font-weight: 400;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0.78rem 0.9rem;
    border: 1px solid #bfc5c1;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: var(--green);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-width: 2px;
    border-color: var(--error);
}

.field-hint,
.field-error {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.field-hint {
    margin-top: -1rem;
    color: var(--muted);
}

.field-error {
    color: var(--error);
    font-weight: 700;
}

.fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.radio-row label {
    display: flex;
    min-height: 48px;
    flex: 1 1 160px;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0.65rem 0.85rem;
    border: 1px solid #bfc5c1;
    border-radius: 10px;
    cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    accent-color: var(--green);
}

.privacy-warning {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--clay);
    border-radius: 8px;
    background: #fcf4ef;
    font-size: 0.84rem;
}

.privacy-warning p {
    margin: 0.25rem 0 0;
    color: #5b4b44;
}

.checkbox-field label {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-weight: 400;
    line-height: 1.55;
}

.checkbox-field input {
    margin-top: 0.12rem;
}

.button--submit {
    width: 100%;
}

.form-footnote {
    margin: -0.65rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}

.form-status {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid;
    border-radius: var(--radius-sm);
}

.form-status h3 {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.form-status p,
.form-status ul {
    margin-bottom: 0;
    font-size: 0.86rem;
}

.form-status--success {
    border-color: #a7c8b9;
    background: #edf7f1;
    color: var(--success);
}

.form-status--error {
    border-color: #d9aaaa;
    background: #fff2f2;
    color: var(--error);
}

.form-status--notice {
    border-color: #d8c0a7;
    background: #fff8ec;
}

.form-status code {
    font-size: 0.8rem;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.urgent-help {
    background: var(--clay-light);
}

.urgent-help__inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding-block: 2.8rem;
}

.urgent-help h2,
.urgent-help p {
    margin-bottom: 0;
}

.urgent-help h2 {
    max-width: 700px;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.urgent-help a {
    font-weight: 800;
}

.site-footer {
    padding-top: 4rem;
    background: var(--ink);
    color: #dbe1df;
}

.site-footer a {
    color: #f2f6f4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.brand--footer {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-grid > div:first-child p {
    max-width: 470px;
    color: #bfc9c6;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-heading {
    margin-bottom: 0.25rem;
    color: #fff;
    font-weight: 700;
}

.site-footer .draft-copy {
    color: #f0bd9f !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: #aebbb7;
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.legal-hero,
.error-page {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-hero__inner,
.error-page__inner {
    max-width: 830px;
}

.legal-hero p:last-child {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.legal-content {
    padding-bottom: clamp(5rem, 9vw, 9rem);
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 760px);
    gap: clamp(2.5rem, 7vw, 6rem);
}

.legal-nav {
    position: sticky;
    top: 7rem;
    align-self: start;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.legal-nav strong,
.legal-nav a {
    display: block;
}

.legal-nav strong {
    margin-bottom: 0.6rem;
}

.legal-nav a {
    min-height: 40px;
    padding-block: 0.35rem;
    font-size: 0.86rem;
}

.legal-body section {
    scroll-margin-top: 8rem;
    padding: 0 0 2rem;
}

.legal-body h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.legal-body h3 {
    margin-top: 1.6rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.legal-body p,
.legal-body li {
    color: #465451;
}

.legal-note {
    padding: 1.2rem 1.3rem;
    border: 1px solid #d7b79d;
    border-radius: var(--radius-sm);
    background: #fff4eb;
}

.error-code {
    margin-bottom: 1rem;
    color: var(--clay);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1;
}

.error-page__inner p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.05rem;
}

@media (max-width: 1020px) {
    .site-nav {
        gap: 0.65rem;
    }

    .site-nav > a:not(.button) {
        font-size: 0.8rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
        gap: 3rem;
    }

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

    .support-card {
        min-height: 220px;
    }
}

@media (max-width: 860px) {
    .crisis-banner__inner {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .crisis-lines {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
        padding-left: 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .js .nav-toggle {
        display: inline-flex;
    }

    .js .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1.25rem;
        border-bottom: 1px solid var(--line);
        background: var(--cream);
        box-shadow: 0 20px 30px rgba(38, 52, 50, 0.08);
    }

    .js .site-nav[data-open="true"] {
        display: flex;
    }

    .site-nav > a:not(.button) {
        min-height: 48px;
        border-bottom: 1px solid var(--line);
        font-size: 0.95rem;
    }

    .site-nav .button {
        margin-top: 0.8rem;
    }

    .hero-grid,
    .section-heading,
    .approach-grid,
    .process-layout,
    .faq-layout,
    .contact-grid,
    .urgent-help__inner,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero-visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

    .photo-placeholder--hero {
        min-height: 480px;
    }

    .responsive-photo--hero {
        min-height: 480px;
    }

    .section-heading {
        gap: 1rem;
        align-items: start;
    }

    .section-heading--centered {
        align-items: flex-start;
        text-align: left;
    }

    .person-card {
        grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
    }

    .person-card:nth-child(even) {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
    }

    .person-card__content {
        padding: 2rem;
    }

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

    .person-details > div:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .approach-mark {
        width: min(65vw, 300px);
    }

    .process-intro,
    .contact-copy,
    .legal-nav {
        position: static;
    }

    .legal-nav {
        display: none;
    }
}

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

    .crisis-banner {
        font-size: 0.8rem;
    }

    .header-inner {
        gap: 1rem;
    }

    .site-header .brand {
        gap: 0.6rem;
    }

    .site-header .brand__name {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .brand__mark {
        width: 48px;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .photo-placeholder--hero {
        min-height: 390px;
        border-radius: 90px 90px 24px 24px;
    }

    .responsive-photo--hero {
        min-height: 390px;
        border-radius: 90px 90px 24px 24px;
    }

    .support-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .support-card__number {
        margin-bottom: 1.5rem;
    }

    .person-card,
    .person-card:nth-child(even) {
        grid-template-columns: 1fr;
        border-radius: var(--radius-md);
    }

    .person-card:nth-child(even) .person-card__photo {
        order: 0;
    }

    .person-card__photo,
    .photo-placeholder--portrait {
        min-height: 430px;
    }

    .person-card__content {
        padding: 1.5rem;
    }

    .form-card {
        border-radius: var(--radius-md);
    }

    .field-hint {
        margin-top: -0.75rem;
    }

    .urgent-help__inner {
        gap: 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

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

@media (max-width: 420px) {
    h1 {
        font-size: 2.35rem;
    }

    .nav-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .nav-toggle {
        justify-content: center;
        padding: 0;
    }

    .button-row .button,
    .button-row .text-link {
        width: 100%;
        justify-content: center;
    }

    .hero-facts {
        flex-direction: column;
    }

    .hero-note {
        right: 0;
        width: 92%;
    }

    .photo-placeholder--hero {
        min-height: 340px;
        padding: 1.25rem;
    }

    .responsive-photo--hero {
        min-height: 340px;
    }

    .person-card__photo,
    .photo-placeholder--portrait {
        min-height: 350px;
    }

    .process-list li {
        grid-template-columns: 48px 1fr;
        gap: 0.8rem;
    }

    .process-list li::before {
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .crisis-banner,
    .site-header,
    .site-footer,
    .button,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
