:root {
    --site-green: var(--kyd-brand-dark, #174d40);
    --site-green-mid: var(--kyd-brand, #246f59);
    --site-green-soft: var(--kyd-brand-soft, #e7f3ee);
    --site-gold: #c59434;
    --site-gold-dark: #8d651d;
    --site-red: #bd3f32;
    --site-ink: var(--kyd-text-strong, #152321);
    --site-text: var(--kyd-text, #1f2a2c);
    --site-muted: var(--kyd-muted, #687477);
    --site-line: var(--kyd-line, #dfe7e2);
    --site-bg: #f4f7f6;
    --site-white: #ffffff;
    --site-width: 1180px;
    --site-header-height: 76px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

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

body {
    margin: 0;
    color: var(--site-text);
    background: var(--site-white);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

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

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

img {
    max-width: 100%;
}

figure,
dl,
dd,
p,
h1,
h2,
h3,
ol,
ul {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 200;
    padding: 10px 14px;
    color: var(--site-white);
    background: var(--site-green);
    border-radius: 6px;
    transform: translateY(-160%);
}

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--site-header-height);
    color: var(--site-white);
    background: rgba(15, 49, 41, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
    color: var(--site-ink);
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--site-line);
    box-shadow: 0 8px 24px rgba(15, 49, 41, 0.08);
}

.site-header-inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(calc(100% - 48px), 1280px);
    height: 100%;
    margin-inline: auto;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    width: 136px;
}

.site-brand img {
    display: block;
    width: 104px;
    height: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    min-width: 0;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: inherit;
    font-size: 14px;
    white-space: nowrap;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--site-gold);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    height: 42px;
    padding: 0 18px;
    color: var(--site-green);
    font-size: 14px;
    font-weight: 700;
    background: var(--site-white);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
}

.site-header.is-scrolled .header-contact,
.site-header.is-solid .header-contact {
    color: var(--site-white);
    background: var(--site-green);
    border-color: var(--site-green);
}

.header-contact:hover,
.header-contact:focus-visible {
    color: var(--site-white);
    background: var(--site-gold-dark);
    border-color: var(--site-gold-dark);
}

.site-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 6px;
    cursor: pointer;
}

.site-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
}

.hero {
    position: relative;
    display: flex;
    min-height: min(790px, calc(100svh - 76px));
    overflow: hidden;
    color: var(--site-white);
    background: #102f28;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 46%;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 30, 24, 0.94) 0%, rgba(5, 30, 24, 0.84) 38%, rgba(5, 30, 24, 0.38) 66%, rgba(5, 30, 24, 0.2) 100%),
        linear-gradient(0deg, rgba(4, 24, 19, 0.74) 0%, rgba(4, 24, 19, 0.08) 42%, rgba(4, 24, 19, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    align-items: center;
    gap: clamp(44px, 6vw, 96px);
    padding-top: 118px;
    padding-bottom: 62px;
}

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

.hero-kicker {
    margin-bottom: 18px;
    color: #f3d89d;
    font-size: 16px;
    font-weight: 700;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-family: "Songti SC", SimSun, serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 700;
}

.hero-lead {
    max-width: 760px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
    color: var(--site-white);
    background: var(--site-green-mid);
    border-color: var(--site-green-mid);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--site-green);
    border-color: var(--site-green);
}

.button-quiet {
    color: var(--site-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.62);
}

.button-quiet:hover,
.button-quiet:focus-visible {
    color: var(--site-green);
    background: var(--site-white);
}

.button-gold {
    color: #2a2418;
    background: #efd18f;
    border-color: #efd18f;
}

.button-gold:hover,
.button-gold:focus-visible {
    color: var(--site-white);
    background: var(--site-gold-dark);
    border-color: var(--site-gold-dark);
}

.button-outline {
    color: var(--site-green);
    background: var(--site-white);
    border-color: var(--site-green);
}

.button-outline:hover,
.button-outline:focus-visible {
    color: var(--site-white);
    background: var(--site-green);
}

.hero-credentials {
    align-self: end;
    width: min(430px, 100%);
    margin-left: auto;
    padding: 22px;
    background: rgba(7, 34, 27, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.hero-credentials-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-credentials-heading span {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0;
}

.hero-credentials-heading h2 {
    color: var(--site-white);
    font-size: 22px;
    line-height: 1.25;
}

.hero-credentials-heading .hero-credentials-mark {
    margin: 0;
    padding: 6px 9px;
    color: #f4d89f;
    font-size: 11px;
    font-weight: 700;
    background: rgba(239, 209, 143, 0.12);
    border: 1px solid rgba(239, 209, 143, 0.36);
    border-radius: 4px;
}

.hero-credential-list {
    display: grid;
    gap: 8px;
}

.hero-credential {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.hero-credential img {
    display: block;
    width: 92px;
    height: 60px;
    object-fit: contain;
    background: #f4f0e4;
    border-radius: 3px;
}

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

.hero-credential strong {
    margin-bottom: 4px;
    color: var(--site-white);
    font-size: 14px;
    line-height: 1.4;
}

.hero-credential span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

.hero-credential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.hero-credential-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    color: #f3d89d;
    font-size: 12px;
    font-weight: 700;
    background: rgba(239, 209, 143, 0.08);
    border-left: 2px solid rgba(239, 209, 143, 0.72);
}

.trust-strip {
    position: relative;
    z-index: 2;
    color: var(--site-white);
    background: var(--site-green);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    min-height: 106px;
    padding: 24px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 3px;
    color: #f1d695;
    font-size: 18px;
}

.trust-grid span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.knowledge-band,
.care-band,
.pathway-band,
.clinical-band,
.strength-band,
.followup-band,
.support-band,
.faq-band {
    padding: 94px 0;
}

.knowledge-band,
.pathway-band,
.strength-band,
.support-band {
    background: var(--site-white);
}

.care-band,
.followup-band,
.faq-band {
    background: var(--site-bg);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    align-items: end;
    gap: 70px;
    max-width: none;
}

.section-heading h2,
.clinical-copy h2,
.followup-copy h2,
.faq-heading h2,
.contact-cta h2,
.contact-hero h1,
.contact-guidance h2,
.contact-form-panel h2,
.contact-success h2 {
    margin-bottom: 18px;
    color: var(--site-ink);
    font-family: "Songti SC", SimSun, serif;
    font-size: 38px;
    line-height: 1.28;
}

.section-heading p,
.clinical-copy > p,
.followup-copy > p,
.faq-heading p {
    margin-bottom: 0;
    color: var(--site-muted);
}

.section-heading-row > p {
    padding-bottom: 4px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--site-green-mid);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.eyebrow-light {
    color: #f1d695;
}

.knowledge-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: 40px;
    align-items: stretch;
}

.knowledge-intro {
    padding: 40px;
    background: #f3f8f5;
    border-left: 4px solid var(--site-green-mid);
}

.knowledge-callout {
    margin-bottom: 30px;
    color: var(--site-ink);
    font-size: 20px;
    line-height: 1.8;
    font-weight: 700;
}

.knowledge-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 0;
    background: var(--site-line);
    border: 1px solid var(--site-line);
}

.knowledge-types div {
    padding: 22px;
    background: var(--site-white);
}

.knowledge-types dt {
    margin-bottom: 8px;
    color: var(--site-green);
    font-weight: 800;
}

.knowledge-types dd {
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
}

.risk-panel {
    padding: 36px;
    color: var(--site-white);
    background: #233b3a;
    border-radius: 8px;
}

.risk-panel h3 {
    margin-bottom: 24px;
    font-size: 22px;
}

.risk-panel ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.risk-panel li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.risk-panel li span {
    color: #e8c981;
    font-size: 12px;
    font-weight: 800;
}

.risk-panel > p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.care-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 56px;
    border: 1px solid var(--site-line);
}

.care-pillars article {
    min-height: 260px;
    padding: 30px 24px;
    background: var(--site-white);
    border-right: 1px solid var(--site-line);
}

.care-pillars article:last-child {
    border-right: 0;
}

.pillar-index {
    display: block;
    margin-bottom: 34px;
    color: var(--site-gold-dark);
    font-size: 13px;
    font-weight: 800;
}

.care-pillars h3 {
    margin-bottom: 12px;
    color: var(--site-ink);
    font-size: 18px;
}

.care-pillars p {
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 14px;
}

.tcm-framework {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: center;
    padding: 54px;
    color: var(--site-white);
    background: var(--site-green);
}

.tcm-copy h3 {
    margin-bottom: 20px;
    color: #f1d695;
    font-family: "Songti SC", SimSun, serif;
    font-size: 36px;
}

.tcm-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.tcm-copy p:last-child {
    margin-bottom: 0;
}

.tcm-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 0;
    padding: 1px;
    background: rgba(255, 255, 255, 0.16);
    list-style: none;
}

.tcm-methods li {
    min-height: 118px;
    padding: 22px;
    background: #215b4b;
}

.tcm-methods strong,
.tcm-methods span {
    display: block;
}

.tcm-methods strong {
    margin-bottom: 5px;
    color: #f1d695;
}

.tcm-methods span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.evidence-band {
    padding: 96px 0;
    color: var(--site-white);
    background: #1e3332;
}

.evidence-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 64px;
    align-items: start;
}

.evidence-copy h2 {
    margin-bottom: 20px;
    color: var(--site-white);
    font-family: "Songti SC", SimSun, serif;
    font-size: 38px;
    line-height: 1.28;
}

.evidence-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.text-link-light {
    display: inline-flex;
    margin-top: 14px;
    color: #f1d695;
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

.evidence-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.evidence-metrics article {
    min-height: 184px;
    padding: 30px;
    background: #263f3d;
}

.evidence-metrics strong,
.evidence-metrics span {
    display: block;
}

.evidence-metrics strong {
    margin-bottom: 12px;
    color: #f3d89d;
    font-size: 46px;
    line-height: 1;
}

.evidence-metrics small {
    margin-left: 3px;
    font-size: 16px;
}

.evidence-metrics span {
    max-width: 230px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.evidence-note {
    grid-column: 1 / -1;
    margin: -30px 0 0;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.care-pathway {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--site-line);
    border-bottom: 1px solid var(--site-line);
    list-style: none;
}

.care-pathway li {
    position: relative;
    min-height: 218px;
    padding: 30px 24px;
    border-right: 1px solid var(--site-line);
}

.care-pathway li:last-child {
    border-right: 0;
}

.care-pathway li::after {
    position: absolute;
    top: 42px;
    right: -6px;
    z-index: 1;
    width: 11px;
    height: 11px;
    background: var(--site-gold);
    border: 3px solid var(--site-white);
    border-radius: 50%;
    content: "";
}

.care-pathway li:last-child::after {
    display: none;
}

.care-pathway span,
.care-pathway strong {
    display: block;
}

.care-pathway span {
    margin-bottom: 30px;
    color: var(--site-gold-dark);
    font-size: 13px;
    font-weight: 800;
}

.care-pathway strong {
    margin-bottom: 8px;
    color: var(--site-ink);
}

.care-pathway p {
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 13px;
}

.clinical-band {
    background: #e9f1ed;
}

.clinical-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 70px;
    align-items: center;
}

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

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

.check-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    color: var(--site-text);
    border-bottom: 1px solid rgba(36, 111, 89, 0.18);
}

.check-list li::before {
    position: absolute;
    top: 17px;
    left: 0;
    width: 12px;
    height: 8px;
    border-bottom: 2px solid var(--site-green-mid);
    border-left: 2px solid var(--site-green-mid);
    content: "";
    transform: rotate(-45deg);
}

.clinical-gallery {
    display: grid;
    grid-template-columns: minmax(210px, 0.8fr) minmax(300px, 1.2fr);
    gap: 18px;
    align-items: end;
}

.photo-frame,
.hospital-equipment-frame,
.screenshot-frame,
.support-item,
.production-grid figure {
    margin: 0;
}

.photo-frame {
    overflow: hidden;
    background: var(--site-white);
    border: 1px solid rgba(36, 111, 89, 0.2);
}

.photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.photo-frame-tall img {
    aspect-ratio: 3 / 4;
}

.photo-frame-wide img {
    aspect-ratio: 4 / 3;
}

.photo-frame figcaption,
.hospital-equipment-frame figcaption,
.screenshot-frame figcaption,
.production-grid figcaption {
    padding: 12px 14px;
    color: var(--site-muted);
    font-size: 12px;
    background: var(--site-white);
}

.strength-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 54px;
}

.hospital-equipment-frame {
    overflow: hidden;
    background: #f8faf9;
    border: 1px solid var(--site-line);
}

.hospital-equipment-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.strength-points {
    border-top: 1px solid var(--site-line);
}

.strength-points article {
    padding: 22px 0;
    border-bottom: 1px solid var(--site-line);
}

.strength-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--site-green);
}

.strength-points p {
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 14px;
}

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

.leadership-grid article {
    display: grid;
    grid-template-columns: 136px 1fr;
    min-height: 232px;
    overflow: hidden;
    background: var(--site-bg);
    border: 1px solid var(--site-line);
    border-radius: 8px;
}

.leadership-grid img {
    width: 136px;
    height: 100%;
    min-height: 232px;
    object-fit: cover;
    object-position: center top;
}

.leadership-grid article > div {
    padding: 28px;
}

.leader-role {
    margin-bottom: 4px;
    color: var(--site-gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.leadership-grid h3 {
    margin-bottom: 10px;
    color: var(--site-ink);
    font-size: 21px;
}

.leadership-grid article p:last-child {
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 13px;
}

.followup-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 64px;
    align-items: center;
}

.screenshot-frame {
    overflow: hidden;
    background: var(--site-white);
    border: 1px solid var(--site-line);
    box-shadow: 0 18px 42px rgba(21, 76, 61, 0.12);
}

.screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #eef2f1;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.support-item {
    overflow: hidden;
    background: var(--site-bg);
    border: 1px solid var(--site-line);
    border-radius: 8px;
}

.support-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    padding: 26px;
    background: var(--site-white);
}

.support-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-item figcaption {
    display: block;
    padding: 20px;
}

.support-item figcaption strong,
.support-item figcaption span {
    display: block;
}

.support-item figcaption strong {
    margin-bottom: 5px;
    color: var(--site-ink);
}

.support-item figcaption span {
    color: var(--site-muted);
    font-size: 13px;
}

.production-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 20px;
}

.production-grid figure {
    overflow: hidden;
    background: var(--site-bg);
    border: 1px solid var(--site-line);
}

.production-grid img {
    display: block;
    width: 100%;
    height: 360px;
    padding: 12px;
    object-fit: contain;
    background: var(--site-white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 76px;
    align-items: start;
}

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

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

.faq-list summary {
    position: relative;
    padding: 22px 46px 22px 0;
    color: var(--site-ink);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 22px;
    right: 12px;
    color: var(--site-green);
    font-size: 22px;
    content: "+";
}

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

.faq-list details p {
    max-width: 760px;
    padding: 0 42px 24px 0;
    color: var(--site-muted);
}

.contact-cta {
    padding: 72px 0;
    color: var(--site-white);
    background: var(--site-green);
}

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

.contact-cta h2 {
    margin-bottom: 12px;
    color: var(--site-white);
}

.contact-cta p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 46px 0 30px;
    color: rgba(255, 255, 255, 0.72);
    background: #132c28;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 92px;
    height: 64px;
    object-fit: contain;
    background: var(--site-white);
    border-radius: 6px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--site-white);
    font-size: 18px;
}

.footer-brand span {
    font-size: 12px;
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
    font-size: 13px;
}

.footer-main a:hover {
    color: #f1d695;
}

.footer-legal {
    padding-top: 24px;
}

.footer-legal p {
    max-width: 980px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.footer-legal .references {
    color: rgba(255, 255, 255, 0.62);
}

.mobile-contact-bar {
    display: none;
}

.contact-page {
    background: var(--site-bg);
}

.contact-header-nav {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: 14px;
}

.contact-header-nav a {
    color: var(--site-green);
    font-weight: 700;
}

.contact-header-nav span {
    color: var(--site-muted);
}

.contact-main {
    padding-top: var(--site-header-height);
}

.contact-hero {
    padding: 68px 0 54px;
    color: var(--site-white);
    background: var(--site-green);
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    gap: 70px;
    align-items: end;
}

.contact-hero h1 {
    margin-bottom: 14px;
    color: var(--site-white);
    font-size: 46px;
}

.contact-hero p:not(.eyebrow) {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-steps li {
    position: relative;
}

.contact-steps li::after {
    position: absolute;
    top: 16px;
    right: 12px;
    left: 42px;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
    content: "";
}

.contact-steps li:last-child::after {
    display: none;
}

.contact-steps span,
.contact-steps strong {
    display: block;
}

.contact-steps span {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: var(--site-green);
    line-height: 32px;
    text-align: center;
    background: #f1d695;
    border-radius: 50%;
}

.contact-steps strong {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.contact-workspace {
    padding: 64px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.contact-guidance {
    position: sticky;
    top: 110px;
}

.contact-guidance h2 {
    font-size: 30px;
}

.guidance-list {
    margin: 28px 0;
    border-top: 1px solid var(--site-line);
}

.guidance-list article {
    padding: 20px 0;
    border-bottom: 1px solid var(--site-line);
}

.guidance-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--site-ink);
}

.guidance-list p,
.privacy-note {
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 13px;
}

.privacy-note {
    padding: 16px;
    background: var(--site-green-soft);
    border-left: 3px solid var(--site-green-mid);
}

.contact-form-panel {
    min-height: 680px;
    padding: 42px;
    background: var(--site-white);
    border: 1px solid var(--site-line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(21, 76, 61, 0.08);
}

.form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.form-heading h2 {
    margin-bottom: 0;
    font-size: 30px;
}

.form-heading > span {
    padding-top: 10px;
    color: var(--site-muted);
    font-size: 12px;
    white-space: nowrap;
}

.form-step {
    margin-bottom: 4px;
    color: var(--site-green-mid);
    font-size: 12px;
    font-weight: 800;
}

.form-heading i,
.form-field label i,
.consent-field i {
    color: var(--site-red);
    font-style: normal;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    color: var(--site-text);
    background: var(--site-white);
    border: 1px solid #cbd8d2;
    border-radius: 6px;
    outline: none;
}

.form-field input,
.form-field select {
    height: 46px;
    padding: 0 13px;
}

.form-field textarea {
    min-height: 150px;
    padding: 12px 13px;
    line-height: 1.7;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--site-green-mid);
    box-shadow: 0 0 0 3px rgba(36, 111, 89, 0.12);
}

.form-field [aria-invalid="true"] {
    border-color: var(--site-red);
    background: #fffafa;
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 6px;
    color: var(--site-muted);
    font-size: 11px;
}

.field-error {
    display: block;
    min-height: 20px;
    padding-top: 3px;
    color: var(--site-red);
    font-size: 12px;
    line-height: 1.5;
}

.form-error-summary {
    margin-bottom: 22px;
    padding: 14px 16px;
    color: #8e271f;
    background: #fff3f1;
    border: 1px solid #efc7c2;
    border-radius: 6px;
}

.consent-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--site-muted);
    font-size: 13px;
    cursor: pointer;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: var(--site-green-mid);
}

.consent-error {
    margin-left: 30px;
}

.honeypot-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 54px;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--site-line);
}

.form-status {
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 13px;
}

.form-status.is-error {
    color: var(--site-red);
}

.submit-button {
    min-width: 168px;
}

.submit-button[disabled] {
    cursor: wait;
    opacity: 0.66;
    transform: none;
}

.contact-success {
    display: flex;
    min-height: 590px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 8%;
}

.contact-success:focus {
    outline: none;
}

.success-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
    color: var(--site-white);
    font-size: 30px;
    background: var(--site-success, #168a67);
    border-radius: 50%;
}

.contact-success h2 {
    margin-bottom: 12px;
}

.contact-success > p:not(.eyebrow) {
    color: var(--site-muted);
}

.contact-success dl {
    width: min(100%, 520px);
    margin: 24px 0 32px;
    border-top: 1px solid var(--site-line);
}

.contact-success dl div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--site-line);
}

.contact-success dt {
    color: var(--site-muted);
}

.contact-success dd {
    color: var(--site-ink);
    font-weight: 700;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-footer {
    margin-top: 0;
}

@media (max-width: 1080px) {
    .site-header-inner {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .site-nav {
        gap: 18px;
    }

    .care-pillars {
        grid-template-columns: repeat(3, 1fr);
    }

    .care-pillars article {
        border-bottom: 1px solid var(--site-line);
    }

    .care-pillars article:nth-child(3) {
        border-right: 0;
    }

    .clinical-layout,
    .followup-layout {
        grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
        gap: 40px;
    }

    .care-pathway {
        grid-template-columns: repeat(3, 1fr);
    }

    .care-pathway li:nth-child(3) {
        border-right: 0;
    }

    .care-pathway li:nth-child(-n + 3) {
        border-bottom: 1px solid var(--site-line);
    }

    .care-pathway li:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --site-header-height: 68px;
    }

    .content-width,
    .site-header-inner {
        width: min(calc(100% - 32px), var(--site-width));
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-brand {
        width: 116px;
    }

    .site-brand img {
        width: 90px;
    }

    .site-menu-button {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: var(--site-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 20px 22px 100px;
        color: var(--site-ink);
        background: var(--site-white);
        overflow-y: auto;
    }

    .contact-header-nav {
        grid-column: auto;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        min-height: 56px;
        font-size: 16px;
        border-bottom: 1px solid var(--site-line);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 100px);
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
        gap: 34px;
        padding-top: 112px;
    }

    .hero h1 {
        font-size: 52px;
    }

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

    .trust-grid div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .section-heading-row,
    .knowledge-layout,
    .clinical-layout,
    .strength-showcase,
    .followup-layout,
    .faq-layout,
    .contact-cta-inner,
    .evidence-layout,
    .contact-hero-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .section-heading-row {
        align-items: start;
    }

    .section-heading-row > p {
        max-width: 720px;
    }

    .knowledge-types {
        grid-template-columns: 1fr;
    }

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

    .care-pillars article:nth-child(3) {
        border-right: 1px solid var(--site-line);
    }

    .care-pillars article:nth-child(even) {
        border-right: 0;
    }

    .tcm-framework {
        grid-template-columns: 1fr;
        padding: 42px;
    }

    .evidence-note {
        margin-top: 0;
    }

    .clinical-gallery {
        max-width: 720px;
    }

    .faq-heading {
        max-width: 620px;
    }

    .contact-cta-inner {
        justify-items: start;
    }

    .contact-guidance {
        position: static;
    }

    .contact-hero-inner {
        align-items: start;
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 64px;
        font-size: 15px;
    }

    .content-width,
    .site-header-inner {
        width: min(calc(100% - 28px), var(--site-width));
    }

    .header-contact {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-media {
        object-position: 64% center;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(5, 30, 24, 0.38) 0%, rgba(5, 30, 24, 0.8) 38%, rgba(5, 30, 24, 0.96) 100%),
            rgba(5, 30, 24, 0.28);
    }

    .hero-content {
        display: block;
        padding-top: 102px;
        padding-bottom: 34px;
    }

    .hero-kicker {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 28px;
    }

    .hero-actions .button {
        flex: 1 1 0;
        min-width: 140px;
        padding-inline: 14px;
    }

    .hero-credentials {
        width: 100%;
        margin: 0;
        padding: 16px;
        background: rgba(5, 30, 24, 0.82);
    }

    .hero-credentials-heading {
        margin-bottom: 12px;
    }

    .hero-credentials-heading h2 {
        font-size: 19px;
    }

    .hero-credential-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .hero-credential {
        display: block;
        min-height: 0;
        padding: 6px;
    }

    .hero-credential img {
        width: 100%;
        height: 54px;
        margin-bottom: 7px;
    }

    .hero-credential strong {
        font-size: 11px;
    }

    .hero-credential span {
        font-size: 10px;
    }

    .hero-credential-tags {
        margin-top: 10px;
    }

    .hero-credential-tags span {
        flex: 1 1 0;
        justify-content: center;
        min-width: 120px;
        padding-inline: 6px;
        font-size: 11px;
    }

    .trust-grid div {
        min-height: 96px;
        padding: 18px 14px;
    }

    .trust-grid strong {
        font-size: 16px;
    }

    .knowledge-band,
    .care-band,
    .pathway-band,
    .clinical-band,
    .strength-band,
    .followup-band,
    .support-band,
    .faq-band,
    .evidence-band {
        padding: 64px 0;
    }

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

    .section-heading h2,
    .clinical-copy h2,
    .followup-copy h2,
    .faq-heading h2,
    .contact-cta h2,
    .contact-guidance h2,
    .contact-form-panel h2,
    .contact-success h2 {
        font-size: 30px;
    }

    .knowledge-intro,
    .risk-panel {
        padding: 26px 22px;
    }

    .knowledge-callout {
        font-size: 17px;
    }

    .care-pillars {
        grid-template-columns: 1fr;
    }

    .care-pillars article,
    .care-pillars article:nth-child(3) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--site-line);
    }

    .pillar-index {
        margin-bottom: 18px;
    }

    .tcm-framework {
        gap: 34px;
        padding: 30px 22px;
    }

    .tcm-copy h3 {
        font-size: 30px;
    }

    .tcm-methods {
        grid-template-columns: 1fr;
    }

    .tcm-methods li {
        min-height: auto;
    }

    .evidence-copy h2 {
        font-size: 30px;
    }

    .evidence-metrics {
        grid-template-columns: 1fr;
    }

    .evidence-metrics article {
        min-height: 142px;
    }

    .evidence-metrics strong {
        font-size: 40px;
    }

    .care-pathway {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .care-pathway li,
    .care-pathway li:nth-child(3) {
        display: grid;
        grid-template-columns: 44px 1fr;
        min-height: auto;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--site-line);
    }

    .care-pathway span {
        grid-row: 1 / 3;
        margin-bottom: 0;
    }

    .care-pathway strong {
        margin-bottom: 3px;
    }

    .care-pathway li::after {
        display: none;
    }

    .clinical-gallery {
        grid-template-columns: 0.88fr 1.12fr;
        gap: 10px;
    }

    .photo-frame figcaption {
        min-height: 60px;
        padding: 10px;
        line-height: 1.45;
    }

    .leadership-grid,
    .support-grid,
    .production-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid article {
        grid-template-columns: 104px 1fr;
    }

    .leadership-grid img {
        width: 104px;
    }

    .leadership-grid article > div {
        padding: 20px 18px;
    }

    .support-image {
        height: 240px;
    }

    .production-grid img {
        height: 300px;
    }

    .contact-cta {
        padding: 56px 0;
    }

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

    .footer-main nav {
        justify-content: flex-start;
        gap: 14px 20px;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        height: 64px;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
        background: var(--site-white);
        border-top: 1px solid var(--site-line);
        box-shadow: 0 -8px 24px rgba(21, 76, 61, 0.1);
    }

    .mobile-contact-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        border-radius: 6px;
    }

    .mobile-contact-bar a:first-child {
        color: var(--site-green);
    }

    .mobile-contact-bar a:last-child {
        color: var(--site-white);
        background: var(--site-green);
    }

    .contact-page {
        padding-bottom: 0;
    }

    .contact-header-nav {
        grid-column: auto;
    }

    .contact-header-nav span {
        display: none;
    }

    .contact-hero {
        padding: 48px 0 42px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-steps {
        gap: 10px;
    }

    .contact-steps strong {
        font-size: 11px;
        line-height: 1.4;
    }

    .contact-workspace {
        padding: 44px 0 64px;
    }

    .contact-guidance {
        display: none;
    }

    .contact-form-panel {
        min-height: 0;
        padding: 26px 18px;
        border-radius: 6px;
    }

    .form-heading {
        align-items: flex-start;
    }

    .form-heading h2 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .field-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }

    .contact-success {
        min-height: 520px;
        padding: 20px 6px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
