:root {
    --ink: #102725;
    --ink-soft: #49615f;
    --forest: #083d39;
    --forest-deep: #052d2a;
    --jade: #0a756a;
    --jade-bright: #19a896;
    --mint: #dcefe9;
    --mist: #f2f8f6;
    --ivory: #fbfaf7;
    --white: #ffffff;
    --coral: #f1785f;
    --gold: #e7bd63;
    --line: #d7e4e0;
    --danger: #b42318;
    --success: #087443;
    --shadow-sm: 0 12px 28px rgba(9, 54, 50, .09);
    --shadow-md: 0 24px 56px rgba(9, 54, 50, .14);
    --shadow-lg: 0 36px 90px rgba(4, 37, 34, .23);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

.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;
}

svg {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    stroke-width: 1.8;
}

h1,
h2,
h3,
h4,
.brand {
    font-family: "Manrope", Arial, sans-serif;
}

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

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

.topbar {
    min-height: 40px;
    background: var(--forest-deep);
    color: #cfe2de;
    font-size: .82rem;
}

.topbar-inner,
.topbar-group {
    display: flex;
    align-items: center;
}

.topbar-inner {
    min-height: 40px;
    justify-content: space-between;
    gap: 28px;
}

.topbar-group {
    gap: 24px;
}

.topbar span,
.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar svg {
    color: var(--gold);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(215, 228, 224, .9);
    box-shadow: 0 8px 26px rgba(8, 61, 57, .06);
    backdrop-filter: blur(18px);
}

.nav-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--forest);
    font-weight: 800;
    line-height: 1.1;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.brand-mark img {
    width: 37px;
    height: 37px;
    object-fit: contain;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: #69807d;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: .69rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    color: #29423f;
    font-size: .93rem;
    font-weight: 700;
}

.nav-links > a:not(.btn) {
    position: relative;
    padding-block: 28px;
}

.nav-links > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--coral);
    transition: right .25s ease;
}

.nav-links > a:hover,
.nav-links > a.active {
    color: var(--jade);
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
    right: 0;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--forest);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.btn {
    position: relative;
    min-height: 48px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, .26) 45%, transparent 70%);
    transform: translateX(-130%);
    transition: transform .65s ease;
}

.btn:hover::before {
    transform: translateX(130%);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary,
.btn-dark {
    background: var(--forest);
    color: var(--white) !important;
    box-shadow: 0 13px 28px rgba(8, 61, 57, .18);
}

.btn-primary:hover,
.btn-dark:hover {
    background: var(--jade);
    box-shadow: 0 17px 34px rgba(8, 61, 57, .24);
}

.btn-accent {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 15px 34px rgba(241, 120, 95, .28);
}

.btn-accent:hover {
    background: #dc654f;
    box-shadow: 0 18px 40px rgba(241, 120, 95, .34);
}

.btn-light {
    background: var(--white);
    color: var(--forest);
    box-shadow: var(--shadow-sm);
}

.btn-ghost-light,
.btn-outline-light {
    border-color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.btn-outline {
    border-color: var(--line);
    background: var(--white);
    color: var(--forest);
}

.premium-hero {
    position: relative;
    min-height: 570px;
    height: min(690px, calc(100svh - 148px));
    overflow: hidden;
    background: var(--forest-deep);
    color: var(--white);
    isolation: isolate;
}

.premium-hero-image,
.premium-hero-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.premium-hero-image {
    z-index: -3;
    object-fit: cover;
    object-position: center 46%;
    animation: heroFocus 12s ease-in-out infinite alternate;
}

.premium-hero-scrim {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 36, 33, .94) 0%, rgba(3, 36, 33, .82) 37%, rgba(3, 36, 33, .28) 66%, rgba(3, 36, 33, .08) 100%),
        linear-gradient(0deg, rgba(3, 34, 31, .42), transparent 48%);
}

.premium-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .22;
    background-image: radial-gradient(rgba(255, 255, 255, .55) .7px, transparent .7px);
    background-size: 12px 12px;
    mask-image: linear-gradient(90deg, #000, transparent 48%);
}

.premium-hero-inner {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.premium-hero-copy {
    width: min(670px, 59%);
    padding: 58px 0 76px;
    animation: heroCopyIn .85s ease both;
}

.eyebrow,
.section-kicker,
.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: var(--jade);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow-light,
.section-kicker-light {
    color: #aee4d9;
}

.premium-hero h1 {
    max-width: 650px;
    margin: 0 0 24px;
    font-size: 4.45rem;
    line-height: 1.02;
    font-weight: 700;
}

.premium-hero h1 em {
    color: #bfe9df;
    font-family: Georgia, serif;
    font-weight: 400;
}

.premium-hero-copy > p {
    max-width: 585px;
    margin-bottom: 0;
    color: #d9e9e5;
    font-size: 1.14rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 31px;
    color: #e8f3f0;
    font-size: .8rem;
    font-weight: 700;
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-assurance svg {
    color: var(--gold);
}

.hero-contact-card {
    position: absolute;
    right: 0;
    bottom: 34px;
    width: 294px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .91);
    color: var(--ink);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    animation: cardLiftIn .9s .35s ease both, gentleFloat 5s 1.3s ease-in-out infinite;
}

.hero-contact-card .live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--jade);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.live-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1dab79;
    box-shadow: 0 0 0 0 rgba(29, 171, 121, .4);
    animation: pulse 2s infinite;
}

.hero-contact-card strong {
    display: block;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.08rem;
}

.hero-contact-card p {
    margin: 6px 0 15px;
    color: var(--ink-soft);
    font-size: .84rem;
    line-height: 1.5;
}

.hero-contact-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 800;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .76);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll span {
    width: 28px;
    height: 1px;
    background: var(--gold);
    animation: scrollLine 1.8s ease-in-out infinite;
}

.care-ribbon {
    position: relative;
    z-index: 3;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

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

.care-ribbon-item {
    min-height: 128px;
    display: grid;
    grid-template-columns: 72px 1fr 18px;
    align-items: center;
    gap: 14px;
    padding: 23px 20px;
    border-right: 1px solid var(--line);
    background: var(--white);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.care-ribbon-item:first-child {
    border-left: 1px solid var(--line);
}

.care-ribbon-item:hover {
    z-index: 2;
    background: var(--mist);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: var(--mint);
    color: var(--jade);
}

.service-thumb {
    width: 72px;
    height: 72px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: var(--mint);
}

.service-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(8, 61, 57, .08);
    pointer-events: none;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.care-ribbon-item:nth-child(1) .service-thumb img {
    object-position: 56% center;
}

.care-ribbon-item:nth-child(3) .service-thumb img {
    object-position: 52% center;
}

.care-ribbon-item:hover .service-thumb img {
    transform: scale(1.09);
}

.service-icon svg {
    width: 23px;
    height: 23px;
}

.care-ribbon-item strong,
.care-ribbon-item small {
    display: block;
}

.care-ribbon-item strong {
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .93rem;
}

.care-ribbon-item small {
    margin-top: 4px;
    color: #70827f;
    font-size: .76rem;
    line-height: 1.35;
}

.care-ribbon-item > svg {
    color: #8fa29e;
}

.section {
    padding: 104px 0;
}

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

.section h2,
.footer-lead h2,
.page-hero h1 {
    margin-bottom: 18px;
    color: var(--forest);
    font-size: 3.15rem;
    line-height: 1.12;
    font-weight: 700;
}

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

.clinic-intro {
    position: relative;
    padding-bottom: 92px;
    overflow: hidden;
}

.clinic-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, transparent 0 48%, rgba(220, 239, 233, .32) 48% 100%),
        var(--white);
}

.intro-feature {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 82px;
    align-items: center;
}

.intro-visual {
    position: relative;
    min-width: 0;
}

.intro-visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -22px;
    bottom: -22px;
    width: 58%;
    height: 72%;
    background: var(--mint);
}

.intro-visual > img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-md);
}

.intro-location {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 4px;
    background: rgba(5, 45, 42, .82);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.intro-image-caption {
    position: absolute;
    right: -24px;
    bottom: 24px;
    width: min(350px, calc(100% - 32px));
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.intro-image-caption > svg {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
    background: var(--mint);
    color: var(--jade);
}

.intro-image-caption span {
    display: grid;
}

.intro-image-caption strong {
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .87rem;
}

.intro-image-caption small {
    margin-top: 4px;
    color: #6f827e;
    font-size: .74rem;
    line-height: 1.42;
}

.intro-content h2 {
    max-width: 580px;
}

.intro-content .lead,
.wellness-copy .lead {
    color: var(--ink);
    font-size: 1.23rem;
    line-height: 1.62;
}

.intro-content > p:not(.lead) {
    max-width: 600px;
}

.intro-promises {
    display: grid;
    gap: 0;
    margin: 28px 0 10px;
    border-top: 1px solid var(--line);
}

.intro-promises > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 13px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.intro-promises svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 4px;
    background: var(--white);
    color: var(--coral);
    box-shadow: var(--shadow-sm);
}

.intro-promises span {
    display: grid;
}

.intro-promises strong {
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .85rem;
}

.intro-promises small {
    color: #71837f;
    font-size: .75rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--jade);
    color: var(--jade);
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 800;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.text-link svg {
    transition: transform .2s ease;
}

.assurance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    background: var(--forest-deep);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.assurance-stats > div {
    min-height: 164px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 16px;
    padding: 27px;
    border-top: 3px solid var(--jade-bright);
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.assurance-stats > div:first-child {
    border-left: 0;
}

.assurance-stats > div:nth-child(2) {
    border-top-color: var(--gold);
}

.assurance-stats > div:nth-child(3) {
    border-top-color: var(--coral);
}

.assurance-stats > div:nth-child(4) {
    border-top-color: #b6dfd5;
    border-right: 0;
}

.assurance-stats > div > svg {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    color: #b9e6dc;
}

.assurance-stats > div > span {
    display: grid;
}

.assurance-stats strong {
    color: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 2.35rem;
    line-height: 1;
}

.assurance-stats small {
    max-width: 155px;
    margin-top: 10px;
    color: #abc3bd;
    font-size: .81rem;
    line-height: 1.35;
}

.section-title-row {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 50px;
}

.section-title-row h2 {
    max-width: 670px;
    margin-bottom: 0;
}

.section-title-row > p {
    margin-bottom: 6px;
    font-size: 1.03rem;
}

.service-explorer {
    display: grid;
    grid-template-columns: 36% 64%;
    border-block: 1px solid #c8dcd6;
}

.service-tabs {
    border-right: 1px solid #c8dcd6;
}

.service-tab {
    width: 100%;
    min-height: 116px;
    display: grid;
    grid-template-columns: 40px 1fr 20px;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    border: 0;
    border-bottom: 1px solid #c8dcd6;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

.service-tab:last-child {
    border-bottom: 0;
}

.service-tab > svg:first-child {
    width: 26px;
    height: 26px;
    color: var(--jade);
}

.service-tab > svg:last-child {
    color: #879b97;
    transition: transform .25s ease;
}

.service-tab strong,
.service-tab small {
    display: block;
}

.service-tab strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: .95rem;
}

.service-tab small {
    margin-top: 5px;
    color: #71827f;
    font-size: .76rem;
}

.service-tab:hover,
.service-tab.is-active {
    background: var(--forest);
    color: var(--white);
}

.service-tab:hover small,
.service-tab.is-active small,
.service-tab:hover svg,
.service-tab.is-active svg {
    color: #b7ddd5;
}

.service-tab:hover > svg:last-child,
.service-tab.is-active > svg:last-child {
    transform: translateX(4px);
}

.service-panels {
    min-width: 0;
}

.service-panel {
    min-height: 463px;
    display: grid;
    grid-template-columns: 52% 48%;
    background: var(--white);
    animation: panelIn .45s ease both;
}

.service-panel[hidden] {
    display: none;
}

.service-panel > img {
    width: 100%;
    height: 100%;
    min-height: 463px;
    object-fit: cover;
}

.service-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.service-panel-content > span {
    color: var(--coral);
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-panel-content h3 {
    margin: 12px 0 15px;
    color: var(--forest);
    font-size: 1.7rem;
    line-height: 1.22;
}

.service-panel-content p {
    font-size: .91rem;
}

.service-panel-content ul {
    display: grid;
    gap: 8px;
    margin: 4px 0 22px;
    padding: 0;
    list-style: none;
    color: #314a47;
    font-size: .85rem;
    font-weight: 700;
}

.service-panel-content li::before {
    content: "\2713";
    margin-right: 8px;
    color: var(--jade);
}

.service-panel-content a,
.team-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--jade);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .84rem;
    font-weight: 800;
}

.journey-section {
    position: relative;
    overflow: hidden;
    background: var(--forest-deep);
    color: var(--white);
}

.journey-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 54px 54px;
}

.journey-section .container {
    position: relative;
}

.journey-heading {
    max-width: 720px;
    margin-bottom: 62px;
}

.journey-heading h2,
.journey-heading p {
    color: var(--white);
}

.journey-heading p {
    max-width: 610px;
    color: #bbcfca;
}

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

.journey-grid::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(255, 255, 255, .23);
}

.journey-step {
    position: relative;
    padding: 0 30px 0 0;
}

.journey-step > span {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: var(--forest-deep);
    color: var(--gold);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .79rem;
    font-weight: 800;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.journey-step:hover > span {
    background: var(--coral);
    color: var(--white);
    transform: scale(1.07);
}

.journey-step > svg {
    width: 29px;
    height: 29px;
    margin-bottom: 16px;
    color: #9dded0;
}

.journey-step h3 {
    margin-bottom: 11px;
    color: var(--white);
    font-size: 1.02rem;
}

.journey-step p {
    max-width: 245px;
    margin-bottom: 0;
    color: #afc7c1;
    font-size: .84rem;
}

.diagnostics-layout,
.wellness-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center;
}

.diagnostics-image,
.wellness-image {
    position: relative;
}

.diagnostics-image::before,
.wellness-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 68%;
    height: 72%;
    background: var(--mint);
}

.diagnostics-image::before {
    left: -24px;
    bottom: -24px;
}

.wellness-image::before {
    right: -24px;
    top: -24px;
    background: #f5dfb4;
}

.diagnostics-image img,
.wellness-image img {
    width: 100%;
    aspect-ratio: 1.14 / 1;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.image-note,
.wellness-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 19px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-md);
}

.image-note {
    right: -22px;
    bottom: 28px;
    max-width: 285px;
}

.wellness-badge {
    left: -26px;
    bottom: 30px;
}

.image-note > svg,
.wellness-badge > svg {
    width: 27px;
    height: 27px;
    color: var(--coral);
}

.image-note span,
.wellness-badge span {
    display: grid;
    font-size: .75rem;
    line-height: 1.35;
}

.image-note strong,
.wellness-badge strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: .84rem;
}

.diagnostics-copy > p {
    max-width: 580px;
    font-size: 1.02rem;
}

.diagnostic-points {
    display: grid;
    gap: 19px;
    margin: 31px 0 34px;
}

.diagnostic-points > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.diagnostic-points > div > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 4px;
    background: var(--mist);
    color: var(--jade);
}

.diagnostic-points span {
    display: grid;
}

.diagnostic-points strong {
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .92rem;
}

.diagnostic-points small {
    color: #70817e;
}

.wellness-layout {
    grid-template-columns: .93fr 1.07fr;
}

.wellness-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 26px;
    margin: 31px 0 24px;
    border-top: 1px solid var(--line);
}

.wellness-features > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.wellness-features span {
    color: var(--coral);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .75rem;
    font-weight: 800;
}

.wellness-features p {
    margin-bottom: 0;
    font-size: .83rem;
    line-height: 1.48;
}

.wellness-features strong {
    display: block;
    margin-bottom: 4px;
    color: var(--forest);
}

.international-care {
    padding: 94px 0;
    background: var(--jade);
    color: var(--white);
}

.international-grid {
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 90px;
    align-items: center;
}

.international-intro h2,
.international-intro p {
    color: var(--white);
}

.international-intro p {
    max-width: 510px;
    color: #d5ebe6;
}

.international-intro .btn {
    margin-top: 17px;
}

.international-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .27);
}

.international-features article {
    min-height: 280px;
    padding: 31px 26px;
    border-right: 1px solid rgba(255, 255, 255, .27);
}

.international-features article:last-child {
    border-right: 0;
}

.international-features svg {
    width: 31px;
    height: 31px;
    margin-bottom: 46px;
    color: #f6d18a;
}

.international-features h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1rem;
}

.international-features p {
    margin-bottom: 0;
    color: #d0e8e2;
    font-size: .82rem;
}

.team-showcase {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    background: var(--forest);
}

.team-showcase > img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: center;
    transition: transform .8s ease;
}

.team-showcase:hover > img {
    transform: scale(1.025);
}

.team-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 43, 40, .88) 0%, rgba(4, 43, 40, .6) 39%, rgba(4, 43, 40, 0) 68%);
}

.team-overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px;
    color: var(--white);
}

.team-overlay > span {
    color: #b8e5dc;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.team-overlay h3 {
    margin: 13px 0 26px;
    color: var(--white);
    font-size: 2rem;
    line-height: 1.25;
}

.team-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 29px;
}

.team-disciplines span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 3px;
    background: rgba(255, 255, 255, .09);
    font-size: .72rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.team-overlay a {
    color: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 96px;
    align-items: center;
}

.experience-heading p {
    max-width: 530px;
}

.testimonial-controls {
    display: flex;
    gap: 9px;
    margin-top: 29px;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    color: var(--forest);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.testimonial-controls button:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}

.testimonial-stage {
    min-height: 410px;
    position: relative;
    background: var(--white);
    border-left: 4px solid var(--coral);
    box-shadow: var(--shadow-md);
}

.testimonial {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity .38s ease, transform .38s ease, visibility .38s ease;
}

.testimonial.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.quote-mark {
    height: 54px;
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.testimonial blockquote {
    margin: 13px 0 34px;
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.44;
}

.testimonial > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial > div > svg {
    width: 43px;
    height: 43px;
    padding: 10px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--jade);
}

.testimonial > div span {
    display: grid;
}

.testimonial > div strong {
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
}

.testimonial > div small {
    color: #788a87;
}

.faq-booking-section {
    background: var(--ivory);
}

.faq-booking-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 82px;
    align-items: start;
}

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

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

.faq-list summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--forest);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .95rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary svg {
    transition: transform .25s ease;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 38px 22px 0;
    margin-bottom: 0;
    font-size: .87rem;
}

.booking-card,
.form-card,
.card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.booking-card {
    padding: 46px;
    border-top: 5px solid var(--coral);
    box-shadow: var(--shadow-md);
}

.booking-card-head > span {
    color: var(--coral);
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.booking-card-head h2 {
    margin: 8px 0 10px;
    font-size: 2rem;
}

.booking-card-head p {
    max-width: 530px;
    margin-bottom: 28px;
    font-size: .9rem;
}

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

.form-group {
    display: grid;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    color: var(--forest);
    font-size: .76rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cddbd7;
    border-radius: 4px;
    padding: 11px 13px;
    background: #fcfefd;
    color: var(--ink);
    font-size: .86rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
    min-height: 92px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--jade);
    box-shadow: 0 0 0 3px rgba(10, 117, 106, .11);
}

.home-booking-form .btn {
    width: 100%;
    margin-top: 3px;
}

.booking-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0 0;
    color: #748784 !important;
    font-size: .73rem;
}

.footer {
    background: var(--forest-deep);
    color: #c3d8d3;
}

.footer-lead {
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-lead > div {
    max-width: 720px;
}

.footer-kicker {
    color: var(--gold);
}

.footer-lead h2 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 2.55rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr .85fr 1fr;
    gap: 58px;
    padding-top: 68px;
    padding-bottom: 45px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .brand-mark {
    box-shadow: none;
}

.footer-brand small {
    color: #a9c3bd;
}

.footer p {
    color: #a9c3bd;
    font-size: .85rem;
}

.footer h4 {
    margin: 7px 0 20px;
    color: var(--white);
    font-size: .9rem;
}

.footer-grid > div > a:not(.brand),
.footer-grid > div > p {
    display: block;
    margin-bottom: 10px;
    color: #b4cbc6;
    font-size: .83rem;
}

.footer-grid > div > a:not(.brand):hover {
    color: var(--white);
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 21px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid !important;
    place-items: center;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    color: var(--white) !important;
    transition: background .2s ease;
}

.footer-socials a:hover {
    background: var(--jade);
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #8eaaa4;
    font-size: .76rem;
}

.clinic-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 140;
}

.chat-launcher {
    position: relative;
    width: 218px;
    min-height: 64px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: center;
    margin-left: auto;
    padding: 9px 28px 9px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 18px 45px rgba(4, 45, 42, .3), inset 0 1px 0 rgba(255, 255, 255, .16);
    cursor: pointer;
    text-align: left;
    animation: chatLauncherAttention 4.5s 1.4s ease-in-out infinite;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.chat-launcher:hover {
    transform: translateY(-3px);
    background: var(--jade);
    box-shadow: 0 22px 52px rgba(4, 45, 42, .34), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.chat-launcher:focus-visible,
.chat-icon-button:focus-visible,
.chat-quick-replies button:focus-visible,
.chat-date-submit:focus-visible,
.chat-booking-submit:focus-visible,
.chat-booking-restart:focus-visible {
    outline: 3px solid rgba(231, 189, 99, .78);
    outline-offset: 3px;
}

.chat-launcher-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    grid-row: 1;
    grid-column: 1;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
}

.chat-launcher-icon > * {
    grid-area: 1 / 1;
}

.chat-launcher-icon svg {
    width: 23px;
    height: 23px;
}

.chat-fallback-mark {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.chat-launcher-icon svg ~ .chat-fallback-mark {
    display: none;
}

.chat-launcher-copy {
    min-width: 0;
    display: block;
}

.chat-launcher-copy strong,
.chat-launcher-copy small {
    display: block;
    white-space: nowrap;
}

.chat-launcher-copy strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: .79rem;
    line-height: 1.2;
}

.chat-launcher-copy small {
    margin-top: 3px;
    color: #bdd4cf;
    font-size: .63rem;
    line-height: 1.2;
}

.chat-launcher-status {
    position: absolute;
    top: 4px;
    right: 3px;
    width: 13px;
    height: 13px;
    border: 3px solid var(--forest);
    border-radius: 50%;
    background: #51d19e;
    box-shadow: 0 0 0 4px rgba(81, 209, 158, .2);
}

@keyframes chatLauncherAttention {
    0%, 72%, 100% { box-shadow: 0 18px 45px rgba(4, 45, 42, .3), inset 0 1px 0 rgba(255, 255, 255, .16); }
    82% { box-shadow: 0 18px 45px rgba(4, 45, 42, .34), 0 0 0 7px rgba(25, 168, 150, .12), inset 0 1px 0 rgba(255, 255, 255, .18); }
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: min(390px, calc(100vw - 32px));
    height: min(620px, calc(100dvh - 118px));
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 57, .16);
    border-radius: 8px;
    background: #f5faf8;
    box-shadow: 0 34px 90px rgba(4, 37, 34, .3), 0 8px 26px rgba(4, 37, 34, .14);
    opacity: 0;
    transform: translateY(16px) scale(.98);
    transform-origin: right bottom;
    transition: opacity .24s ease, transform .24s ease;
}

.chat-panel[hidden] {
    display: none;
}

.chat-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    display: grid;
    grid-template-columns: 44px 1fr 36px;
    gap: 11px;
    align-items: center;
    min-height: 76px;
    padding: 12px 14px;
    background: var(--forest-deep);
    color: var(--white);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07));
    color: var(--gold);
}

.chat-avatar svg {
    width: 21px;
    height: 21px;
}

.chat-header strong,
.chat-header small {
    display: block;
}

.chat-header strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: .92rem;
}

.chat-header small {
    margin-top: 2px;
    color: #b7d2cc;
    font-size: .7rem;
}

.chat-header small i {
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: #51d19e;
}

.chat-icon-button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #d9e8e5;
    cursor: pointer;
}

.chat-icon-button:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

.chat-messages {
    min-height: 0;
    padding: 18px 16px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #b7cbc6 transparent;
}

.chat-message {
    width: fit-content;
    max-width: 88%;
    margin-bottom: 12px;
    padding: 11px 13px;
    border-radius: 7px;
    animation: chatMessageIn .3s ease both;
}

.chat-message.is-bot {
    border: 1px solid #dbe7e3;
    border-top-left-radius: 2px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(8, 61, 57, .06);
}

.chat-message.is-user {
    margin-left: auto;
    border-top-right-radius: 2px;
    background: var(--jade);
    color: var(--white);
}

.chat-message-label {
    display: block;
    margin-bottom: 4px;
    color: var(--jade);
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.chat-message p {
    margin: 0;
    color: inherit;
    font-size: .79rem;
    line-height: 1.5;
}

.chat-message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.chat-message-actions a {
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--jade);
    font-size: .68rem;
    font-weight: 800;
}

.chat-message-actions a:hover {
    border-color: var(--jade);
    background: var(--mist);
}

.chat-message-actions a.is-urgent {
    border-color: rgba(180, 35, 24, .22);
    background: #fff1f0;
    color: var(--danger);
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 3px 0 16px;
    animation: chatMessageIn .3s .06s ease both;
}

.chat-quick-replies button {
    min-height: 35px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid #bed5cf;
    border-radius: 4px;
    background: rgba(255, 255, 255, .82);
    color: var(--forest);
    font-size: .69rem;
    font-weight: 750;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.chat-quick-replies button:hover {
    transform: translateY(-1px);
    border-color: var(--jade);
    background: var(--jade);
    color: var(--white);
}

.chat-quick-replies svg {
    width: 14px;
    height: 14px;
}

.chat-date-request {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 8px;
    align-items: end;
    margin: 0 0 16px;
    padding: 11px;
    border: 1px solid #dbe7e3;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(8, 61, 57, .06);
    animation: chatMessageIn .3s ease both;
}

.chat-date-request label {
    display: grid;
    gap: 5px;
    font-size: .67rem;
}

.chat-date-request input {
    min-height: 42px;
    padding: 8px 9px;
    font-size: .78rem;
}

.chat-date-submit {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    background: var(--jade);
    color: var(--white);
    cursor: pointer;
}

.chat-booking-review {
    margin: 0 0 15px;
    padding: 14px;
    border: 1px solid #cbdeda;
    border-top: 3px solid var(--gold);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    animation: chatMessageIn .3s ease both;
}

.chat-booking-review dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 6px 10px;
    margin: 0 0 13px;
    font-size: .72rem;
}

.chat-booking-review dt {
    color: #718783;
    font-weight: 700;
}

.chat-booking-review dd {
    margin: 0;
    color: var(--forest);
    font-weight: 700;
}

.chat-booking-submit {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 4px;
    background: var(--forest);
    color: var(--white);
    font-size: .74rem;
    font-weight: 800;
    cursor: pointer;
}

.chat-booking-submit:hover {
    background: var(--jade);
}

.chat-booking-restart {
    width: 100%;
    margin-top: 8px;
    border: 0;
    background: transparent;
    color: var(--jade);
    font-size: .7rem;
    font-weight: 800;
    cursor: pointer;
}

.chat-composer {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 8px;
    padding: 11px 12px;
    border-top: 1px solid #dce8e4;
    background: var(--white);
}

.chat-composer input {
    min-height: 42px;
    padding: 9px 11px;
    border-color: #d4e2de;
    background: #f8fbfa;
    font-size: .76rem;
}

.chat-composer button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    background: var(--coral);
    color: var(--white);
    cursor: pointer;
    transition: background .2s ease;
}

.chat-composer button:hover {
    background: #dc624c;
}

.chat-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 7px 12px 8px;
    background: var(--white);
    color: #748783;
    font-size: .6rem;
    line-height: 1.3;
}

.chat-disclaimer svg {
    width: 12px;
    height: 12px;
    color: var(--coral);
}

@keyframes chatMessageIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-hero {
    padding: 78px 0;
    background: var(--mist);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 13px;
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1rem;
}

.breadcrumbs {
    margin-bottom: 14px;
    color: #70837f;
    font-size: .78rem;
    font-weight: 700;
}

.breadcrumbs a {
    color: var(--jade);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 43px;
    text-align: center;
}

.section-head.left {
    margin-left: 0;
    text-align: left;
}

.section-head p {
    font-size: 1rem;
}

.grid-2,
.grid-3,
.grid-4,
.split {
    display: grid;
    gap: 26px;
}

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

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

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

.split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.card,
.form-card {
    padding: 28px;
}

.card h3 {
    margin: 8px 0 10px;
    color: var(--forest);
}

.card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 5px;
    background: var(--mint);
    color: var(--jade);
    font-size: 1.3rem;
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: start;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.service-row h3 {
    margin: 0 0 6px;
    color: var(--forest);
}

.service-row p {
    margin: 0;
    color: var(--ink-soft);
}

.image-panel {
    min-height: 480px;
    background: url("../img/clinic-reception.png") center / cover no-repeat;
    box-shadow: var(--shadow-md);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.badge {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--forest);
    font-size: .78rem;
    font-weight: 700;
}

.link-more {
    display: inline-flex;
    margin-top: 20px;
    color: var(--jade);
    font-weight: 800;
}

.doctor {
    padding: 0;
    overflow: hidden;
}

.doctor-photo {
    height: 250px;
    display: grid;
    place-items: center;
    background: var(--mint);
    font-size: 3.5rem;
}

.doctor-body {
    padding: 25px;
}

.doctor small {
    color: var(--coral);
    font-weight: 800;
}

.map-box {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: var(--radius);
}

.alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 4px;
    font-weight: 700;
}

.alert.success {
    border: 1px solid #b7ebc6;
    background: #ecfdf3;
    color: var(--success);
}

.alert.error {
    border: 1px solid #ffd1cc;
    background: #fff1f0;
    color: var(--danger);
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    background: var(--mist);
    color: var(--forest);
}

.inner-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    overflow: hidden;
    background: var(--forest-deep);
    color: var(--white);
}

.inner-hero-image,
.inner-hero-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.inner-hero-image {
    object-fit: cover;
    object-position: center;
}

.inner-hero-scrim {
    background: linear-gradient(90deg, rgba(3, 35, 32, .94) 0%, rgba(3, 35, 32, .79) 43%, rgba(3, 35, 32, .27) 72%, rgba(3, 35, 32, .08) 100%);
}

.inner-hero-scrim-strong {
    background: linear-gradient(90deg, rgba(3, 35, 32, .96) 0%, rgba(3, 35, 32, .83) 48%, rgba(3, 35, 32, .32) 78%, rgba(3, 35, 32, .18) 100%);
}

.inner-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 44px;
    padding-bottom: 20px;
}

.inner-hero-copy {
    width: min(720px, 66%);
}

.breadcrumbs-light {
    color: rgba(255, 255, 255, .62);
}

.breadcrumbs-light a {
    color: var(--white);
}

.inner-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #bde1da;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.inner-hero-kicker svg {
    color: var(--gold);
}

.inner-hero h1 {
    max-width: 720px;
    margin-bottom: 19px;
    color: var(--white);
    font-size: 3.35rem;
    line-height: 1.04;
}

.inner-hero-copy > p {
    max-width: 665px;
    margin-bottom: 26px;
    color: #d7e6e2;
    font-size: 1.03rem;
}

.inner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.inner-hero-facts {
    width: min(760px, 72%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    background: rgba(4, 38, 35, .68);
    backdrop-filter: blur(14px);
}

.inner-hero-facts span {
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 20px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.inner-hero-facts span:last-child {
    border-right: 0;
}

.inner-hero-facts strong,
.inner-hero-facts small {
    display: block;
}

.inner-hero-facts strong {
    color: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    font-size: .92rem;
}

.inner-hero-facts small {
    margin-top: 2px;
    color: #b8cfca;
    font-size: .68rem;
}

.editorial-split {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 95px;
    align-items: start;
}

.editorial-heading {
    position: sticky;
    top: 132px;
}

.editorial-heading h2 {
    margin-bottom: 0;
    color: var(--forest);
    font-size: 2.75rem;
}

.editorial-copy {
    padding-left: 34px;
    border-left: 1px solid var(--line);
}

.editorial-copy p {
    color: var(--ink-soft);
}

.editorial-copy .lead {
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 600;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.principle-card {
    position: relative;
    min-height: 330px;
    padding: 38px 34px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, .56);
}

.principle-card:last-child {
    border-right: 0;
}

.principle-card > span {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #9aada9;
    font-size: .68rem;
    font-weight: 800;
}

.principle-card svg {
    width: 34px;
    height: 34px;
    margin-bottom: 48px;
    color: var(--coral);
}

.principle-card h3 {
    color: var(--forest);
    font-size: 1.25rem;
}

.principle-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.feature-band {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 590px;
    background: var(--mist);
}

.feature-band-image,
.feature-band-image img {
    width: 100%;
    height: 100%;
    min-height: 590px;
}

.feature-band-image img {
    object-fit: cover;
}

.feature-band-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 58px;
}

.feature-band-copy h2 {
    color: var(--forest);
    font-size: 2.6rem;
}

.feature-band-copy > p {
    color: var(--ink-soft);
}

.check-list {
    display: grid;
    gap: 0;
    margin: 16px 0 25px;
    border-top: 1px solid var(--line);
}

.check-list span {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: .82rem;
    font-weight: 650;
}

.check-list svg {
    margin-top: 4px;
    color: var(--jade);
}

.about-audiences,
.department-pathway,
.clinician-match-section {
    background-color: var(--forest-deep);
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 54px 54px;
    color: var(--white);
}

.about-audiences .section-title-row h2,
.department-pathway h2,
.clinician-match-section h2 {
    color: var(--white);
}

.about-audiences .section-title-row > p,
.department-pathway .service-category-heading > p,
.clinician-match-section .service-category-heading > p {
    color: #adc7c1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.audience-grid article {
    min-height: 280px;
    padding: 36px 34px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.audience-grid article:last-child {
    border-right: 0;
}

.audience-grid svg {
    width: 32px;
    height: 32px;
    margin-bottom: 52px;
    color: var(--gold);
}

.audience-grid h3 {
    color: var(--white);
}

.audience-grid p {
    margin-bottom: 0;
    color: #abc4be;
}

.care-standards-section {
    background: var(--ivory);
}

.care-standards-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 90px;
}

.care-standards-grid > div:first-child h2 {
    color: var(--forest);
    font-size: 2.6rem;
}

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

.standards-list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 21px 0;
    border-bottom: 1px solid var(--line);
}

.standards-list article > span {
    color: var(--coral);
    font-size: .69rem;
    font-weight: 800;
}

.standards-list h3 {
    margin-bottom: 4px;
    color: var(--forest);
}

.standards-list p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .84rem;
}

.service-index-section {
    padding: 76px 0;
    background: var(--white);
}

.service-index-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.service-index-layout h2 {
    color: var(--forest);
    font-size: 2.5rem;
}

.service-index-layout p {
    color: var(--ink-soft);
}

.service-index {
    border-top: 1px solid var(--line);
}

.service-index a {
    display: grid;
    grid-template-columns: 42px 1fr 18px;
    gap: 12px;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
    font-size: .81rem;
    font-weight: 800;
    transition: color .2s ease, padding-left .2s ease;
}

.service-index a:hover {
    padding-left: 7px;
    color: var(--jade);
}

.service-index a span {
    color: var(--coral);
    font-size: .65rem;
}

.service-category {
    scroll-margin-top: 92px;
}

.service-category-heading {
    max-width: 780px;
    margin-bottom: 44px;
}

.service-category-heading h2 {
    color: var(--forest);
    font-size: 2.7rem;
}

.service-category-heading > p {
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 1rem;
}

.service-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-directory-card {
    scroll-margin-top: 100px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(9, 54, 50, .05);
}

.service-directory-icon,
.clinical-team-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid #cae0da;
    border-radius: 5px;
    background: var(--mist);
    color: var(--jade);
}

.service-directory-icon svg,
.clinical-team-icon svg {
    width: 23px;
    height: 23px;
}

.service-directory-card h3 {
    color: var(--forest);
    font-size: 1.28rem;
}

.service-directory-card > p {
    color: var(--ink-soft);
    font-size: .86rem;
}

.service-directory-card ul,
.clinical-team-card ul {
    display: grid;
    gap: 6px;
    margin: 4px 0 24px;
    padding: 0;
    list-style: none;
}

.service-directory-card li,
.clinical-team-card li {
    position: relative;
    padding-left: 16px;
    color: #536a67;
    font-size: .75rem;
}

.service-directory-card li::before,
.clinical-team-card li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

.service-directory-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--jade);
    font-size: .76rem;
    font-weight: 800;
}

.service-safety-band {
    padding: 48px 0;
    background: var(--forest-deep);
    color: var(--white);
}

.service-safety-inner {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 26px;
    align-items: center;
}

.service-safety-inner > svg {
    width: 48px;
    height: 48px;
    color: var(--coral);
}

.service-safety-inner span {
    color: var(--gold);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-safety-inner h2 {
    margin: 3px 0 4px;
    color: var(--white);
    font-size: 1.45rem;
}

.service-safety-inner p {
    margin: 0;
    color: #abc4be;
    font-size: .8rem;
}

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

.department-directory-card {
    position: relative;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.department-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: #9badaa;
    font-size: .66rem;
    font-weight: 800;
}

.department-directory-card > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 40px;
    color: var(--coral);
}

.department-directory-card h3 {
    color: var(--forest);
    font-size: 1.17rem;
}

.department-directory-card p {
    color: var(--ink-soft);
    font-size: .81rem;
}

.department-directory-card small {
    display: block;
    margin-bottom: 18px;
    color: #7a8f8b;
    font-size: .67rem;
    font-weight: 750;
}

.department-directory-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--jade);
    font-size: .72rem;
    font-weight: 800;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.pathway-grid article {
    min-height: 290px;
    padding: 30px 27px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.pathway-grid article:last-child {
    border-right: 0;
}

.pathway-grid article > span {
    display: block;
    margin-bottom: 36px;
    color: var(--gold);
    font-size: .7rem;
    font-weight: 800;
}

.pathway-grid svg {
    width: 27px;
    height: 27px;
    margin-bottom: 22px;
    color: #8dd0c2;
}

.pathway-grid h3 {
    color: var(--white);
    font-size: 1.02rem;
}

.pathway-grid p {
    margin-bottom: 0;
    color: #a9c3bd;
    font-size: .78rem;
}

.compact-cta {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 42px 48px;
    border: 1px solid var(--line);
    background: var(--mist);
}

.compact-cta > div {
    max-width: 760px;
}

.compact-cta h2 {
    margin-bottom: 0;
    color: var(--forest);
    font-size: 2rem;
}

.clinical-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.clinical-team-card {
    min-height: 350px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.clinical-team-card h3 {
    color: var(--forest);
}

.clinical-team-card > p {
    color: var(--ink-soft);
    font-size: .82rem;
}

.appointment-layout,
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 38px;
    align-items: start;
}

.appointment-form-shell,
.contact-form-shell {
    padding: 42px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--jade);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-shell-heading {
    margin-bottom: 27px;
}

.form-shell-heading > span {
    color: var(--coral);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.form-shell-heading h2 {
    margin: 4px 0 7px;
    color: var(--forest);
    font-size: 2rem;
}

.form-shell-heading p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .83rem;
}

.appointment-form-shell .btn,
.contact-form-shell .btn {
    width: 100%;
}

.appointment-aside,
.contact-visit {
    display: grid;
    gap: 22px;
}

.urgent-contact-panel {
    padding: 34px;
    border-radius: 6px;
    background: var(--forest-deep);
    color: var(--white);
}

.urgent-contact-panel > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.urgent-contact-panel h2 {
    margin: 12px 0 11px;
    color: var(--white);
    font-size: 1.75rem;
}

.urgent-contact-panel p {
    color: #abc4be;
    font-size: .8rem;
}

.urgent-contact-panel > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
}

.visit-checklist,
.contact-visit {
    padding: 32px;
    border: 1px solid var(--line);
    background: var(--white);
}

.visit-checklist h3,
.contact-visit h2 {
    color: var(--forest);
}

.visit-checklist ul {
    display: grid;
    gap: 0;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.visit-checklist li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.visit-checklist li > svg {
    margin-top: 3px;
    color: var(--jade);
}

.visit-checklist strong,
.visit-checklist small {
    display: block;
}

.visit-checklist strong {
    color: var(--forest);
    font-size: .78rem;
}

.visit-checklist li span {
    color: var(--ink-soft);
    font-size: .7rem;
}

.appointment-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.appointment-steps article {
    min-height: 230px;
    padding: 32px;
    border-right: 1px solid var(--line);
}

.appointment-steps article:last-child {
    border-right: 0;
}

.appointment-steps article > span {
    display: block;
    margin-bottom: 43px;
    color: var(--coral);
    font-size: .7rem;
    font-weight: 800;
}

.appointment-steps h3 {
    color: var(--forest);
}

.appointment-steps p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .8rem;
}

.contact-channel-section {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-channel {
    min-height: 175px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: center;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.contact-channel:last-child {
    border-right: 0;
}

.contact-channel > svg {
    width: 30px;
    height: 30px;
    color: var(--coral);
}

.contact-channel small,
.contact-channel strong,
.contact-channel em {
    display: block;
}

.contact-channel small {
    color: #748984;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-channel strong {
    margin: 3px 0;
    color: var(--forest);
    font-size: .89rem;
}

.contact-channel em {
    color: var(--ink-soft);
    font-size: .7rem;
    font-style: normal;
}

.contact-visit > p {
    color: var(--ink-soft);
}

.contact-visit-details {
    border-top: 1px solid var(--line);
}

.contact-visit-details > div {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.contact-visit-details svg {
    margin-top: 3px;
    color: var(--jade);
}

.contact-visit-details strong,
.contact-visit-details small {
    display: block;
}

.contact-visit-details strong {
    color: var(--forest);
    font-size: .78rem;
}

.contact-visit-details small {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: .69rem;
}

.contact-map-section {
    position: relative;
    min-height: 510px;
}

.contact-map {
    width: 100%;
    height: 510px;
    display: block;
    border: 0;
    filter: saturate(.72) contrast(.96);
}

.contact-map-caption {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    min-height: 92px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 24px;
    border-radius: 6px;
    background: var(--forest-deep);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-map-caption > svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.contact-map-caption small,
.contact-map-caption strong {
    display: block;
}

.contact-map-caption small {
    color: #9ebbb5;
    font-size: .64rem;
    text-transform: uppercase;
}

.contact-map-caption strong {
    font-size: .82rem;
}

.contact-map-caption a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition:
        opacity .82s cubic-bezier(.2, .75, .25, 1),
        transform .82s cubic-bezier(.2, .75, .25, 1),
        filter .82s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.will-reveal {
    opacity: 0;
    transform: translateY(38px) scale(.985);
    filter: blur(4px);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.will-reveal[data-reveal="left"] {
    transform: translateX(-44px);
}

.reveal-on-scroll.will-reveal[data-reveal="right"] {
    transform: translateX(44px);
}

.reveal-on-scroll.will-reveal[data-reveal="scale"] {
    transform: translateY(24px) scale(.955);
}

.reveal-on-scroll.will-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
}

@keyframes heroCopyIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardLiftIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFocus {
    from { transform: scale(1.015); }
    to { transform: scale(1.055); }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(29, 171, 121, .45); }
    70% { box-shadow: 0 0 0 9px rgba(29, 171, 121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 171, 121, 0); }
}

@keyframes scrollLine {
    0%, 100% { transform: scaleX(.45); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
}

@keyframes panelIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1120px) {
    .container {
        width: min(100% - 44px, 1240px);
    }

    .topbar-group:first-child span:first-child {
        display: none;
    }

    .nav-links {
        gap: 19px;
    }

    .premium-hero h1 {
        font-size: 3.9rem;
    }

    .hero-contact-card {
        right: 10px;
    }

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

    .care-ribbon-item:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .care-ribbon-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .service-explorer {
        grid-template-columns: 34% 66%;
    }

    .service-panel {
        grid-template-columns: 48% 52%;
    }

    .service-panel-content {
        padding: 32px;
    }

    .international-grid {
        gap: 52px;
    }

    .international-features article {
        padding: 27px 20px;
    }
}

@media (max-width: 930px) {
    .topbar {
        display: none;
    }

    .nav-inner {
        min-height: 74px;
    }

    .nav-toggle {
        display: grid;
    }

    .nav-links {
        position: fixed;
        inset: 74px 0 auto;
        max-height: calc(100svh - 74px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 24px 28px;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow-md);
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links > a:not(.btn) {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
    }

    .nav-links > a:not(.btn)::after {
        display: none;
    }

    .nav-appointment {
        margin-top: 18px;
    }

    .premium-hero {
        height: min(690px, calc(100svh - 104px));
        min-height: 560px;
    }

    .premium-hero-scrim {
        background: linear-gradient(90deg, rgba(3, 36, 33, .94), rgba(3, 36, 33, .72) 65%, rgba(3, 36, 33, .36));
    }

    .premium-hero-copy {
        width: 72%;
    }

    .hero-contact-card {
        display: none;
    }

    .intro-editorial,
    .intro-feature,
    .section-title-row,
    .diagnostics-layout,
    .wellness-layout,
    .international-grid,
    .experience-grid,
    .faq-booking-grid,
    .split,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .intro-editorial,
    .intro-feature,
    .diagnostics-layout,
    .wellness-layout,
    .international-grid,
    .experience-grid,
    .faq-booking-grid {
        gap: 54px;
    }

    .intro-copy {
        padding-top: 0;
    }

    .intro-visual {
        max-width: 720px;
    }

    .intro-visual > img {
        height: 540px;
    }

    .section-title-row {
        gap: 16px;
        align-items: start;
    }

    .assurance-stats,
    .journey-grid,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .assurance-stats > div:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .assurance-stats > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .service-explorer {
        grid-template-columns: 1fr;
    }

    .service-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-right: 0;
        border-bottom: 1px solid #c8dcd6;
    }

    .service-tab {
        border-right: 1px solid #c8dcd6;
    }

    .service-tab:nth-child(3) {
        border-bottom: 0;
    }

    .journey-grid::before {
        display: none;
    }

    .journey-step {
        min-height: 280px;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, .17);
    }

    .journey-step > span {
        margin-bottom: 28px;
    }

    .international-features {
        max-width: 680px;
    }

    .team-showcase,
    .team-showcase > img {
        min-height: 590px;
        height: 590px;
    }

    .team-overlay {
        width: 62%;
        padding: 42px;
    }

    .footer-lead {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 45px 0;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 32px, 1240px);
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-mark img {
        width: 32px;
        height: 32px;
    }

    .brand strong {
        font-size: .86rem;
    }

    .brand small {
        font-size: .6rem;
    }

    .premium-hero {
        min-height: 548px;
        height: calc(100svh - 96px);
        max-height: 650px;
    }

    .premium-hero-image {
        object-position: 66% center;
    }

    .premium-hero-scrim {
        background: linear-gradient(90deg, rgba(3, 36, 33, .94) 0%, rgba(3, 36, 33, .82) 68%, rgba(3, 36, 33, .48));
    }

    .premium-hero-copy {
        width: 100%;
        padding: 44px 0 62px;
    }

    .premium-hero h1 {
        max-width: 420px;
        font-size: 2.75rem;
    }

    .premium-hero-copy > p {
        max-width: 420px;
        font-size: .95rem;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-assurance {
        gap: 9px 16px;
        margin-top: 21px;
        font-size: .7rem;
    }

    .hero-assurance span:nth-child(2) {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .care-ribbon-grid,
    .journey-grid,
    .wellness-features,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .care-ribbon-item,
    .care-ribbon-item:first-child {
        min-height: 112px;
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .care-ribbon-item {
        grid-template-columns: 76px 1fr 18px;
        padding: 18px 14px;
    }

    .service-thumb {
        width: 76px;
        height: 76px;
    }

    .care-ribbon-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 76px 0;
    }

    .section h2,
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .intro-copy .lead,
    .intro-content .lead,
    .wellness-copy .lead {
        font-size: 1.05rem;
    }

    .assurance-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 52px;
    }

    .assurance-stats > div,
    .assurance-stats > div:first-child,
    .assurance-stats > div:nth-child(2) {
        min-height: 116px;
        padding: 20px 12px;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .assurance-stats > div:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .14);
    }

    .assurance-stats > div:nth-child(n + 3) {
        border-bottom: 0;
    }

    .intro-visual > img {
        height: 430px;
    }

    .intro-visual::before {
        display: none;
    }

    .intro-image-caption {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .assurance-stats > div {
        min-height: 150px;
        grid-template-columns: 38px 1fr;
        gap: 11px;
        padding: 18px 14px;
    }

    .assurance-stats > div > svg {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .assurance-stats strong {
        font-size: 1.85rem;
    }

    .assurance-stats small {
        font-size: .72rem;
    }

    .service-tabs {
        grid-template-columns: 1fr;
    }

    .service-tab,
    .service-tab:nth-child(3) {
        min-height: 94px;
        border-right: 0;
        border-bottom: 1px solid #c8dcd6;
    }

    .service-tab:last-child {
        border-bottom: 0;
    }

    .service-panel {
        grid-template-columns: 1fr;
    }

    .service-panel > img {
        min-height: 280px;
        height: 280px;
    }

    .service-panel-content {
        padding: 30px 24px;
    }

    .journey-heading {
        margin-bottom: 38px;
    }

    .journey-step {
        min-height: auto;
    }

    .diagnostics-image img,
    .wellness-image img {
        aspect-ratio: 1 / 1.05;
    }

    .image-note,
    .wellness-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .diagnostics-image::before,
    .wellness-image::before {
        display: none;
    }

    .international-features {
        grid-template-columns: 1fr;
    }

    .international-features article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .international-features article:last-child {
        border-bottom: 0;
    }

    .international-features svg {
        margin-bottom: 28px;
    }

    .team-showcase,
    .team-showcase > img {
        min-height: 560px;
        height: 560px;
    }

    .team-showcase > img {
        object-position: 62% center;
    }

    .team-showcase::after {
        background: linear-gradient(0deg, rgba(4, 43, 40, .94) 0%, rgba(4, 43, 40, .7) 50%, rgba(4, 43, 40, .06) 82%);
    }

    .team-overlay {
        top: auto;
        width: 100%;
        height: auto;
        padding: 28px 24px;
    }

    .team-overlay h3 {
        font-size: 1.43rem;
    }

    .testimonial-stage {
        min-height: 430px;
    }

    .testimonial {
        padding: 32px 26px;
    }

    .testimonial blockquote {
        font-size: 1.35rem;
    }

    .booking-card,
    .form-card,
    .card {
        padding: 25px;
    }

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

    .form-group.full {
        grid-column: auto;
    }

    .footer-lead h2 {
        font-size: 2rem;
    }

    .footer-lead .btn {
        width: 100%;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .page-hero {
        padding: 58px 0;
    }

    .service-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .clinic-chat {
        right: 12px;
        bottom: 12px;
    }

    .chat-launcher {
        width: 204px;
        min-height: 58px;
        grid-template-columns: 38px 1fr;
        gap: 9px;
        padding: 8px 24px 8px 9px;
    }

    .chat-launcher-icon {
        width: 38px;
        height: 38px;
    }

    .chat-launcher-icon svg {
        width: 21px;
        height: 21px;
    }

    .chat-launcher-copy strong {
        font-size: .74rem;
    }

    .chat-launcher-copy small {
        font-size: .59rem;
    }

    .chat-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 78px;
        width: auto;
        height: min(640px, calc(100dvh - 94px));
    }

    .chat-messages {
        padding: 15px 13px 19px;
    }

    .chat-message {
        max-width: 91%;
    }

    .chat-quick-replies button {
        min-height: 37px;
    }

    .reveal-on-scroll.will-reveal[data-reveal="left"],
    .reveal-on-scroll.will-reveal[data-reveal="right"] {
        transform: translateY(32px);
    }
}

@media (max-width: 1120px) {
    .inner-hero h1 {
        font-size: 3.25rem;
    }

    .inner-hero-copy {
        width: min(720px, 72%);
    }

    .editorial-split,
    .service-index-layout,
    .care-standards-grid {
        gap: 60px;
    }

    .department-directory-grid,
    .clinical-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .appointment-layout,
    .contact-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 930px) {
    .inner-hero,
    .inner-hero-inner {
        min-height: 600px;
    }

    .inner-hero-copy {
        width: min(720px, 86%);
    }

    .inner-hero-facts {
        width: 100%;
    }

    .editorial-split,
    .service-index-layout,
    .care-standards-grid,
    .appointment-layout,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .editorial-heading {
        position: static;
    }

    .editorial-copy {
        padding: 26px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .feature-band {
        grid-template-columns: 1fr;
    }

    .feature-band-image,
    .feature-band-image img {
        min-height: 470px;
        height: 470px;
    }

    .feature-band-copy {
        padding: 48px;
    }

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

    .pathway-grid article:nth-child(2) {
        border-right: 0;
    }

    .pathway-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .service-safety-inner {
        grid-template-columns: 52px 1fr;
    }

    .service-safety-inner .btn {
        grid-column: 2;
        justify-self: start;
    }

    .contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .contact-channel {
        min-height: 130px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .contact-channel:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .inner-hero,
    .inner-hero-inner {
        min-height: 640px;
    }

    .inner-hero-image {
        object-position: 62% center;
    }

    .inner-hero-scrim,
    .inner-hero-scrim-strong {
        background: rgba(3, 35, 32, .76);
    }

    .inner-hero-inner {
        padding-top: 45px;
        padding-bottom: 18px;
    }

    .inner-hero-copy {
        width: 100%;
    }

    .inner-hero h1 {
        font-size: 2.4rem;
        line-height: 1.08;
    }

    .inner-hero-copy > p {
        font-size: .9rem;
    }

    .inner-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .inner-hero-actions .btn {
        width: 100%;
    }

    .inner-hero-facts span {
        min-height: 72px;
        padding: 10px;
    }

    .inner-hero-facts strong {
        font-size: .72rem;
    }

    .inner-hero-facts small {
        font-size: .56rem;
        line-height: 1.25;
    }

    .editorial-heading h2,
    .service-category-heading h2 {
        font-size: 2.05rem;
    }

    .editorial-copy .lead {
        font-size: 1.03rem;
    }

    .principle-grid,
    .audience-grid,
    .service-directory-grid,
    .department-directory-grid,
    .clinical-team-grid,
    .appointment-steps {
        grid-template-columns: 1fr;
    }

    .principle-card,
    .audience-grid article,
    .appointment-steps article {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .audience-grid article {
        border-bottom-color: rgba(255, 255, 255, .16);
    }

    .principle-card:last-child,
    .audience-grid article:last-child,
    .appointment-steps article:last-child {
        border-bottom: 0;
    }

    .principle-card svg,
    .audience-grid svg {
        margin-bottom: 28px;
    }

    .feature-band-image,
    .feature-band-image img {
        min-height: 380px;
        height: 380px;
    }

    .feature-band-copy {
        padding: 34px 24px;
    }

    .feature-band-copy h2,
    .care-standards-grid > div:first-child h2 {
        font-size: 2rem;
    }

    .service-index-section {
        padding: 58px 0;
    }

    .service-directory-card,
    .department-directory-card,
    .clinical-team-card {
        min-height: 0;
        padding: 25px;
    }

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

    .pathway-grid article,
    .pathway-grid article:nth-child(2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .pathway-grid article:last-child {
        border-bottom: 0;
    }

    .compact-cta {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        padding: 31px 24px;
    }

    .compact-cta h2 {
        font-size: 1.62rem;
    }

    .compact-cta .btn {
        width: 100%;
    }

    .service-safety-inner {
        grid-template-columns: 1fr;
    }

    .service-safety-inner .btn {
        grid-column: auto;
        width: 100%;
    }

    .appointment-form-shell,
    .contact-form-shell,
    .visit-checklist,
    .contact-visit,
    .urgent-contact-panel {
        padding: 25px;
    }

    .form-shell-heading h2 {
        font-size: 1.68rem;
    }

    .contact-channel {
        grid-template-columns: 34px 1fr;
        padding: 24px 12px;
    }

    .contact-channel strong,
    .contact-channel em {
        overflow-wrap: anywhere;
    }

    .contact-map-section,
    .contact-map {
        min-height: 540px;
        height: 540px;
    }

    .contact-map-caption {
        right: 12px;
        bottom: 14px;
        left: 12px;
        width: auto;
        grid-template-columns: 32px 1fr;
        padding: 16px;
    }

    .contact-map-caption a {
        grid-column: 2;
    }
}

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

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
