@font-face {
    font-family: "Titillium Web";
    src: url("../fonts/NaPecZTIAOhVxoMyOr9n_E7fdMPmDQ.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Titillium Web";
    src: url("../fonts/NaPDcZTIAOhVxoMyOr9n_E7ffHjDGItzYw.woff2") format("woff2");
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
}

@font-face {
    font-family: "Catamaran";
    src: url("../fonts/Catamaran-Variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 500 800;
    font-display: swap;
}

@font-face {
    font-family: "Font Awesome 5 Free";
    src: url("../fonts/FontAwesome5Solid.woff") format("woff");
    font-style: normal;
    font-weight: 900;
    font-display: block;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    src: url("../fonts/FontAwesome5Brands.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: block;
}

:root {
    --blue: #104099;
    --blue-dark: #0a2c6d;
    --aqua: #78c6c2;
    --green: #00af89;
    --green-dark: #00856a;
    --ink: #223047;
    --muted: #637083;
    --line: #dce5ec;
    --soft: #f4f8fa;
    --white: #fff;
    --danger: #b42318;
    --success: #067647;
    --shadow: 0 18px 45px rgba(16, 64, 153, .11);
    --shadow-sm: 0 8px 24px rgba(16, 64, 153, .09);
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --container: 75rem;
    --header-height: 5.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
iframe { border: 0; }
a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--green-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
    margin: 0 0 .85rem;
    color: var(--blue-dark);
    font-family: "Catamaran", "Titillium Web", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.14;
    text-wrap: balance;
}
h1 { font-size: clamp(2.45rem, 6vw, 4.8rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4.3vw, 3.2rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.65rem); }
p { margin: 0 0 1rem; }
ul, ol { margin-top: 0; }
:focus-visible { outline: .2rem solid #ffbf47; outline-offset: .2rem; }
::selection { color: var(--white); background: var(--blue); }

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 10000;
    padding: .7rem 1rem;
    color: var(--white);
    background: var(--blue-dark);
    border-radius: .5rem;
    transform: translateY(-200%);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-soft { background: var(--soft); }
.section-blue { color: rgba(255,255,255,.9); background: var(--blue-dark); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-heading { max-width: 48rem; margin-bottom: 2.5rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { max-width: 43rem; color: var(--muted); font-size: 1.15rem; }
.section-heading.center p { margin-inline: auto; }
.section-blue .section-heading p { color: rgba(255,255,255,.78); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .75rem;
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow::before { width: 1.8rem; height: .16rem; content: ""; background: currentColor; border-radius: 1rem; }
.eyebrow-light { color: var(--aqua); }
.lead { color: var(--muted); font-size: clamp(1.15rem, 2.3vw, 1.35rem); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .78rem 1.35rem;
    border: .12rem solid transparent;
    border-radius: .55rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); }
.button-primary:hover { color: var(--white); background: var(--blue-dark); }
.button-secondary { color: var(--white); background: var(--green-dark); }
.button-secondary:hover { color: var(--white); background: #006d58; }
.button-white { color: var(--blue-dark); background: var(--white); }
.button-white:hover { color: var(--blue-dark); background: #eaf9f7; }
.button-outline { color: var(--blue); border-color: var(--blue); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--blue); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.75); }
.button-outline-light:hover { color: var(--blue-dark); background: var(--white); }
.button-small { min-height: 2.6rem; padding: .65rem 1rem; font-size: .95rem; }
.text-link { display: inline-flex; gap: .45rem; align-items: center; font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(.25rem); }

.icon { font-family: "Font Awesome 5 Free"; font-style: normal; font-weight: 900; }
.icon-phone::before { content: "\f095"; }
.icon-envelope::before { content: "\f0e0"; }
.icon-whatsapp::before { content: "\f232"; }
.icon-whatsapp { font-family: "Font Awesome 5 Brands"; font-weight: 400; }
.icon-calendar::before { content: "\f073"; }
.icon-location::before { content: "\f3c5"; }
.icon-shield::before { content: "\f3ed"; }
.icon-syringe::before { content: "\f48e"; }
.icon-drop::before { content: "\f043"; }
.icon-stethoscope::before { content: "\f0f1"; }
.icon-hospital::before { content: "\f0f8"; }
.icon-file::before { content: "\f15c"; }
.icon-check::before { content: "\f00c"; }
.icon-arrow::before { content: "\f061"; }

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 0 rgba(16,64,153,.12); }
.header-contact { color: var(--white); background: var(--blue-dark); font-size: .88rem; }
.header-contact__inner { display: flex; min-height: 2.25rem; align-items: center; justify-content: space-between; gap: 1rem; }
.header-contact__links { display: flex; gap: 1.25rem; }
.header-contact a { display: inline-flex; align-items: center; gap: .4rem; color: var(--white); text-decoration: none; }
.nav-shell { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { flex: 0 0 auto; }
.brand img { width: clamp(12rem, 20vw, 16.5rem); max-height: 4.2rem; object-fit: contain; object-position: left center; }
.nav-toggle { display: none; min-height: 2.8rem; align-items: center; gap: .7rem; color: var(--blue-dark); border: 0; background: transparent; font-weight: 700; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after { display: block; width: 1.55rem; height: .14rem; content: ""; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -.48rem; }
.nav-toggle__bars::after { position: absolute; top: .48rem; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }
.primary-nav { display: flex; align-items: center; gap: 1.1rem; }
.primary-nav > ul { display: flex; margin: 0; padding: 0; align-items: center; gap: .2rem; list-style: none; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { padding: 1.8rem .68rem; color: var(--ink); font-size: .97rem; font-weight: 700; text-decoration: none; }
.nav-item > a:hover, .nav-item > a[aria-current="page"] { color: var(--blue); }
.nav-item > a[aria-current="page"]::after { position: absolute; right: .7rem; bottom: 1rem; left: .7rem; height: .16rem; content: ""; background: var(--green); border-radius: 1rem; }
.submenu-toggle { display: inline-grid; width: 1.6rem; height: 1.8rem; margin-left: -.55rem; place-items: center; color: var(--muted); border: 0; background: transparent; }
.submenu { position: absolute; top: calc(100% - .6rem); left: .4rem; min-width: 15.5rem; margin: 0; padding: .55rem; list-style: none; background: var(--white); border: 1px solid var(--line); border-radius: .75rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(.5rem); transition: opacity .18s, transform .18s, visibility .18s; }
.submenu a { display: block; padding: .68rem .75rem; color: var(--ink); border-radius: .45rem; text-decoration: none; }
.submenu a:hover { color: var(--blue); background: var(--soft); }
.has-submenu:hover > .submenu, .has-submenu:focus-within > .submenu, .has-submenu.is-open > .submenu { opacity: 1; visibility: visible; transform: none; }
.nav-book { white-space: nowrap; }

.hero { position: relative; min-height: clamp(38rem, 75vh, 48rem); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--blue-dark); }
.hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(7,32,82,.96) 0%, rgba(10,44,109,.83) 47%, rgba(10,44,109,.16) 78%); z-index: 1; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__content { position: relative; z-index: 2; max-width: 49rem; padding-block: clamp(5rem, 10vw, 8rem); }
.hero h1 { color: var(--white); }
.hero .lead { max-width: 44rem; color: rgba(255,255,255,.86); }
.hero__note { display: flex; margin-top: 1.6rem; align-items: center; gap: .7rem; font-size: .96rem; }
.hero__note .icon { display: grid; width: 2rem; height: 2rem; place-items: center; color: var(--blue-dark); background: var(--aqua); border-radius: 50%; }
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 8rem; display: flex; align-items: center; gap: .85rem; padding: 1.4rem; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--blue-dark); font-family: "Catamaran", sans-serif; font-size: 1.05rem; line-height: 1.3; }
.trust-item span:not(.icon) { color: var(--muted); font-size: .9rem; line-height: 1.35; }
.trust-item .icon { display: grid; width: 2.9rem; height: 2.9rem; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--green-dark); border-radius: .7rem; }

.page-hero { position: relative; color: var(--white); background: linear-gradient(115deg, var(--blue-dark), var(--blue) 68%, #1773aa); overflow: hidden; }
.page-hero::after { position: absolute; width: 28rem; height: 28rem; right: -9rem; bottom: -18rem; content: ""; border: 5rem solid rgba(120,198,194,.18); border-radius: 50%; }
.page-hero__inner { position: relative; z-index: 1; min-height: 21rem; display: grid; align-items: center; padding-block: 4rem; }
.page-hero__inner > div { max-width: 53rem; }
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.2rem); }
.page-hero p { max-width: 46rem; color: rgba(255,255,255,.85); font-size: 1.2rem; }

.card-grid { display: grid; gap: 1.25rem; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card, .resource-card, .info-card {
    padding: clamp(1.35rem, 3vw, 2rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.service-card { border-top: .28rem solid var(--green); }
.service-card__icon, .resource-card__icon { display: grid; width: 3.3rem; height: 3.3rem; margin-bottom: 1.2rem; place-items: center; color: var(--blue); background: #eaf4ff; border-radius: .8rem; font-size: 1.35rem; }
.service-card p, .resource-card p, .info-card p { color: var(--muted); }
.condition-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.condition-card img { width: 100%; height: 13.5rem; object-fit: cover; }
.condition-card__body { padding: 1.4rem; }
.condition-card__body p { color: var(--muted); }
.condition-detail { scroll-margin-top: 8rem; display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem; align-items: center; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.condition-detail img { width: 11rem; height: 9rem; object-fit: cover; border-radius: .7rem; }
.condition-detail p { margin: 0; color: var(--muted); }
.condition-list { display: grid; gap: 1rem; }
.symptom-list { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.symptom-list li { display: flex; align-items: center; gap: .55rem; padding: .68rem .9rem; color: var(--blue-dark); background: var(--white); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 4px 12px rgba(16,64,153,.05); }
.symptom-list .icon { color: var(--green-dark); font-size: .8rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-visual { position: relative; }
.split-visual img { width: 100%; min-height: 31rem; max-height: 39rem; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-visual::before { position: absolute; inset: -1rem 2.5rem 2.5rem -1rem; z-index: -1; content: ""; background: #dff4f2; border-radius: var(--radius-lg); }
.check-list { margin: 1.4rem 0 1.8rem; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: .7rem; padding-left: 1.8rem; }
.check-list li::before { position: absolute; left: 0; top: .12rem; color: var(--green-dark); font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f00c"; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat { padding: 1.15rem; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: .75rem; }
.stat strong { display: block; color: var(--blue); font-family: "Catamaran", sans-serif; font-size: 1.7rem; line-height: 1.2; }
.stat span { color: var(--muted); font-size: .9rem; }

.clinician-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.clinician-card { display: grid; grid-template-columns: minmax(12rem, 42%) 1fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.clinician-card__image { min-height: 25rem; background: linear-gradient(160deg, #dff4f2, #edf4ff); }
.clinician-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.clinician-card__content { padding: clamp(1.35rem, 3vw, 2.2rem); align-self: center; }
.clinician-card__content .eyebrow { font-size: .72rem; }
.qualifications { color: var(--blue); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.team-card img { width: 100%; height: 24rem; object-fit: cover; object-position: center top; background: var(--soft); }
.team-card__body { padding: 1.35rem; }
.team-card__body p { margin: 0; color: var(--green-dark); font-weight: 700; }

.location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.location-card { scroll-margin-top: 8rem; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.location-card__content { padding: 1.5rem; }
.location-card__content > .icon { display: grid; width: 2.8rem; height: 2.8rem; margin-bottom: 1rem; place-items: center; color: var(--white); background: var(--blue); border-radius: .7rem; }
.location-card__actions { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: 1.2rem; }
.location-card__actions a { overflow-wrap: anywhere; font-weight: 700; }
.map-frame { display: block; width: 100%; height: 19rem; background: var(--soft); border-top: 1px solid var(--line); }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.testimonial { position: relative; padding: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.testimonial::before { display: block; margin-bottom: .8rem; color: var(--aqua); font-family: Georgia, serif; font-size: 4.5rem; line-height: .7; content: "“"; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p { color: var(--ink); font-size: 1.1rem; }
.testimonial cite { color: var(--blue); font-style: normal; font-weight: 700; }

.faq-list { max-width: 58rem; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; padding: 1.3rem .25rem; align-items: center; justify-content: space-between; gap: 1rem; color: var(--blue-dark); text-align: left; border: 0; background: transparent; font-weight: 700; }
.faq-question::after { width: 2rem; height: 2rem; flex: 0 0 auto; display: grid; place-items: center; content: "+"; color: var(--white); background: var(--blue); border-radius: 50%; font-size: 1.35rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; background: var(--green-dark); }
.faq-answer { padding: 0 .25rem 1.4rem; color: var(--muted); }
.faq-answer[hidden] { display: none; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(18rem, .7fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.form-card { padding: clamp(1.3rem, 4vw, 2.5rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.form-field { display: grid; gap: .38rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-weight: 700; }
.form-field .required { color: var(--danger); }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 3.25rem; padding: .72rem .85rem; color: var(--ink); background: var(--white); border: 1px solid #b8c6d2; border-radius: .5rem; }
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: .18rem solid rgba(0,175,137,.25); border-color: var(--green-dark); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field-hint { margin: 0; color: var(--muted); font-size: .88rem; }
.form-status { min-height: 1.5rem; margin: 1rem 0; padding: .8rem 1rem; border-radius: .5rem; }
.form-status:empty { min-height: 0; margin: 0; padding: 0; }
.form-status.is-success { color: var(--success); background: #ecfdf3; border: 1px solid #abefc6; }
.form-status.is-error { color: var(--danger); background: #fef3f2; border: 1px solid #fecdca; }
.form-status.is-loading { color: var(--blue-dark); background: #eff6ff; border: 1px solid #bfdbfe; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-sidebar { display: grid; gap: 1rem; }
.contact-detail { padding: 1.35rem; background: var(--soft); border-radius: var(--radius); }
.contact-detail h3 { font-size: 1.2rem; }
.contact-detail a { overflow-wrap: anywhere; font-weight: 700; }
.recaptcha-wrap { min-height: 78px; overflow: hidden; }

.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; align-items: center; }
.logo-tile { width: 10.5rem; height: 6rem; display: grid; padding: .8rem; place-items: center; background: var(--white); border: 1px solid var(--line); border-radius: .7rem; }
.logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-grid { columns: 3 18rem; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin: 0 0 1rem; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.gallery-item img { width: 100%; max-height: 27rem; object-fit: cover; }
.gallery-item figcaption { padding: 1rem; color: var(--muted); font-size: .95rem; }
.notice { padding: 1.15rem 1.25rem; color: #533f03; background: #fff9e8; border: 1px solid #f5d97b; border-radius: .75rem; }
.notice strong { color: #443300; }

.cta-band { padding: clamp(3rem, 6vw, 4.5rem) 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, var(--blue-dark), var(--blue)); }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 43rem; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band__inner > div:first-child { max-width: 49rem; }
.cta-band .button-row { justify-content: flex-end; }
.site-footer { padding: 4rem 0 1rem; color: rgba(255,255,255,.74); background: #071d42; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { width: 15rem; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-about p { max-width: 27rem; }
.medical-note { font-size: .9rem; }
.site-footer h2 { color: var(--white); font-size: 1.15rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.86); text-decoration-color: rgba(255,255,255,.35); }
.site-footer a:hover { color: var(--aqua); }
.footer-bottom { display: flex; margin-top: 3rem; padding-top: 1.2rem; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .88rem; }
.footer-bottom p { margin: 0; }
.footer-social { display: flex; flex-wrap: wrap; gap: .85rem; }
.whatsapp-float { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 850; width: 3.5rem; height: 3.5rem; display: grid; place-items: center; color: var(--white); background: #087f5b; border: .18rem solid var(--white); border-radius: 50%; box-shadow: var(--shadow); text-decoration: none; font-size: 1.45rem; }
.whatsapp-float:hover { color: var(--white); background: #066c4d; }
.mobile-actions { display: none; }

.reveal { transition: opacity .55s ease, transform .55s ease; }
.reveal:not(.is-visible) { opacity: 0; transform: translateY(1rem); }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal:not(.is-visible) { opacity: 1; transform: none; }
}

@media (max-width: 70rem) {
    .header-contact__inner > span { display: none; }
    .header-contact__inner { justify-content: flex-end; }
    .nav-toggle { display: flex; }
    .primary-nav { position: fixed; inset: calc(2.25rem + var(--header-height)) 0 0; display: block; padding: 1rem; overflow-y: auto; color: var(--ink); background: var(--white); opacity: 0; visibility: hidden; transform: translateX(100%); transition: transform .25s, opacity .25s, visibility .25s; }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .primary-nav > ul { display: block; }
    .nav-item { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line); }
    .nav-item > a { padding: 1rem .35rem; }
    .nav-item > a[aria-current="page"]::after { display: none; }
    .submenu-toggle { width: 3rem; height: 3rem; margin: 0; }
    .submenu { position: static; grid-column: 1 / -1; display: none; min-width: 0; padding: 0 0 .6rem .75rem; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .has-submenu.is-open > .submenu { display: block; }
    .submenu a { padding: .6rem .5rem; }
    .nav-book { width: 100%; margin-top: 1rem; }
    .clinician-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 55rem) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(odd) { border-left: 1px solid var(--line); }
    .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; }
    .split-visual { max-width: 39rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .form-layout { grid-template-columns: 1fr; }
    .cta-band__inner { display: grid; }
    .cta-band .button-row { justify-content: flex-start; }
}

@media (max-width: 42rem) {
    body { padding-bottom: 4.1rem; font-size: 1rem; }
    .container { width: min(calc(100% - 1.25rem), var(--container)); }
    .header-contact__links a:nth-child(2) { display: none; }
    .nav-shell { min-height: 4.5rem; }
    :root { --header-height: 4.5rem; }
    .brand img { width: 12rem; max-height: 3.5rem; }
    .nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .hero { min-height: 39rem; }
    .hero::before { background: linear-gradient(90deg, rgba(7,32,82,.94), rgba(10,44,109,.68)); }
    .hero__content { padding-block: 4.5rem; }
    .hero .button-row .button { width: 100%; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item, .trust-item:first-child, .trust-item:nth-child(odd) { min-height: 0; border: 0; border-bottom: 1px solid var(--line); }
    .card-grid-2, .card-grid-3, .card-grid-4, .location-grid, .testimonial-grid, .team-grid { grid-template-columns: 1fr; }
    .clinician-card { grid-template-columns: 1fr; }
    .clinician-card__image { min-height: 21rem; max-height: 29rem; }
    .condition-detail { grid-template-columns: 1fr; }
    .condition-detail img { width: 100%; height: 12rem; }
    .stats { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field-full { grid-column: auto; }
    .team-card img { height: 27rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { display: grid; }
    .whatsapp-float { display: none; }
    .mobile-actions { position: fixed; inset: auto 0 0; z-index: 900; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 4.1rem; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(16,64,153,.12); }
    .mobile-actions a { display: grid; place-content: center; gap: .08rem; color: var(--blue-dark); font-size: .78rem; font-weight: 700; text-align: center; text-decoration: none; }
    .mobile-actions a:nth-child(2) { color: var(--white); background: var(--green-dark); }
    .mobile-actions a:nth-child(3) { color: var(--white); background: var(--blue); }
    .mobile-actions .icon { font-size: 1rem; }
    .gallery-grid { columns: 1; }
    .recaptcha-wrap .g-recaptcha { width: 114%; transform: scale(.88); transform-origin: left top; }
}

@media (max-width: 22rem) {
    .header-contact__links { width: 100%; justify-content: center; }
    .brand img { width: 10.5rem; }
    .nav-toggle { padding-inline: .4rem; }
    .recaptcha-wrap .g-recaptcha { width: 128%; transform: scale(.78); }
}

/* Audit improvements: readable type, stable controls and policy content. */
body { font-size: 1.125rem; }
.nav-item > a { font-size: 1rem; }
.button:hover { transform: none; }
.header-social { display: flex; gap: .35rem; }
.header-social a { width: 2.75rem; min-height: 2.75rem; justify-content: center; }
.social-symbol { font-family: "Font Awesome 5 Brands"; }
.social-facebook::before { content: "\f09a"; }
.social-x::before { content: "\f099"; }
.social-linkedin::before { content: "\f08c"; }
.social-instagram::before { content: "\f16d"; }
.affiliation-heading { font-size: 1.3rem; text-align: center; }
.section-followup { margin-top: 1.5rem; }
.review-source { margin-top: .65rem; font-size: .9rem; color: var(--muted); }
.footer-bottom { flex-wrap: wrap; }
.footer-policies { display: flex; flex-wrap: wrap; gap: 1rem; width: 100%; }
.consent-label { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; font-weight: 400; }
.consent-label input[type="checkbox"] { flex: 0 0 auto; width: 1.25rem; height: 1.25rem; min-height: 0; margin-top: .25rem; accent-color: var(--blue); }
.policy-content { max-width: 52rem; }
.policy-content h2 { margin-top: 2rem; font-size: 1.65rem; }
.practice-number { font-weight: 600; }
@media (max-width: 42rem) {
 body { font-size: 1rem; }
 .header-contact__inner { justify-content: space-between; gap: .4rem; }
 .header-social { gap: 0; }
 .header-social a { width: 2rem; }
 .mobile-actions a:nth-child(2), .mobile-actions a:nth-child(3) { color: var(--blue-dark); background: var(--white); }
 .faq-question { font-size: 1.15rem; overflow-wrap: anywhere; }
 .cta-band .button-row, .cta-band .button { width: 100%; }
}

.header-contact__inner { min-height: 2.75rem; }
@media (max-width: 70rem) { .primary-nav { inset: calc(2.75rem + var(--header-height)) 0 0; } }

.page-hero .eyebrow { color: #fff; }
