@font-face {
    font-family: "Atkinson Hyperlegible Next";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("/suizid-at-assets/atkinson-hyperlegible-next-v5-4.woff2/") format("woff2");
}

:root {
    --ink: #1d2d33;
    --muted: #52666d;
    --navy: #173b45;
    --navy-deep: #102d36;
    --teal: #2d6f70;
    --teal-dark: #23595a;
    --blue: #315f78;
    --red: #b4232d;
    --red-dark: #8e1720;
    --surface: #ffffff;
    --surface-soft: #f3f7f6;
    --surface-blue: #eef5f7;
    --line: #d5e1df;
    --line-dark: #b8ccca;
    --focus: #f5b942;
    --base-size: 18px;
    --base-line: 1.65;
    --section-space: 68px;
    --radius: 18px;
    --wrap: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
    font-size: var(--base-size);
}

html.text-large {
    --base-size: 20px;
}

html.text-xlarge {
    --base-size: 23px;
}

html.high-contrast {
    --ink: #000000;
    --muted: #1b1b1b;
    --navy: #002d36;
    --navy-deep: #001b22;
    --teal: #005a5c;
    --teal-dark: #004748;
    --blue: #003f5c;
    --red: #a01420;
    --red-dark: #760b15;
    --surface: #ffffff;
    --surface-soft: #f7f7f7;
    --surface-blue: #f0f0f0;
    --line: #666666;
    --line-dark: #333333;
    --focus: #ffbf00;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: "Atkinson Hyperlegible Next", "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: var(--base-line);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}

button,
a,
summary {
    font-family: inherit;
}

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

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--teal-dark);
    text-underline-offset: 0.18em;
    text-decoration-thickness: 0.08em;
}

a:hover {
    color: var(--navy);
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px #0b1f25;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.018em;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.1rem);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.55rem);
    margin-bottom: 14px;
}

p:last-child {
    margin-bottom: 0;
}

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

.narrow {
    max-width: 760px;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-180%);
    background: var(--surface);
    color: var(--ink);
    padding: 12px 16px;
    border: 2px solid var(--navy);
    border-radius: 10px;
    font-weight: 600;
}

.skip-link-second {
    left: 170px;
}

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

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(248, 251, 250, 0.98);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.2;
    min-width: 0;
}

.brand-name {
    font-size: 1.38rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-note {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.header-emergency {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 2px solid var(--red);
    border-radius: 10px;
    background: #ffffff;
    color: var(--red-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.header-emergency:hover {
    background: var(--red);
    color: #ffffff;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav > a,
.readability-toggle,
.mobile-menu > summary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
}

.desktop-nav > a:hover,
.readability-toggle:hover,
.mobile-menu > summary:hover {
    background: #e8f1ef;
}

.readability-toggle,
.mobile-menu > summary {
    border: 1px solid var(--line-dark);
    background: var(--surface);
}

.mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.readability-toggle {
    appearance: none;
}

.readability-tray {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.readability-tray[hidden] {
    display: none;
}

.readability-tray-inner {
    padding-block: 18px 20px;
}

.readability-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.panel-title {
    font-weight: 600;
    margin-bottom: 14px;
}

.readability-heading .panel-title {
    margin: 0;
}

.readability-close {
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 9px;
    background: var(--surface);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.readability-options {
    display: grid;
    grid-template-columns: minmax(300px, 1.6fr) repeat(2, minmax(150px, 0.75fr));
    gap: 10px;
    align-items: end;
}

.control-label {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.control-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.text-size-control .control-group {
    margin-bottom: 0;
}

.readability-options button {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.readability-options button[aria-pressed="true"] {
    background: var(--navy);
    border-color: var(--navy);
    color: #ffffff;
}

.control-status {
    min-height: 1.6em;
    margin: 7px 0 0;
    color: var(--teal-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.readability-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.readability-direct a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-menu {
    display: none;
    position: relative;
}

.mobile-menu-panel {
    position: absolute;
    z-index: 25;
    top: calc(100% + 8px);
    right: 0;
    width: min(330px, calc(100vw - 24px));
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(19, 52, 60, 0.14);
}

.mobile-menu nav a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 10px 12px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}

.mobile-readability-toggle {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    margin-top: 8px;
    padding: 10px 12px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: var(--surface);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.mobile-menu nav a:hover {
    background: var(--surface-soft);
}

.hero {
    background: var(--navy-deep);
    color: #ffffff;
}

.hero-inner {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-block: 54px 58px;
    max-width: 900px;
}

.hero h1 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 3.45rem);
    font-weight: 600;
}

.eyebrow,
.section-kicker,
.card-tag {
    margin-bottom: 12px;
    color: var(--teal-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    margin-bottom: 14px;
    color: #b8d8d6;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.2vw, 1.55rem);
    font-weight: 600;
    line-height: 1.35;
}

.hero-copy {
    max-width: 700px;
    margin-bottom: 14px;
    color: #dce9e9;
    font-size: 1rem;
}

.hero-danger {
    max-width: 700px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.hero-danger a {
    color: #ffffff;
    font-weight: 700;
}

.hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero-choice-grid {
    width: min(100%, 900px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-choice {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 15px 17px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 10px;
    background: #ffffff;
    color: var(--navy-deep);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.3;
}

.hero-choice span,
.hero-choice strong {
    display: block;
}

.hero-choice span {
    color: #52666d;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-choice strong {
    font-size: 1.08rem;
    font-weight: 700;
}

.hero-choice-urgent span {
    color: #fff4f4;
}

.hero-choice:hover {
    background: #eef5f7;
    color: var(--navy-deep);
}

.hero-choice-urgent {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
}

.hero-choice-urgent:hover {
    border-color: var(--red-dark);
    background: var(--red-dark);
    color: #ffffff;
}

.hero-phone-script {
    max-width: 680px;
    margin: 0;
    color: #dce9e9;
    font-size: 1rem;
    line-height: 1.55;
}

.hero-phone-script span {
    color: #ffffff;
    font-weight: 600;
}

.hero-guide-link {
    margin: 0;
    font-size: 0.98rem;
}

.hero-guide-link span {
    color: #dce9e9;
}

.hero-guide-link a {
    color: #ffffff;
    font-weight: 600;
    text-underline-offset: 0.22em;
}

.support-person-motto {
    margin: 12px 0 20px;
    color: var(--teal-dark);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.25;
}

.crisis-context {
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}

.crisis-context-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.crisis-context p {
    margin: 0;
    padding-block: 16px;
    color: var(--ink);
    font-size: 1rem;
}

.crisis-context a {
    color: var(--red-dark);
    font-weight: 700;
}

.context-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.context-tools a,
.context-tools button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--teal-dark);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.context-tools a:hover,
.context-tools button:hover {
    color: var(--navy);
}

.context-share-status {
    min-width: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.quick-paths {
    padding-block: 48px 52px;
    background: var(--surface);
}

.quick-paths-inner {
    display: grid;
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
    align-items: start;
}

.quick-paths-copy h2 {
    max-width: 470px;
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.quick-paths-copy > p:last-child {
    max-width: 510px;
    color: var(--muted);
}

.quick-path-links {
    border-top: 1px solid var(--line-dark);
}

.quick-path-links a {
    min-height: 74px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(180px, 1.1fr);
    gap: 20px;
    align-items: center;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
}

.quick-path-links a:hover {
    color: var(--teal-dark);
}

.quick-path-links span {
    font-weight: 700;
}

.quick-path-links small {
    color: var(--muted);
    font-size: 0.9rem;
}

.access-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 22px;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.access-row a,
.access-row button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: var(--teal-dark);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.access-row a:hover,
.access-row button:hover {
    color: var(--navy);
}

.transparency {
    background: var(--surface-soft);
    padding-block: 42px;
}

.transparency-card {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
    gap: 36px;
    align-items: center;
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.transparency-card h2 {
    font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.transparency-card .section-kicker,
.section-heading .section-kicker,
.safety-box .section-kicker {
    color: var(--teal-dark);
}

.aftercare .section-kicker {
    color: #b8d8d6;
}

.transparency-numbers {
    display: grid;
    gap: 8px;
    padding: 22px;
    background: var(--surface-blue);
    border-radius: 14px;
}

.transparency-numbers p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.transparency-numbers a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 9px;
    background: var(--surface);
    color: var(--red-dark);
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
}

.section {
    padding-block: var(--section-space);
}

.section-urgent {
    background: #fbfcfc;
}

.section-talk {
    background: var(--surface-soft);
}

.section-more {
    background: var(--surface);
}

.section-guide {
    padding-bottom: 60px;
    background: var(--surface-blue);
}

.section-guide + .section-talk {
    margin-top: 0;
    padding-top: 60px;
    border-top: 1px solid var(--line);
}

.guide-safety-note {
    max-width: 900px;
    margin: 0 0 28px;
    padding: 16px 18px;
    border-left: 5px solid var(--red);
    border-radius: 0 10px 10px 0;
    background: #fff7f7;
    color: var(--ink);
}

.guide-safety-note a {
    color: var(--red-dark);
    font-weight: 700;
}

.guide-access-link {
    max-width: 900px;
    margin: -14px 0 28px;
    font-size: 0.92rem;
}

.guide-access-link a {
    color: var(--blue);
    font-weight: 600;
}

.guide-flow {
    max-width: 940px;
}

.guide-step {
    margin-top: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
}

.guide-step[hidden],
.guide-result[hidden],
.guide-contact-library[hidden] {
    display: none;
}

.guide-step-count {
    margin-bottom: 4px;
    color: var(--teal-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.guide-step h3 {
    margin-bottom: 16px;
    font-size: 1.28rem;
}

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

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

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

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

.guide-choice-grid button,
.guide-result-actions button {
    min-height: 54px;
    padding: 11px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.guide-choice-grid button:hover,
.guide-result-actions button:hover {
    background: #e8f1ef;
}

.guide-choice-grid button[aria-pressed="true"] {
    border-color: var(--navy);
    background: var(--navy);
    color: #ffffff;
}

.guide-result {
    margin-top: 20px;
    padding: 26px;
    border: 2px solid #97bab7;
    border-radius: 16px;
    background: var(--surface);
}

.guide-result h3 {
    margin-bottom: 12px;
}

.guide-result > p:not(.section-kicker):not(.guide-result-note):not(.guide-result-emergency) {
    max-width: 790px;
    color: var(--muted);
}

.guide-result-emergency {
    max-width: 790px;
    margin: 18px 0;
    padding: 12px 14px;
    border-left: 4px solid var(--red);
    border-radius: 0 9px 9px 0;
    background: #fff7f7;
    color: var(--ink);
}

.guide-result-emergency a {
    color: var(--red-dark);
    font-weight: 700;
}

.guide-result-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.guide-contact-card {
    min-width: 0;
    min-height: 126px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    padding: 17px;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: #f7fbfa;
    color: var(--ink);
    text-decoration: none;
}

.guide-contact-card:hover {
    background: #edf5f4;
    color: var(--ink);
}

.guide-contact-card > span:first-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.guide-contact-card > span:first-child > strong {
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 1rem;
}

.guide-contact-card small {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.guide-contact-card > span:first-child > small:last-child {
    margin-top: auto;
    padding-top: 8px;
    color: var(--blue);
    font-weight: 600;
}

.guide-contact-action {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: var(--teal-dark);
    white-space: nowrap;
}

.guide-contact-action strong {
    font-size: 1.12rem;
    font-variant-numeric: tabular-nums;
}

.guide-contact-action small {
    color: var(--teal-dark);
    font-weight: 700;
}

.guide-result-note,
.guide-source-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.guide-result-note {
    max-width: 790px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.guide-result-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.guide-result-actions button {
    min-height: 48px;
    padding-inline: 16px;
}

.guide-result-actions a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.guide-source-note {
    max-width: 900px;
    margin: 18px 0 0;
}

.guide-noscript {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.guide-access {
    max-width: 940px;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.guide-access > summary {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
}

.guide-access > summary:hover {
    background: #f7fbfa;
}

.guide-access > summary::after,
.guide-faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    margin-left: auto;
    padding-left: 16px;
    color: var(--teal-dark);
    font-size: 1.25rem;
    line-height: 1;
}

.guide-access[open] > summary::after,
.guide-faq-list details[open] > summary::after {
    content: "−";
}

.guide-access-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 16px 16px;
}

.guide-access-grid > section {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f7fbfa;
}

.guide-access-grid h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.guide-access-grid p {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.guide-access-grid a {
    margin-top: auto;
    font-weight: 600;
}

.guide-access-grid button {
    min-height: 44px;
    margin-top: auto;
    padding: 8px 11px;
    border: 1px solid var(--line-dark);
    border-radius: 9px;
    background: var(--surface);
    color: var(--teal-dark);
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.guide-faq {
    max-width: 940px;
    margin-top: 52px;
}

.guide-faq > h3 {
    margin-bottom: 18px;
}

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

.guide-faq-list details {
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
}

.guide-faq-list summary {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
}

.guide-faq-list summary:hover {
    background: #f7fbfa;
}

.guide-faq-list p {
    max-width: 820px;
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
}

.guide-after-link {
    max-width: 940px;
    margin: 18px 0 0;
    color: var(--ink);
}

.guide-after-link a {
    font-weight: 600;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.04rem;
}

.card-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
    grid-auto-rows: auto;
}

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

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

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

.card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.emergency-card {
    border-top: 5px solid var(--red);
}

.card-body {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.service-card .card-body {
    display: grid;
    grid-template-rows: auto minmax(2.45em, auto) 1fr auto;
    align-content: stretch;
}

.emergency-card .card-body {
    display: grid;
    grid-template-rows: auto minmax(1.3em, auto) 1fr;
    align-content: stretch;
}

.card-body p:not(.card-tag):not(.meta) {
    color: var(--muted);
}

.card-tag {
    min-height: 1.45em;
    color: var(--teal-dark);
}

.service-card h3 {
    min-height: 2.45em;
}

.emergency-card h3 {
    min-height: 1.3em;
}

.meta {
    margin-top: 18px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card .meta {
    min-height: 3.4em;
    display: flex;
    align-items: flex-end;
}

.call-button {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding: 12px 14px 12px 16px;
    border: 1px solid #a9c2c0;
    border-radius: 12px;
    background: #edf5f4;
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 600;
}

.card .call-button {
    margin-top: 26px;
}

.call-button:hover {
    background: #dfeceb;
    color: var(--navy);
}

.call-button .number {
    min-width: 0;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
}

.call-button > span:last-child {
    flex: 0 0 auto;
    font-size: 0.9rem;
}

.service-card .call-button > span:last-child {
    order: -1;
    font-size: 0.92rem;
    font-weight: 700;
}

.service-card .call-button .number {
    font-size: 1.02rem;
    font-weight: 600;
}

.urgent-call {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.urgent-call:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #ffffff;
}

.secondary-call {
    background: var(--surface);
}

.safety-box {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 30px 48px;
    margin-top: 38px;
    padding: 32px;
    background: #eaf4f2;
    border: 1px solid #c8dcda;
    border-radius: var(--radius);
}

.safety-box ol {
    margin: 0;
    padding-left: 1.35em;
}

.safety-box li + li {
    margin-top: 12px;
}

.say-this {
    grid-column: 1 / -1;
    margin: 0;
    padding: 18px 20px;
    background: var(--surface);
    border-left: 4px solid var(--teal);
    border-radius: 10px;
}

.cant-call-box {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 18px 36px;
    align-items: center;
    margin-top: 28px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-blue);
}

.cant-call-box h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.cant-call-message {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
}

.cant-call-actions {
    display: grid;
    gap: 8px;
}

.cant-call-actions button,
.cant-call-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    background: var(--surface);
    color: var(--teal-dark);
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.cant-call-actions button:hover,
.cant-call-actions a:hover {
    background: #e8f1ef;
    color: var(--navy);
}

.cant-call-status {
    min-height: 1.4em;
    grid-column: 1 / -1;
    margin: -6px 0 0;
    color: var(--teal-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.language-and-access {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.info-panel {
    padding: 26px;
    background: var(--surface-blue);
    border: 1px solid #cbdcdf;
    border-radius: var(--radius);
}

.info-panel h3 {
    font-size: 1.28rem;
}

.info-panel .call-button {
    margin-top: 18px;
}

.text-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
}

.writing-box,
.regional-scope {
    margin-top: 32px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.writing-box {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 28px 44px;
    background: var(--surface);
}

.writing-box h3,
.regional-scope h3 {
    min-height: 0;
    font-size: 1.35rem;
}

.writing-actions {
    align-self: center;
}

.writing-actions .text-link {
    display: flex;
    margin-top: 4px;
}

.current-care-note {
    margin-top: 34px;
    padding: 26px 28px;
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    background: var(--surface);
}

.current-care-note h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.current-care-note p:last-child {
    max-width: 900px;
    color: var(--muted);
}

.help-barriers {
    max-width: 940px;
    margin-top: 52px;
}

.help-barriers-heading {
    max-width: 700px;
    margin-bottom: 18px;
}

.help-barriers-heading h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

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

.help-barriers-list details,
.support-special-cases details {
    border-bottom: 1px solid var(--line);
}

.help-barriers-list summary,
.support-special-cases summary {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 12px 2px;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
}

.help-barriers-list p,
.support-special-cases p {
    max-width: 820px;
    margin: 0;
    padding: 0 2px 16px;
    color: var(--muted);
}

.regional-scope {
    background: #eef5f7;
    border-color: #cbdcdf;
}

.regional-scope p {
    max-width: 900px;
    color: var(--muted);
}

.scope-directory-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--teal-dark);
    font-weight: 700;
}

.section-note,
.accordion-note {
    margin-top: 28px;
    padding: 18px 20px;
    background: #eaf4f2;
    border-radius: 12px;
    color: var(--ink);
}

.accordion-stack {
    display: grid;
    gap: 18px;
}

.help-accordion {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: clip;
}

.help-accordion > summary {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
}

.help-accordion > summary::-webkit-details-marker {
    display: none;
}

.help-accordion > summary:hover {
    background: var(--surface-soft);
}

.help-accordion > summary strong {
    display: block;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.35;
}

.help-accordion > summary small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.summary-mark {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
}

.summary-mark::before,
.summary-mark::after {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    height: 2px;
    background: var(--teal-dark);
    transform: translateY(-50%);
}

.summary-mark::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 160ms ease;
}

.help-accordion[open] .summary-mark::after {
    transform: translateY(-50%) rotate(0deg);
}

.accordion-content {
    padding: 8px 26px 30px;
}

.support-person-box {
    max-width: 900px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
}

.support-person-box h3 {
    margin-bottom: 10px;
}

.support-person-steps {
    margin: 20px 0;
    padding-left: 1.35em;
}

.support-person-steps li + li {
    margin-top: 10px;
}

.support-warning-signs {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--teal);
    border-radius: 0 10px 10px 0;
    background: var(--surface);
}

.support-warning-signs h4 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.35;
}

.support-warning-signs ul {
    margin: 0;
    padding-left: 1.3em;
}

.support-warning-signs li + li {
    margin-top: 6px;
}

.support-warning-signs p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.support-person-source {
    margin-top: 18px;
    font-size: 0.9rem;
    font-weight: 600;
}

.support-special-cases {
    margin-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.older-support-box {
    max-width: 900px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
}

.older-support-box h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.older-support-box > div:first-child p {
    max-width: 820px;
    color: var(--muted);
}

.older-support-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-top: 22px;
}

.older-support-actions .call-button {
    margin-top: 0;
}

.section-continuum {
    background: var(--surface-soft);
}

.continuum-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 62px);
    margin-top: 38px;
}

.continuum-timeline::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 23px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--line-dark);
}

.continuum-step {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.continuum-marker {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid var(--teal-dark);
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--teal-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.continuum-acute .continuum-marker {
    border-color: var(--navy);
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 0 0 5px var(--surface-soft);
}

.continuum-acute .continuum-stage {
    color: var(--navy);
}

.continuum-acute h3 {
    color: var(--navy-deep);
    font-size: 1.38rem;
}

.continuum-step-content {
    width: 100%;
    padding-top: 20px;
}

.continuum-timeline h3 {
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.continuum-step-content > p:not(.continuum-stage):not(.meta) {
    color: var(--muted);
}

.continuum-step-content > a {
    width: fit-content;
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
}

.continuum-stage {
    margin-bottom: 7px;
    color: var(--teal-dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.continuum-timeline .call-button {
    min-height: 58px;
    margin-top: 18px;
}

.continuum-timeline .call-button .number {
    font-size: 1.08rem;
}

.continuum-timeline .call-button > span:last-child {
    order: -1;
    font-size: 0.9rem;
    font-weight: 700;
}

.continuum-timeline .meta {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.continuum-action-block {
    margin-top: auto;
}

.continuum-emergency-strip {
    max-width: 980px;
    margin: 18px 0 0;
    padding: 14px 16px;
    border-left: 4px solid var(--red);
    border-radius: 0 9px 9px 0;
    background: var(--surface);
    color: var(--ink);
    font-size: 0.94rem;
}

.continuum-emergency-strip a {
    color: var(--red-dark);
    font-weight: 700;
}

.postvention-paths {
    max-width: 980px;
    margin-top: 54px;
    scroll-margin-top: 120px;
}

.postvention-paths > h3 {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}

.postvention-list {
    display: grid;
    gap: 10px;
}

.postvention-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    overflow: clip;
}

.postvention-card > summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
}

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

.postvention-card > summary:hover {
    background: #f7fbfa;
}

.postvention-card > summary strong,
.postvention-card > summary small {
    display: block;
}

.postvention-card > summary strong {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.4;
}

.postvention-card > summary small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.9rem;
}

.postvention-card[open] .summary-mark::after {
    transform: translateY(-50%) rotate(0deg);
}

.postvention-content {
    padding: 2px 18px 22px;
    color: var(--ink);
}

.postvention-content > p,
.postvention-content > ul {
    max-width: 850px;
}

.postvention-content > ul {
    margin: 18px 0;
    padding-left: 1.3em;
}

.postvention-content > ul li + li {
    margin-top: 7px;
}

.postvention-source {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.postvention-contact {
    max-width: 850px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-blue);
}

.postvention-contact > div > strong,
.postvention-contact > div > small,
.postvention-contact a span,
.postvention-contact a strong {
    display: block;
}

.postvention-contact > div > small {
    margin-top: 3px;
    color: var(--muted);
}

.postvention-contact a {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 9px;
    background: var(--surface);
    color: var(--teal-dark);
    text-align: right;
    text-decoration: none;
}

.postvention-contact a span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.postvention-contact a strong {
    font-variant-numeric: tabular-nums;
}

.trauma-note {
    max-width: 980px;
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-blue);
}

.trauma-note h3 {
    margin-bottom: 0;
    font-size: 1.16rem;
}

.trauma-note > p {
    margin-bottom: 0;
    color: var(--muted);
}

.trauma-note > a {
    grid-column: 2;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 600;
}

.wide-card {
    grid-column: 1 / -1;
}

.stacked-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: auto;
    padding-top: 26px;
}

.stacked-actions .call-button {
    margin-top: 0;
}

.authority-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 28px;
}

.authority-list {
    display: grid;
    gap: 10px;
}

.authority-list a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--ink);
    text-decoration: none;
}

.authority-list span {
    color: var(--muted);
    font-size: 0.9rem;
}

.authority-list strong {
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.closing-safety {
    padding-block: 70px;
    background: #eaf4f2;
    border-top: 1px solid #c8dcda;
    border-bottom: 1px solid #c8dcda;
}

.closing-safety-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
}

.closing-safety h2 {
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.closing-safety p:last-child {
    max-width: 720px;
    color: var(--muted);
}

.closing-safety-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.closing-share-status {
    flex-basis: 100%;
    min-height: 1.35em;
    color: var(--muted);
    font-size: 0.86rem;
    text-align: right;
}

.button-urgent {
    border: 1px solid var(--red);
    background: var(--red);
    color: #ffffff;
}

.button-urgent:hover {
    border-color: var(--red-dark);
    background: var(--red-dark);
    color: #ffffff;
}

.button-quiet {
    border: 1px solid var(--line-dark);
    background: var(--surface);
    color: var(--teal-dark);
    font: inherit;
    cursor: pointer;
}

.button-quiet:hover {
    background: #dfeceb;
    color: var(--navy);
}

.aftercare {
    background: var(--navy);
    color: #ffffff;
}

.aftercare-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 54px;
    align-items: center;
}

.aftercare h2 {
    color: #ffffff;
}

.aftercare p:not(.section-kicker) {
    color: #d8e7e7;
}

.aftercare .membership-note {
    margin-top: 14px;
    font-size: 0.92rem;
}

.responsibility-profile {
    margin-top: 22px;
    padding-left: 16px;
    border-left: 3px solid #82aaa7;
}

.aftercare .responsibility-profile p {
    margin: 0;
}

.aftercare .responsibility-name {
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 700;
}

.aftercare .responsibility-credentials,
.aftercare .responsibility-role {
    color: #d8e7e7;
    font-size: 0.96rem;
}

.aftercare .membership-disclaimer {
    max-width: 760px;
    margin-top: 4px;
    color: #b9cfce;
    font-size: 0.83rem;
    line-height: 1.5;
}

.aftercare .membership-note a,
.aftercare .membership-note a:hover,
.aftercare .membership-note a:visited {
    color: #ffffff;
}

.external-notice {
    color: var(--muted);
    font-size: 0.9rem;
}

.aftercare .external-notice {
    color: #c4d8d7;
}

.aftercare-actions {
    display: grid;
    gap: 12px;
}

.call-assist {
    width: min(calc(100% - 32px), 560px);
    max-height: min(720px, calc(100dvh - 32px));
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 24px 80px rgba(5, 24, 31, 0.32);
}

.call-assist::backdrop {
    background: rgba(6, 24, 31, 0.64);
}

.call-assist-card {
    position: relative;
    padding: 30px;
}

.call-assist-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.call-assist-service {
    max-width: calc(100% - 52px);
    margin: 0 0 4px;
    color: var(--teal-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.call-assist h2 {
    max-width: calc(100% - 52px);
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 5vw, 2rem);
}

.call-assist-intro {
    margin-bottom: 8px;
    color: var(--muted);
}

.call-assist-number {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.call-assist-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.call-assist-copy {
    border: 0;
    background: var(--navy);
    color: #ffffff;
    font: inherit;
    cursor: pointer;
}

.call-assist-copy:hover {
    background: var(--navy-deep);
    color: #ffffff;
}

.call-assist-device {
    border: 1px solid var(--line-dark);
    background: var(--surface);
    color: var(--navy);
    text-align: center;
}

.call-assist-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.call-assist-status {
    min-height: 1.5em;
    margin-top: 8px;
    color: var(--teal-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.button-secondary {
    background: #ffffff;
    color: var(--navy);
}

.button-secondary:hover {
    background: #eaf4f2;
    color: var(--navy);
}

.back-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.back-link:visited,
.back-link:hover,
.back-link:focus-visible,
.back-link:active {
    color: #ffffff;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.legal-note {
    background: var(--surface-soft);
}

.legal-card {
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

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

.source-list {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.source-list > summary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--teal-dark);
    font-weight: 600;
}

.source-list ul {
    columns: 2;
    column-gap: 36px;
    margin: 20px 0 0;
    padding-left: 1.2em;
}

.source-list li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.source-list a,
.footer-links a {
    overflow-wrap: anywhere;
}

.source-conflict {
    margin-top: 22px;
    padding: 16px 18px;
    background: #fff7e8;
    border-radius: 10px;
}

.site-footer {
    padding-block: 64px;
    background: #102d36;
    color: #dbe7e7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 52px;
}

.site-footer h2 {
    color: #ffffff;
    font-size: 1.16rem;
    letter-spacing: 0;
}

.footer-logo-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 128px;
    height: auto;
    display: block;
    padding: 7px;
    background: #ffffff;
    border-radius: 16px;
}

.footer-brand {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 1.28rem;
    font-weight: 600;
}

.site-footer .external-notice,
.footer-legal-note {
    color: #b8cccb;
}

.footer-legal-note {
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 9px;
}

.footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
}

.footer-compact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 42px;
}

.footer-compact .footer-about {
    max-width: 680px;
}

.footer-compact .footer-brand {
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.footer-compact .footer-about > p:not(.footer-brand) {
    margin-bottom: 7px;
    color: #c7d8d7;
    font-size: 0.9rem;
}

.footer-review {
    font-size: 0.9rem !important;
}

.footer-nav {
    max-width: 410px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.legal-page {
    background: var(--surface-soft);
}

.legal-header .header-inner {
    min-height: 76px;
}

.legal-back {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.legal-emergency {
    background: #eef4f3;
    border-bottom: 1px solid var(--line);
}

.legal-emergency-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block: 12px;
}

.legal-emergency p {
    margin: 0 8px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.legal-emergency a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 9px;
    background: var(--surface);
    color: var(--red-dark);
    font-weight: 600;
    text-decoration: none;
}

.legal-layout {
    max-width: 900px;
}

.legal-title-block {
    margin-bottom: 34px;
}

.legal-title-block > p:last-child {
    max-width: 720px;
    color: var(--muted);
}

.legal-specific,
.legal-source-content,
.legal-source-note {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.legal-specific {
    margin-bottom: 24px;
    background: #eef5f7;
}

.legal-source-content h2 {
    margin-top: 0;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
}

.legal-source-content h3 {
    margin-top: 32px;
    font-size: clamp(1.25rem, 2vw, 1.45rem);
}

.legal-source-content h4 {
    margin: 26px 0 10px;
    font-size: 1.08rem;
}

.legal-source-content p,
.legal-source-content li,
.legal-specific p {
    max-width: 74ch;
}

.legal-source-content ul,
.legal-source-content ol {
    padding-left: 1.35em;
}

.legal-source-content li + li {
    margin-top: 8px;
}

.legal-source-note {
    margin-top: 24px;
    background: #f8fbfa;
}

.legal-source-note p {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.legal-source-note a {
    font-weight: 600;
}

.legal-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-block: 32px;
}

.legal-footer-inner p {
    margin: 0;
}

html.high-contrast .site-header {
    background: #ffffff;
}

html.high-contrast .desktop-nav > a:hover,
html.high-contrast .readability-toggle:hover,
html.high-contrast .mobile-menu > summary:hover,
html.high-contrast .mobile-menu nav a:hover {
    background: #e4e4e4;
}

html.high-contrast .readability-options button[aria-pressed="true"] {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

html.high-contrast .hero,
html.high-contrast .site-footer {
    background: #001b22;
}

html.high-contrast .hero .eyebrow,
html.high-contrast .hero-copy,
html.high-contrast .hero-phone-script,
html.high-contrast .hero-phone-script span,
html.high-contrast .hero-guide-link span,
html.high-contrast .hero-guide-link a {
    color: #ffffff;
}

html.high-contrast .section-guide,
html.high-contrast .guide-safety-note,
html.high-contrast .guide-step,
html.high-contrast .guide-result,
html.high-contrast .guide-contact-card,
html.high-contrast .support-person-box,
html.high-contrast .support-warning-signs,
html.high-contrast .guide-faq-list details,
html.high-contrast .guide-access,
html.high-contrast .guide-access-grid > section,
html.high-contrast .section-continuum,
html.high-contrast .continuum-emergency-strip,
html.high-contrast .postvention-card,
html.high-contrast .postvention-contact,
html.high-contrast .trauma-note,
html.high-contrast .cant-call-box,
html.high-contrast .current-care-note,
html.high-contrast .older-support-box,
html.high-contrast .closing-safety {
    border-color: #333333;
    background: #ffffff;
}

html.high-contrast .continuum-marker {
    border-color: #000000;
    background: #ffffff;
    color: #000000;
}

html.high-contrast .continuum-acute .continuum-marker {
    background: #000000;
    color: #ffffff;
}

html.high-contrast .continuum-timeline::before {
    background: #000000;
}

html.high-contrast .guide-choice-grid button[aria-pressed="true"] {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

html.high-contrast .hero-choice:not(.hero-choice-urgent) {
    border-color: #000000;
    background: #ffffff;
    color: #000000;
}

html.high-contrast .hero-choice:not(.hero-choice-urgent):hover {
    background: #e4e4e4;
    color: #000000;
}

html.high-contrast .call-button:not(.urgent-call) {
    border-color: #333333;
    background: #ffffff;
    color: #000000;
}

html.high-contrast .call-button:not(.urgent-call):hover {
    background: #e4e4e4;
    color: #000000;
}

html.high-contrast .safety-box,
html.high-contrast .info-panel,
html.high-contrast .regional-scope,
html.high-contrast .section-note,
html.high-contrast .accordion-note,
html.high-contrast .guide-result-emergency,
html.high-contrast .source-conflict,
html.high-contrast .legal-specific,
html.high-contrast .legal-source-note,
html.high-contrast .transparency-numbers {
    border: 1px solid #333333;
    background: #ffffff;
}

html.high-contrast .quick-paths {
    background: #ffffff;
}

html.high-contrast .aftercare p:not(.section-kicker),
html.high-contrast .aftercare .external-notice,
html.high-contrast .aftercare .section-kicker,
html.high-contrast .site-footer .external-notice,
html.high-contrast .footer-legal-note {
    color: #ffffff;
}

html.high-contrast .aftercare .membership-disclaimer,
html.high-contrast .aftercare .responsibility-credentials,
html.high-contrast .aftercare .responsibility-role {
    color: #ffffff;
}

html.high-contrast .call-assist {
    border: 2px solid #000000;
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

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

    .mobile-menu {
        display: block;
    }

    .header-actions {
        gap: 8px;
    }

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

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

    .guide-access-grid {
        grid-template-columns: 1fr;
    }

    .text-size-control {
        grid-column: 1 / -1;
    }

    .emergency-grid,
    .three-grid {
        grid-template-columns: 1fr;
    }

    .transparency-card,
    .safety-box,
    .aftercare-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .transparency-numbers {
        max-width: 520px;
    }

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

    .trauma-note {
        grid-template-columns: 1fr;
    }

    .continuum-timeline {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 34px;
    }

    .continuum-timeline::before {
        top: 24px;
        bottom: 24px;
        left: 23px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .continuum-step {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    .continuum-step-content {
        padding-top: 1px;
    }

    .quick-paths-inner,
    .closing-safety-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .closing-safety-actions {
        justify-content: flex-start;
    }

    .closing-share-status {
        text-align: left;
    }

    .trauma-note > a {
        grid-column: 1;
    }

}

@media (max-width: 760px) {
    :root {
        --base-size: 18px;
        --section-space: 56px;
    }

    html.text-large {
        --base-size: 20px;
    }

    html.text-xlarge {
        --base-size: 23px;
    }

    .wrap {
        width: min(calc(100% - 30px), var(--wrap));
    }

    .header-inner {
        min-height: 76px;
        gap: 14px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-note {
        display: none;
        max-width: 180px;
        font-size: 0.75rem;
    }

    .hero-inner {
        min-height: auto;
        padding-block: 46px 50px;
    }

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

    .hero-danger {
        margin-bottom: 30px;
    }

    .hero-choice-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .crisis-context-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        padding-block: 12px;
    }

    .crisis-context p {
        padding-block: 4px 8px;
    }

    .context-tools {
        width: 100%;
        justify-content: flex-start;
    }

    .quick-paths {
        padding-block: 46px 50px;
    }

    .access-row {
        align-items: flex-start;
        gap: 2px 18px;
        margin-top: 26px;
        padding-top: 14px;
    }

    .quick-path-links a {
        grid-template-columns: 1fr;
        gap: 2px;
        padding-block: 14px;
    }

    .cant-call-box,
    .writing-box {
        grid-template-columns: 1fr;
    }

    .cant-call-status {
        grid-column: 1;
    }

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

    .closing-safety {
        padding-block: 54px;
    }

    .closing-safety-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .guide-choice-grid,
    .guide-choice-grid-three,
    .guide-choice-grid-topics,
    .guide-result-contacts,
    .guide-access-grid {
        grid-template-columns: 1fr;
    }

    .guide-step,
    .guide-result {
        padding: 20px;
    }

    .footer-compact {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .hero-choice {
        min-height: 72px;
    }

    .transparency {
        padding-block: 30px;
    }

    .footer-logo-lockup {
        flex-direction: column;
        gap: 12px;
    }

    .footer-logo {
        width: 112px;
    }

    .transparency-card,
    .card,
    .safety-box,
    .info-panel,
    .legal-card {
        padding: 22px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .talk-grid,
    .detail-grid,
    .language-and-access,
    .writing-box {
        grid-template-columns: 1fr;
    }

    .service-card .card-body,
    .emergency-card .card-body {
        display: flex;
        flex-direction: column;
    }

    .service-card h3,
    .emergency-card h3,
    .card-tag {
        min-height: 0;
    }

    .service-card .meta {
        min-height: 0;
        display: block;
    }

    .card-grid {
        gap: 18px;
    }

    .safety-box {
        gap: 20px;
    }

    .say-this {
        grid-column: auto;
    }

    .help-accordion > summary {
        min-height: 82px;
        padding: 18px 20px;
    }

    .accordion-content {
        padding: 6px 18px 22px;
    }

    .stacked-actions {
        grid-template-columns: 1fr;
    }

    .authority-list a {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .authority-list strong {
        text-align: left;
    }

    .postvention-contact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .postvention-contact a {
        align-items: flex-start;
        text-align: left;
    }

    .postvention-card > summary {
        min-height: 70px;
        padding: 14px 16px;
    }

    .postvention-content {
        padding: 2px 16px 20px;
    }

    .source-list ul {
        columns: 1;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-logo-lockup {
        align-items: flex-start;
    }

    .legal-emergency-inner,
    .legal-footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .legal-emergency-inner {
        gap: 8px;
    }

    .legal-emergency-inner p {
        margin: 0;
    }

    .legal-emergency a {
        width: 100%;
        min-height: 48px;
    }

    .legal-specific,
    .legal-source-content,
    .legal-source-note {
        padding: 22px;
    }
}

@media (max-width: 430px) {
    .header-inner {
        gap: 9px;
    }

    .header-emergency {
        min-width: 48px;
        padding-inline: 11px;
    }

    .readability-options {
        grid-template-columns: 1fr;
    }

    .text-size-control {
        grid-column: auto;
    }

    .guide-choice-grid-four {
        grid-template-columns: 1fr;
    }

    .guide-contact-card {
        flex-direction: column;
        gap: 12px;
    }

    .guide-contact-action {
        align-items: flex-start;
    }
}

@media (max-width: 390px) {
    .wrap {
        width: min(calc(100% - 24px), var(--wrap));
    }

    .brand-note {
        display: none;
    }

    .brand-name {
        font-size: 1.16rem;
    }

    .mobile-menu > summary {
        padding-inline: 11px;
    }

    .mobile-menu-panel {
        right: -2px;
        width: min(310px, calc(100vw - 16px));
    }

    .call-button {
        flex-wrap: wrap;
    }

    .call-button .number {
        overflow-wrap: normal;
        word-break: normal;
    }

    .transparency-card,
    .card,
    .safety-box,
    .info-panel,
    .legal-card {
        padding: 18px;
    }

    .call-button {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .call-assist-card {
        padding: 26px 20px 22px;
    }

    .call-assist-actions {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

@media print {
    .site-header,
    .hero-actions,
    .readability-tray,
    .mobile-menu,
    .call-assist,
    .aftercare,
    .site-footer {
        display: none !important;
    }

    body {
        color: #000000;
        background: #ffffff;
        font-size: 11pt;
    }

    .hero {
        background: #ffffff;
        color: #000000;
    }

    .hero h1,
    .hero-lead,
    .hero-copy,
    .hero-phone-script,
    .eyebrow {
        color: #000000;
    }

    .hero-inner {
        min-height: 0;
        padding-block: 24px;
    }

    .section,
    .transparency {
        padding-block: 24px;
    }

    .card,
    .transparency-card,
    .safety-box,
    .info-panel,
    .legal-card,
    .help-accordion {
        break-inside: avoid;
        border-color: #777777;
    }

    .help-accordion:not([open]) > .accordion-content {
        display: block;
    }
}

.header-emergency-label {
    margin-left: 0.24em;
}

/* 5.4.1: calmer crisis entry and progressive help guidance */
.hero-reassurance {
    width: min(100%, 900px);
    display: grid;
    gap: 4px;
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(184, 216, 214, 0.58);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #eaf3f2;
}

.hero-reassurance strong {
    color: #ffffff;
    font-size: 1.02rem;
}

.hero-reassurance span {
    max-width: 760px;
    color: #dce9e9;
    font-size: 0.94rem;
}

.hero-reassurance a {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    color: #ffffff;
    font-weight: 700;
}

.hero-reassurance + .hero-danger {
    margin-top: 15px;
    margin-bottom: 0;
    color: #eaf3f2;
    font-size: 0.93rem;
}

.quiet-path-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 16px;
}

.quiet-path-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--teal-dark);
    font-weight: 600;
}

.guide-primary-contact {
    max-width: 790px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid #aacbc7;
    border-radius: 14px;
    background: #eef7f5;
}

.guide-contact-label {
    margin: 0 0 3px;
    color: var(--teal-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.guide-orientation-note {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 0.9rem;
}

.guide-primary-contact .guide-result-contacts {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.guide-primary-contact .guide-contact-card {
    min-height: 116px;
    border-color: #8fb8b4;
    background: #ffffff;
}

.guide-primary-contact .guide-contact-action strong {
    font-size: 1.35rem;
}

.guide-context-questions {
    max-width: 790px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.guide-context-questions h4,
.guide-faq-secondary h4 {
    margin: 0 0 11px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
}

.guide-context-list {
    display: grid;
    gap: 8px;
}

.guide-context-list a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #ffffff;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.guide-context-list a::after {
    content: "›";
    margin-left: auto;
    padding-left: 14px;
    color: var(--teal-dark);
    font-size: 1.2rem;
}

.guide-context-list a:hover {
    border-color: var(--line-dark);
    background: #f7fbfa;
}

.guide-more-contacts {
    max-width: 790px;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #ffffff;
}

.guide-more-contacts > summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 11px 14px;
    color: var(--teal-dark);
    font-weight: 700;
    cursor: pointer;
}

.guide-more-contacts > summary::after {
    content: "+";
    margin-left: auto;
    padding-left: 14px;
    font-size: 1.2rem;
}

.guide-more-contacts[open] > summary::after {
    content: "−";
}

.guide-more-inner {
    padding: 0 14px 15px;
}

.guide-result-more-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.guide-result-more-contacts:empty {
    display: none;
}

.guide-more-inner .guide-result-note {
    margin-top: 14px;
}

.guide-more-inner .scope-directory-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 700;
}

.first-understand {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fbfa;
}

.first-understand > p:not(.section-kicker) {
    max-width: 790px;
    color: var(--muted);
}

.guide-faq-secondary {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.knowledge-paths {
    max-width: 940px;
    margin-top: 26px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-blue);
}

.knowledge-paths h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.knowledge-paths > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.knowledge-paths a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

html.high-contrast .hero-reassurance,
html.high-contrast .guide-primary-contact,
html.high-contrast .first-understand,
html.high-contrast .knowledge-paths,
html.high-contrast .guide-context-list a,
html.high-contrast .guide-more-contacts {
    border-color: #333333;
}

html.high-contrast .guide-primary-contact,
html.high-contrast .first-understand,
html.high-contrast .knowledge-paths,
html.high-contrast .guide-context-list a,
html.high-contrast .guide-more-contacts {
    background: #ffffff;
}

@media (max-width: 760px) {
    .hero-reassurance {
        margin-top: 14px;
        padding: 13px 14px;
    }

    .quiet-path-links,
    .knowledge-paths > div {
        flex-direction: column;
        gap: 2px;
    }

    .guide-primary-contact,
    .first-understand,
    .knowledge-paths {
        padding: 18px;
    }

    .guide-result-more-contacts {
        grid-template-columns: 1fr;
    }

    .guide-contact-card {
        min-height: 116px;
    }

    .guide-result-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
    }

    .guide-result-actions a,
    .guide-result-actions button {
        width: 100%;
        justify-content: flex-start;
    }
}
