:root {
    --bg: #f8fbff;
    --surface: #ffffff;
    --ink: #061f4a;
    --muted: #35527a;
    --line: #dce9f8;
    --blue: #0647b4;
    --blue-dark: #062d82;
    --aqua: #e9f4ff;
    --green: #2a8f70;
    --shadow: 0 26px 70px rgba(6, 45, 130, 0.14);
    --soft-shadow: 0 18px 48px rgba(6, 45, 130, 0.1);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Figtree", Arial, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 64px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: clamp(184px, 16vw, 238px);
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--blue-dark);
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.main-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.22s ease;
    vertical-align: middle;
    position: relative;
    top: -1px;
    flex-shrink: 0;
}

.nav-dropdown[open] summary::after {
    transform: rotate(-135deg);
    top: 3px;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary[aria-current="page"] {
    color: var(--blue-dark);
    background: var(--aqua);
}

.nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    min-width: 260px;
    display: grid;
    gap: 4px;
    padding: 8px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.nav-menu a {
    justify-content: flex-start;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--blue-dark);
    background: var(--aqua);
}

.main-nav .nav-cta {
    color: white;
    background: var(--blue-dark);
    border-radius: 999px;
    padding-inline: 22px;
}

.main-nav .nav-cta::after {
    content: "->";
    margin-left: 10px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 64px) 48px;
}

.home-hero {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    min-height: calc(100vh - 126px);
    align-items: start;
    overflow: hidden;
    padding: clamp(20px, 2.5vw, 32px) clamp(20px, 6vw, 80px) clamp(20px, 3vw, 32px);
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(232, 244, 255, 0.88) 30%, rgba(226, 240, 255, 0.36) 52%, rgba(6, 31, 74, 0.06) 100%),
        url("assets/hero-h2.png") 55% 30% / cover no-repeat;
}

/* Hero photo — desktop: hidden; mobile: shown in split layout */
.hero-photo { display: none; }

.h1-accent {
    font-style: normal;
    color: #1a6eb5;
}

.home-hero::after {
    content: none;
}

.home-hero > * {
    position: relative;
    z-index: 1;
}

.hero-curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    width: 100%;
    height: clamp(150px, 14vw, 208px);
    display: none;
    pointer-events: none;
}

.hero-curve path {
    fill: white;
}

.home-hero .hero-copy {
    max-width: 760px;
    margin-top: 0;
}

.home-hero h1 {
    max-width: 19ch;
    font-size: clamp(2.45rem, 3.6vw, 3.65rem);
    line-height: 1.08;
}

.pill-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 15px;
    border: 1px solid #8ab7ff;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill-label svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-hero .lead {
    max-width: 54ch;
    margin-top: 18px;
    color: #284166;
    font-size: clamp(1.05rem, 1.3vw, 1.18rem);
}

.hero-location {
    max-width: 72ch;
    margin: 12px 0 0;
    color: var(--blue-dark);
    font-weight: 800;
}

.home-hero .button-row {
    margin-top: 22px;
}

.home-hero .hero-assurance {
    display: none;
}

.hero-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
    color: var(--ink);
    font-size: 0.88rem;
}

.hero-assurance > span {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding-right: 16px;
    border-right: 1px solid rgba(6, 45, 130, 0.2);
}

.hero-assurance > span:last-child {
    border-right: 0;
}

.hero-assurance svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-assurance strong {
    display: block;
}

.hero-copy,
.page-hero,
.contact-layout {
    max-width: 1180px;
}

.contact-simple {
    display: flex;
    justify-content: center;
    padding: 0 24px 80px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    border: 2px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.contact-email-link:hover {
    background: var(--blue);
    color: #fff;
}

.page-hero--centered {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
}
.page-hero--centered h1 {
    max-width: none;
    font-size: clamp(2rem, 3.5vw, 3rem);
}
.page-hero--centered p {
    max-width: none;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.04;
}

h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
    font-size: 1.35rem;
}

.lead,
.page-hero p,
.intro-grid p,
.feature-slab p,
.contact-layout p {
    max-width: 64ch;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button.primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    box-shadow: 0 16px 30px rgba(6, 45, 130, 0.22);
}

.button.secondary {
    background: white;
    color: var(--blue-dark);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.hero-media {
    display: grid;
    gap: 16px;
}

.image-slot {
    min-height: 260px;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(216, 242, 255, 0.95), rgba(255, 255, 255, 0.72)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(13, 94, 168, 0.08) 18px 20px);
    border: 2px dashed #8cc7eb;
    border-radius: var(--radius);
    color: var(--blue-dark);
    font-weight: 800;
    text-align: center;
}

.image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    display: block;
}

.image-slot:has(img) {
    background: none;
    border: none;
    padding: 0;
    overflow: hidden;
}

.image-slot.tall {
    min-height: 520px;
}

.image-slot.wide {
    min-height: 360px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.trust-strip span {
    display: grid;
    gap: 4px;
    min-height: 86px;
    align-content: center;
    padding: 16px;
    background: white;
    color: var(--muted);
    font-size: 0.9rem;
}

.trust-strip strong {
    color: var(--blue-dark);
    font-size: 1.25rem;
}

.metric-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 clamp(20px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
}

.metric-band div {
    padding: 28px;
    border-right: 1px solid var(--line);
}

.metric-band div:last-child {
    border-right: 0;
}

.metric-band strong,
.metric-band span {
    display: block;
}

.metric-band strong {
    color: var(--blue);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1;
}

.metric-band span {
    color: var(--muted);
    margin-top: 8px;
}

.section.service-intro {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: clamp(42px, 5vw, 68px);
    padding-bottom: clamp(28px, 3vw, 42px);
    text-align: center;
    background: transparent;
}

.section.service-intro::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 -120px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 62%, var(--bg) 100%);
}

.service-intro h2 {
    max-width: 32ch;
    margin: 0 auto;
    font-size: clamp(2.1rem, 3.4vw, 3.55rem);
    line-height: 1.02;
}

.intro-mark {
    display: block;
    width: 138px;
    height: 30px;
    margin: -6px auto 4px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-preview.home-service-cards {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto 32px;
    padding-inline: clamp(20px, 4vw, 32px);
    overflow: visible;
    background: transparent;
    border: 0;
}

.service-preview.home-service-cards article {
    display: grid;
    grid-template-rows: 72px 42px minmax(82px, auto) auto;
    align-items: start;
    min-height: 302px;
    padding: 30px 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--soft-shadow);
}

.service-icon,
.stat-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    margin-bottom: 0;
    border-radius: 50%;
    background: #edf5ff;
    color: var(--blue);
    font-weight: 800;
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.72), 0 12px 26px rgba(6, 45, 130, 0.08);
}

.service-icon svg,
.stat-icon svg {
    display: block;
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

.service-preview.home-service-cards h3 {
    white-space: nowrap;
    font-family: "Figtree", Arial, sans-serif;
    font-size: clamp(1.2rem, 1.4vw, 1.45rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.service-preview.home-service-cards p {
    margin-top: 0;
}

.service-preview.home-service-cards .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    text-decoration: none;
}

.home-service-cards .text-link::after {
    content: "→";
}

.home-clinics {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto clamp(44px, 6vw, 72px);
    padding-top: clamp(44px, 6vw, 72px);
    padding-bottom: clamp(44px, 6vw, 72px);
}

.home-clinics-copy h2,
.governance-copy h2,
.service-areas-section h2 {
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.08;
}

.home-clinics-copy p,
.governance-copy p {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.clinic-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.clinic-feature-grid article {
    min-height: 132px;
    display: grid;
    align-content: space-between;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--soft-shadow);
}

.clinic-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.clinic-feature-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #edf5ff;
    color: var(--blue);
}

.clinic-feature-icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.clinic-feature-number {
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.clinic-feature-grid h3 {
    font-family: "Figtree", Arial, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    font-weight: 800;
    line-height: 1.22;
}

.service-areas-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto clamp(44px, 6vw, 76px);
    padding: 34px clamp(22px, 4vw, 38px);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.area-list li {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #b9d4fb;
    border-radius: 999px;
    background: #f2f7ff;
    color: var(--blue-dark);
    font-weight: 800;
}

.home-stats {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto clamp(44px, 6vw, 76px);
    padding: 26px 28px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #064fc0, #06348f);
    box-shadow: 0 28px 54px rgba(6, 45, 130, 0.24);
}

.home-stats div {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 16px;
    padding: 0 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.home-stats .stat-icon {
    display: inline-grid;
    place-items: center;
    grid-row: 1 / 3;
    margin: 0;
    background: white;
    color: var(--blue);
    width: 62px;
    height: 62px;
    box-shadow: none;
}

.home-stats .stat-icon svg {
    width: 30px;
    height: 30px;
}

.home-stats strong {
    color: white;
    font-family: "Figtree", Arial, sans-serif;
    font-size: clamp(2.05rem, 3vw, 3.05rem);
}

.home-stats span {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.trust-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
    padding-top: 32px;
}

.trust-copy h2 {
    max-width: 12ch;
}

.trust-copy p {
    max-width: 50ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.trust-media {
    position: relative;
}

.trust-media .image-slot {
    border: 0;
    border-radius: 22px;
    min-height: 360px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(6, 45, 130, 0.08)),
        url("assets/home-trust.png") center / cover no-repeat;
    box-shadow: var(--soft-shadow);
}

.trust-media .image-slot span {
    display: none;
}

.trust-media blockquote {
    position: absolute;
    right: -14px;
    bottom: -14px;
    max-width: 260px;
    margin: 0;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.trust-media blockquote::before {
    content: "''";
    color: var(--blue);
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.7rem;
    line-height: 0.7;
}

.trust-media blockquote p {
    color: var(--ink);
    margin: 6px 0 14px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.trust-media cite {
    display: block;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    color: var(--muted);
    font-size: 0.9rem;
    font-style: normal;
}

.governance-section {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding-top: 24px;
}

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

.governance-grid article {
    min-height: 118px;
    display: grid;
    gap: 8px;
    align-content: center;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--soft-shadow);
}

.governance-grid article:last-child {
    grid-column: 1 / -1;
}

.governance-grid strong {
    color: var(--ink);
    font-size: 1rem;
}

.governance-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.standards-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 clamp(20px, 7vw, 104px) clamp(64px, 8vw, 104px);
    padding: 24px 32px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef6ff, #dcecff);
    color: var(--ink);
}

.standards-banner strong,
.standards-banner span {
    display: block;
}

.standards-banner span {
    color: var(--muted);
}

.section,
.page-hero,
.contact-layout {
    padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: clamp(28px, 6vw, 80px);
    align-items: end;
}

.service-preview,
.checks-grid,
.reason-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: 0 clamp(20px, 5vw, 64px) clamp(64px, 8vw, 104px);
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-preview article,
.checks-grid article,
.reason-list article {
    padding: 28px;
    background: white;
}

.number,
.reason-list span {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--blue);
    font-weight: 800;
}

.service-preview p,
.checks-grid p,
.reason-list p,
.service-detail p,
.service-detail li {
    color: var(--muted);
}

.feature-slab,
.team-band {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    background: #eaf6ff;
}

.text-link {
    color: var(--blue-dark);
    font-weight: 800;
}

.services-list {
    display: grid;
    gap: 24px;
    padding: 0 clamp(20px, 5vw, 64px) clamp(64px, 8vw, 104px);
}

.service-detail {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-detail.flip .image-slot {
    order: 2;
}

.service-detail ul {
    columns: 2;
    padding-left: 20px;
}

.service-detail .button {
    margin-top: 10px;
}

.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: center;
    padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
    background: #eaf6ff;
}

.service-hero p {
    max-width: 62ch;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.service-hero h1 {
    max-width: 14ch;
}

.service-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 24px;
    padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 64px);
}

.detail-panel {
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.detail-panel p,
.check-list {
    color: var(--muted);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    padding-left: 20px;
}

.related-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 clamp(20px, 5vw, 64px) clamp(64px, 8vw, 104px);
}

.related-services a {
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--blue-dark);
    font-weight: 800;
    text-decoration: none;
}

.clinic-hero {
    background: #eaf6ff;
}

.checks-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(40px, 5vw, 72px);
}

.source-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    gap: 40px;
    align-items: center;
}

.source-panel img {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 0.75fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.contact-cards a,
.contact-cards span {
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--blue-dark);
    font-weight: 800;
    text-decoration: none;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form label {
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 36px clamp(20px, 5vw, 64px);
    background: var(--ink);
    color: white;
}

.site-footer p,
.site-footer a,
.site-footer span {
    color: #c8def2;
}

.site-footer a {
    display: block;
}

@media (max-width: 920px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .home-hero,
    .trust-section,
    .home-clinics,
    .service-areas-section,
    .governance-section,
    .intro-grid,
    .feature-slab,
    .service-detail,
    .service-hero,
    .service-page,
    .source-panel,
    .team-band,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-detail.flip .image-slot {
        order: 0;
    }

    .service-preview,
    .checks-grid,
    .reason-list,
    .metric-band,
    .related-services,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .service-preview.home-service-cards {
        grid-template-columns: 1fr;
        max-width: min(100%, 520px);
        gap: 16px;
    }

    .metric-band div,
    .trust-strip span {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-hero {
        display: block;
        overflow: hidden;
        /* Height = scaled image height minus the upward raise — eliminates blue bleed */
        height: calc(100vw * 2.116 - 180px);
        min-height: 500px;
        max-height: 720px;
        padding: 20px 24px 0;
        background-color: #b8d0e8;
        background-image:
            linear-gradient(90deg, rgba(196,220,242,0.72) 0%, rgba(196,220,242,0.55) 50%, rgba(196,220,242,0) 72%),
            url('assets/hero-mobile-custom.png');
        background-position: center, center -180px;
        background-size: cover, cover;
        background-repeat: no-repeat, no-repeat;
    }

    .home-hero::after {
        content: none;
    }

    .hero-photo {
        display: none;
    }

    .home-hero .hero-copy {
        max-width: 58%;
    }

    .home-hero h1 {
        max-width: none;
        font-size: clamp(1.14rem, 4.8vw, 1.7rem);
        line-height: 1.14;
        color: #0c2340;
        margin-top: 28px;
    }

    .home-hero .h1-accent {
        color: #0c2340;
    }

    .home-hero .no-break {
        white-space: nowrap;
    }

    .home-hero .pill-label {
        display: inline-flex;
        white-space: nowrap;
    }

    .home-hero .lead {
        font-size: 0.82rem;
        line-height: 1.48;
        margin-top: 12px;
        color: #284166;
    }

    .home-hero .hero-location {
        font-size: 0.78rem;
        line-height: 1.35;
        margin-top: 8px;
    }

    .home-hero .button-row {
        margin-top: 24px;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .home-hero .button-row .button {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.82rem;
        justify-content: center;
        white-space: nowrap;
    }

    .home-hero .button-row .button svg {
        display: none;
    }

    .home-hero .button-row .button.secondary {
        background: #1a6eb5;
        color: #fff;
        border-color: #1a6eb5;
    }

    .home-hero .hero-assurance {
        display: none;
    }

    .hero-curve {
        height: 138px;
    }

    .section.service-intro {
        margin-top: 0;
        padding-top: 42px;
        padding-bottom: 24px;
    }

    .section.service-intro::before {
        inset: 0 0 -96px;
    }

    .hero-assurance {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .hero-assurance span {
        border-right: 0;
        padding-right: 0;
    }

    .home-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .home-stats div:last-child {
        border-bottom: 0;
    }

    .trust-media blockquote {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -42px 18px 0;
    }

    .standards-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .clinic-feature-grid,
    .governance-grid {
        grid-template-columns: 1fr;
    }

    .governance-grid article:last-child {
        grid-column: auto;
    }

    .service-areas-section {
        margin-inline: 20px;
    }

    .area-list {
        justify-content: flex-start;
    }

    h1 {
        max-width: 13ch;
    }
}

@media (max-width: 560px) {
    .main-nav {
        width: 100%;
    }

    .main-nav a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .nav-dropdown {
        flex: 1 1 100%;
    }

    .nav-dropdown summary {
        justify-content: center;
        width: 100%;
    }

    .nav-menu {
        position: static;
        margin-top: 8px;
        min-width: 0;
        width: 100%;
        box-shadow: none;
    }

    .hero {
        padding-top: 40px;
    }

    .home-hero h1 {
        max-width: none;
        font-size: clamp(1.12rem, 4.8vw, 1.58rem);
        line-height: 1.15;
    }

    .home-service-cards {
        margin-inline: 20px;
    }

    .home-stats {
        margin-inline: 20px;
        padding: 22px;
    }

    .home-stats div {
        grid-template-columns: 56px 1fr;
        padding: 18px 0;
    }

    .standards-banner {
        margin-inline: 20px;
    }

    .image-slot.tall {
        min-height: 320px;
    }

    .service-detail ul {
        columns: 1;
    }

    .check-list {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCEMENTS — transitions · animations · mobile nav · footer
═══════════════════════════════════════════════════════════════ */

/* ── Button transitions & hover states ──────────────────────── */

.button {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 56px rgba(6, 45, 130, 0.38);
}
.button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #b5cef7;
}

/* ── Nav link transitions ───────────────────────────────────── */

.main-nav a,
.nav-dropdown summary {
    transition: color 0.15s ease, background-color 0.15s ease;
}

/* Fix nav-cta hover — it was incorrectly inheriting the aqua bg */
.main-nav .nav-cta:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-1px);
}

/* ── Service card hover ─────────────────────────────────────── */

.service-preview.home-service-cards article {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-preview.home-service-cards article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #8ab7ff;
}
.service-icon {
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.service-preview.home-service-cards article:hover .service-icon {
    background: var(--blue);
    color: white;
    box-shadow: 0 10px 28px rgba(6, 71, 180, 0.3);
}
.service-preview.home-service-cards .text-link {
    transition: gap 0.15s ease, color 0.15s ease;
}
.service-preview.home-service-cards .text-link:hover {
    gap: 14px;
    color: var(--blue);
}

/* ── Stats band hover ───────────────────────────────────────── */

.home-stats div {
    transition: background-color 0.2s ease;
}
.home-stats div:hover {
    background: rgba(255, 255, 255, 0.06);
}
.home-stats .stat-icon {
    transition: transform 0.28s ease;
}
.home-stats div:hover .stat-icon {
    transform: scale(1.1) rotate(-4deg);
}

/* ── Standards banner CTA ───────────────────────────────────── */

.standards-banner .text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 700;
    color: var(--blue-dark);
    transition: gap 0.15s ease, color 0.15s ease;
}
.standards-banner .text-link:hover {
    gap: 12px;
    color: var(--blue);
}

/* ── Scroll reveal animations ───────────────────────────────── */

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

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: none;
}
.reveal.visible {
    animation: fadeSlideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal.d1 { animation-delay: 0.07s; }
.reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.25s; }
.reveal.d4 { animation-delay: 0.34s; }

/* ── Mobile hamburger button ────────────────────────────────── */

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
    /* Hamburger-first header layout */
    .site-header {
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: wrap;
        padding-block: 14px;
    }
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    /* Hidden nav — shown via JS toggle */
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 2px;
        padding: 12px 0 8px;
        margin-top: 12px;
        border-top: 1px solid var(--line);
        flex-wrap: nowrap;
    }
    .main-nav.is-open {
        display: flex;
    }
    .main-nav a {
        width: 100%;
        flex: none;
        justify-content: flex-start;
    }
    .nav-dropdown {
        width: 100%;
        flex: none;
    }
    .nav-dropdown summary {
        width: 100%;
        justify-content: flex-start;
    }
    .nav-menu {
        position: static;
        box-shadow: none;
        border: 0;
        background: var(--aqua);
        border-radius: 14px;
        margin-top: 4px;
        min-width: 0;
    }
    .main-nav .nav-cta {
        width: auto;
        align-self: flex-start;
        margin-top: 6px;
    }
}

@media (max-width: 560px) {
    /* Reset old wrapping behaviour — hamburger takes over */
    .main-nav a {
        flex: none;
        justify-content: flex-start;
    }
    .nav-dropdown {
        flex: none;
    }
    .nav-dropdown summary {
        justify-content: flex-start;
        width: 100%;
    }
}

/* ── Expanded footer ────────────────────────────────────────── */

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(120px, 1fr));
    gap: 48px;
    padding: 64px clamp(20px, 5vw, 64px) 36px;
}

.footer-brand p {
    margin: 14px 0 0;
    font-size: 0.9rem;
    color: rgba(200, 222, 242, 0.75);
    line-height: 1.65;
}

.footer-logo {
    display: block;
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.footer-col strong {
    display: block;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: #c8def2;
    text-decoration: none;
    padding: 4px 0;
    font-size: 0.92rem;
    transition: color 0.15s ease;
}
.footer-col a:hover {
    color: white;
}

.footer-col span {
    display: block;
    color: #c8def2;
    padding: 4px 0;
    font-size: 0.92rem;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.8rem;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 920px) {
    .site-footer {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-top: 48px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .site-footer {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
}

/* ── Standards banner shield icon ───────────────────────────── */

.banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(6, 71, 180, 0.1);
    color: var(--blue);
    overflow: hidden;
}

.banner-shield svg {
    display: block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
}


/* ── Credentials bar ────────────────────────────────────────── */
.credentials-bar {
    padding: clamp(32px, 4vw, 48px) clamp(20px, 5vw, 64px);
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.credentials-bar-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 20px;
}
.credentials-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: var(--bg);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.credential:hover {
    box-shadow: var(--soft-shadow);
    border-color: #b5cef7;
}
.credential-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
}
.credential-imc  { background: #e8f0ff; color: #0647b4; }
.credential-nmbi { background: #e6f4ee; color: #1e7a4e; }
.credential-garda{ background: #f0f0f8; color: #2c2c72; }
.credential-emblem svg { display: block; }
.credential-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    white-space: nowrap;
}
.credential-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
    white-space: nowrap;
}


/* ── Credentials bar ────────────────────────────────────────── */
.credentials-bar {
    padding: clamp(32px, 4vw, 48px) clamp(20px, 5vw, 64px);
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.credentials-bar-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 20px;
}
.credentials-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: var(--bg);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.credential:hover {
    box-shadow: var(--soft-shadow);
    border-color: #b5cef7;
}
.credential-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
}
.credential-imc  { background: #e8f0ff; color: #0647b4; }
.credential-nmbi { background: #e6f4ee; color: #1e7a4e; }
.credential-garda{ background: #f0f0f8; color: #2c2c72; }
.credential-emblem svg { display: block; }
.credential-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    white-space: nowrap;
}
.credential-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
    white-space: nowrap;
}

/* ── Credential emblem logo images ──────────────────────────── */
.credential-emblem {
    width: auto;
    min-width: 56px;
    height: 52px;
    padding: 6px 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--line);
}
.credential-emblem img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 90px;
    object-fit: contain;
}
.credential-imc, .credential-nmbi, .credential-garda {
    background: white;
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════ */

.about-hero {
    position: relative;
    padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 80px) clamp(80px, 10vw, 120px);
    background:
        linear-gradient(135deg, rgba(4, 14, 46, 0.97) 0%, rgba(6, 45, 130, 0.90) 50%, rgba(6, 45, 130, 0.72) 100%),
        url("assets/hero.png") center 25% / cover no-repeat;
    overflow: hidden;
}
.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.about-hero .pill-label {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}
.about-hero h1 {
    color: white;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    max-width: 18ch;
    margin: 24px 0 0;
}
.about-hero .lead {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 20px;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    max-width: 52ch;
}
.about-hero .button-row { margin-top: 36px; }
.button.about-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    transition: background 0.18s ease, transform 0.15s ease;
}
.button.about-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}
.clinics-hero .button.about-secondary svg { width: 18px; height: 18px; }

/* Pillars */
.about-pillars { background: white; }
.about-pillars-header {
    max-width: 600px;
    margin-bottom: clamp(40px, 5vw, 64px);
}
.about-pillars-header h2 {
    margin-top: 12px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pillar-card {
    padding: 36px 32px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #b5cef7;
}
.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #edf5ff;
    color: var(--blue);
    margin-bottom: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}
.pillar-card:hover .pillar-icon {
    background: var(--blue);
    color: white;
}
.pillar-card h3 {
    font-family: "Figtree", Arial, sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: var(--ink);
    line-height: 1.25;
}
.pillar-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.68;
    margin: 0;
}
@media (max-width: 720px) { .pillars-grid { grid-template-columns: 1fr; } }

/* Stats band */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 clamp(20px, 5vw, 64px) clamp(44px, 6vw, 76px);
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}
.about-stats div {
    background: white;
    padding: 32px 28px;
    display: grid;
    gap: 6px;
    transition: background 0.2s ease;
}
.about-stats div:hover { background: var(--aqua); }
.about-stats strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    color: var(--blue);
    line-height: 1;
}
.about-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}
@media (max-width: 560px) { .about-stats { grid-template-columns: 1fr; } }

/* Leadership */
.about-leadership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.leadership-copy h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.08;
}
.leadership-copy p {
    max-width: 50ch;
    color: var(--muted);
    margin: 16px 0 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.leadership-portraits { display: grid; gap: 16px; }
.portrait-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portrait-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.portrait-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aqua), #d4eaff);
    color: var(--blue);
    flex-shrink: 0;
}
.portrait-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
}
.portrait-info > span {
    display: block;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.portrait-info p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 920px) { .about-leadership { grid-template-columns: 1fr; } }

/* Closing CTA */
.about-cta {
    margin: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 64px) clamp(64px, 8vw, 104px);
    padding: clamp(52px, 7vw, 88px) clamp(32px, 6vw, 72px);
    border-radius: 24px;
    background: linear-gradient(135deg, #064fc0, #06348f);
    text-align: center;
}
.about-cta-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.about-cta h2 {
    color: white;
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 16px;
}
.about-cta p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin: 0 0 32px;
    line-height: 1.7;
}
.button.about-cta-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    background: white;
    color: var(--blue-dark);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.15s ease;
}
.button.about-cta-btn svg { width: 18px; height: 18px; }
.button.about-cta-btn:hover {
    background: var(--aqua);
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

/* ── Banner shield fix ──────────────────────────────────────── */
.banner-shield {
    display: grid !important;
    place-items: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(6, 71, 180, 0.1);
    color: var(--blue);
    overflow: hidden;
}
.banner-shield svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* ===================================================
   CLINICS PAGE
   =================================================== */

/* Hero */
.clinics-hero {
    background:
        linear-gradient(135deg, rgba(4, 14, 46, 0.97) 0%, rgba(6, 45, 130, 0.90) 50%, rgba(6, 45, 130, 0.72) 100%),
        url('assets/hero.png') center 25% / cover no-repeat;
    color: #fff;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    text-align: center;
}
.clinics-hero-content {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}
.clinics-hero .pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #e0f0ff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.clinics-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    max-width: none;
}
.clinics-hero .lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin: 0 0 36px;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 36px;
}
.clinics-hero .button-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.clinics-hero .button.primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0c2340;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.clinics-hero .button.primary:hover { background: #e8f4ff; transform: translateY(-2px); }
.clinics-hero .button.about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.45);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.clinics-hero .button.about-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* Checks section */
.clinics-checks {
    background: #f8fafd;
    padding: 80px 40px;
}
.clinics-checks-header {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}
.clinics-checks-header h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0c2340;
    margin: 8px 0 16px;
}
.clinics-checks-header p {
    color: #5a6e84;
    font-size: 1.05rem;
    line-height: 1.7;
}
.checks-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.check-card {
    background: #fff;
    border: 1px solid #e2eaf4;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.check-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(12,35,64,0.10);
    border-color: #b3d0f0;
}
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #e8f2fd;
    border-radius: 12px;
    color: #1a6eb5;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}
.check-icon svg {
    display: block;
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.check-card:hover .check-icon {
    background: #1a6eb5;
    color: #fff;
}
.check-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0c2340;
    margin: 0;
}
.check-card p {
    color: #5a6e84;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* How it works / Process */
.clinics-process {
    background: #0c2340;
    padding: 80px 40px;
    color: #fff;
}
.clinics-process-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.clinics-process .eyebrow {
    color: #72c3f0;
}
.clinics-process h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 8px 0 48px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}
.process-step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a6eb5;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: 16px;
}
.process-step h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.process-step p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.family-support-section,
.programme-section {
    background: #f8fafd;
}

.programme-partnerships,
.disclaimer-panel {
    max-width: 1120px;
    margin: 0 auto clamp(48px, 6vw, 80px);
    padding: 34px clamp(22px, 4vw, 38px);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
}

.programme-partnerships {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.55fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.programme-partnerships h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.programme-partnerships p,
.disclaimer-panel p {
    color: var(--muted);
    font-size: 1.02rem;
}

.programme-partnerships ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.programme-partnerships li {
    padding: 14px 16px;
    border: 1px solid #b9d4fb;
    border-radius: 12px;
    background: #f2f7ff;
    color: var(--blue-dark);
    font-weight: 800;
}

.disclaimer-panel {
    display: grid;
    gap: 8px;
    border-left: 6px solid var(--blue);
}

.disclaimer-panel strong {
    color: var(--ink);
}

/* Responsive – clinics */
@media (max-width: 900px) {
    .checks-cards { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .programme-partnerships { grid-template-columns: 1fr; }
    .clinics-hero { padding: 100px 24px 60px; }
    .clinics-checks { padding: 60px 24px; }
    .clinics-process { padding: 60px 24px; }
}
@media (max-width: 580px) {
    .checks-cards { grid-template-columns: 1fr; }
    .clinics-hero .button-row { flex-direction: column; align-items: center; }
}

/* ===================================================
   SERVICES PAGE HERO
   =================================================== */
.services-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(480px, 55vw, 680px);
    overflow: hidden;
}
.services-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 8vw, 104px) clamp(24px, 6vw, 80px);
    background: #f0f6ff;
}
.services-hero h1 {
    color: #0c2340;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.08;
    max-width: none;
    margin: 0 0 20px;
}
.services-hero p {
    color: #284166;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    max-width: 44ch;
    margin: 0;
}
.services-hero-image {
    overflow: hidden;
}
.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 768px) {
    .services-hero {
        grid-template-columns: 1fr;
    }
    .services-hero-image {
        min-height: 280px;
        order: -1;
    }
}

/* Mobile credentials + hero fixes */
@media (max-width: 560px) {
    .home-hero + .credentials-bar {
        margin-top: 0;
        border-top: none;
    }

    .home-hero .pill-label {
        max-width: calc(100vw - 64px);
        padding: 8px 12px;
        gap: 7px;
        font-size: clamp(0.62rem, 2.5vw, 0.72rem);
        letter-spacing: 0.06em;
    }

    .home-hero .pill-label svg {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

    .credentials-list {
        flex-direction: column;
        align-items: stretch;
    }

    .credential {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
        column-gap: 18px;
        align-items: center;
        border: 1.5px solid #c8d8ea;
        background: #fff;
        border-radius: 14px;
        padding: 16px;
    }

    .credential-emblem {
        width: 100%;
        min-width: 0;
        height: 64px;
        padding: 8px 10px;
    }

    .credential-emblem img {
        max-width: 100%;
    }

    .credential-text strong {
        white-space: normal;
    }
}
