:root {
    --maroon: #a71930;
    --maroon-dark: #861326;
    --maroon-soft: #f9ebee;
    --navy: #123b66;
    --navy-dark: #082846;
    --navy-soft: #edf5fb;
    --gold: #d6a33c;
    --gold-light: #f2d89c;
    --ink: #243343;
    --muted: #667483;
    --line: #dfe7ed;
    --white: #ffffff;
    --cream: #fbfaf7;
    --shadow: 0 22px 60px rgba(9, 45, 80, .12);
    --shadow-small: 0 12px 32px rgba(9, 45, 80, .09);
    --radius: 24px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img,
svg {
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}



.hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(112deg, #fff 0%, var(--cream) 48%, #edf5fa 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -140px;
    top: -170px;
    border: 85px solid rgba(214, 163, 60, .12);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: -150px;
    background: rgba(167, 25, 48, .05);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 70px;
    padding-block: 70px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--maroon);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--maroon);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.hero h1,
.section-title {
    margin: 15px 0 18px;
    color: var(--navy-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -.035em;
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.02;
}

.hero h1 span,
.section-title span {
    color: var(--maroon);
}

.hero-copy>p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #526170;
    font-size: 12px;
    font-weight: 750;
}

.hero-trust .icon {
    width: 17px;
    height: 17px;
    color: var(--gold);
}

.facility-visual {
    position: relative;
    min-height: 430px;
}

.visual-orbit {
    position: absolute;
    inset: 15px 20px 15px 25px;
    border: 1px dashed rgba(18, 59, 102, .22);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.visual-orbit::before,
.visual-orbit::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--gold);
    border: 6px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(8, 40, 70, .14);
}

.visual-orbit::before {
    left: 8%;
    top: 22%;
}

.visual-orbit::after {
    right: 8%;
    bottom: 23%;
    background: var(--maroon);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.visual-core {
    position: absolute;
    inset: 64px 68px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(150deg, var(--navy), var(--navy-dark));
    border-radius: 44% 56% 53% 47% / 50% 44% 56% 50%;
    box-shadow: 0 32px 70px rgba(8, 40, 70, .25);
}

.visual-core::before {
    content: "";
    position: absolute;
    inset: 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: inherit;
}

.visual-core svg {
    position: relative;
    z-index: 2;
    width: 170px;
    height: 120px;
}

.float-card {
    position: absolute;
    z-index: 3;
    min-width: 178px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(223, 231, 237, .9);
    border-radius: 16px;
    box-shadow: var(--shadow-small);
}

.float-card .card-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--maroon);
    background: var(--maroon-soft);
    border-radius: 11px;
}

.float-card .card-icon.navy {
    color: var(--navy);
    background: var(--navy-soft);
}

.float-card b {
    display: block;
    color: var(--navy-dark);
    font-size: 12px;
}

.float-card small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.float-one {
    left: -3px;
    top: 47px;
}

.float-two {
    right: -2px;
    top: 132px;
}

.float-three {
    left: 20px;
    bottom: 34px;
}

.visual-note {
    position: absolute;
    right: 9px;
    bottom: 17px;
    z-index: 4;
    max-width: 180px;
    padding: 11px 14px;
    color: #73591b;
    background: #fff8e5;
    border: 1px solid #f0dcaa;
    border-radius: 12px;
    font-size: 9px;
    line-height: 1.5;
}

.quick-strip {
    position: relative;
    z-index: 4;
    margin-top: -28px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 104px;
    padding: 22px 25px;
    border-right: 1px solid var(--line);
}

.quick-item:last-child {
    border-right: 0;
}

.quick-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin-top: 0;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 14px;
}

.quick-icon .icon {
    width: 21px;
    height: 21px;
    margin: 0;
}

.quick-item:nth-child(2) .quick-icon,
.quick-item:nth-child(4) .quick-icon {
    color: var(--maroon);
    background: var(--maroon-soft);
}

.quick-item strong {
    display: block;
    color: var(--navy-dark);
    font-size: 13px;
}

.quick-item>div>span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.section {
    padding: 105px 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head .eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
}

.section-copy {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.facility-showcase {
    background: var(--cream);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.facility-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 30px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    isolation: isolate;
}

.facility-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
}

.facility-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -80px;
    top: -85px;
    z-index: -2;
    border: 48px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.facility-card.maroon::before {
    background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
}

.facility-card.light {
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
}

.facility-card.light::before {
    background: linear-gradient(145deg, #fff, var(--navy-soft));
}

.facility-card.light::after {
    border-color: rgba(18, 59, 102, .06);
}

.facility-card.large {
    grid-column: span 7;
    min-height: 390px;
}

.facility-card.medium {
    grid-column: span 5;
    min-height: 390px;
}

.facility-card.small {
    grid-column: span 4;
}

.facility-art {
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: -1;
    width: 48%;
    height: 56%;
    color: rgba(255, 255, 255, .38);
}

.facility-card.light .facility-art {
    color: rgba(18, 59, 102, .25);
}

.facility-index {
    position: absolute;
    left: 28px;
    top: 25px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
}

.facility-card.light .facility-index {
    color: var(--maroon);
}

.facility-pill {
    width: max-content;
    margin-bottom: 16px;
    padding: 7px 10px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.facility-card.light .facility-pill {
    color: var(--navy);
    background: rgba(18, 59, 102, .07);
    border-color: rgba(18, 59, 102, .08);
}

.facility-card h3 {
    margin: 0 0 9px;
    max-width: 430px;
    color: inherit;
    font-family: Georgia, serif;
    font-size: 26px;
}

.facility-card p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: 12px;
    line-height: 1.7;
}

.facility-card.light p {
    color: var(--muted);
}

.facility-card .mini-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
}

.facility-card.light .mini-link {
    color: var(--maroon);
}

.availability-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    max-width: 700px;
    margin: 28px auto 0;
    padding: 13px 18px;
    color: #705a25;
    background: #fff8e7;
    border: 1px solid #f1dfb3;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.55;
    text-align: left;
}

.availability-note .icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--gold);
}

.journey {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.journey::before {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    left: -310px;
    top: 60px;
    border: 85px solid var(--maroon-soft);
    border-radius: 50%;
}

.journey-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 80px;
    align-items: center;
}

.journey-copy {
    padding: 42px;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.journey-copy .eyebrow {
    color: var(--gold-light);
}

.journey-copy h2 {
    margin: 17px 0 16px;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
}

.journey-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.75;
}

.journey-copy .btn {
    margin-top: 25px;
}

.journey-list {
    position: relative;
    display: grid;
    gap: 12px;
}

.journey-list::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 37px;
    bottom: 37px;
    width: 2px;
    background: linear-gradient(var(--maroon) 0 68%, var(--navy) 68%);
}

.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 20px;
    min-height: 108px;
    padding: 18px 21px 18px 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: 0 8px 24px rgba(9, 45, 80, .05);
}

.step-dot {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-left: 11px;
    color: var(--white);
    background: var(--maroon);
    border: 6px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--maroon);
    font-size: 9px;
    font-weight: 850;
}

.journey-step:last-child .step-dot {
    background: var(--navy);
    box-shadow: 0 0 0 1px var(--navy);
}

.step-body {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--navy-soft);
    border-radius: 13px;
}

.step-icon .icon {
    width: 23px;
    height: 23px;
}

.journey-step h3 {
    margin: 0 0 5px;
    color: var(--navy-dark);
    font-size: 15px;
}

.journey-step p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.comfort {
    position: relative;
    overflow: hidden;
    background: var(--navy-soft);
}

.comfort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: center;
}

.comfort-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.comfort-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px dashed #b6d1e4;
    border-radius: 50%;
}

.comfort-core {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--navy);
    background: var(--white);
    border: 8px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.comfort-core img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 54%;
}

.comfort-badge {
    position: absolute;
    z-index: 3;
    min-width: 150px;
    padding: 13px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-small);
}

.comfort-badge b {
    display: block;
    color: var(--navy-dark);
    font-size: 11px;
}

.comfort-badge span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.badge-one {
    left: 0;
    top: 88px;
}

.badge-two {
    right: 4px;
    top: 170px;
}

.badge-three {
    left: 28px;
    bottom: 80px;
}

.comfort-copy .section-title {
    margin-top: 14px;
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 28px;
}

.support-item {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid #d9e8f2;
    border-radius: 14px;
}

.support-check {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin-top: 0;
    color: var(--white);
    background: var(--maroon);
    border-radius: 10px;
}

.support-check .icon {
    width: 15px;
    height: 15px;
    stroke-width: 2.4;
}

.support-item strong {
    display: block;
    color: var(--navy-dark);
    font-size: 12px;
}

.support-item>div>span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
}

.branch-section {
    background: linear-gradient(180deg, var(--cream) 0%, #f4f8fb 100%);
    padding: 90px 0;
}

.branch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: start;
}

.branch-copy {
    position: relative;
    padding: 44px;
    color: var(--white);
    background: linear-gradient(135deg, #7a1528 0%, #4a0b16 100%);
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(122, 21, 40, .24);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.branch-copy::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(242, 216, 156, .18) 0%, transparent 70%);
    pointer-events: none;
}

.branch-head .eyebrow {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
}

.branch-copy h2 {
    margin: 16px 0 14px;
    font-family: Georgia, serif;
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 1.2;
    color: var(--white);
}

.branch-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    line-height: 1.7;
}

.branch-counts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.branch-count {
    padding: 20px 22px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    transition: transform .3s ease;
}

.branch-count:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .14);
}

.branch-count strong {
    display: block;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1;
}

.branch-count span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.branch-cta {
    align-self: flex-start;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.branch-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    align-self: flex-start;
}

.branch-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    background: var(--white);
    border: 1px solid rgba(18, 59, 102, .08);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(9, 45, 80, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(9, 45, 80, .12);
    border-color: rgba(122, 21, 40, .2);
}

.branch-number {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--maroon);
    background: var(--maroon-soft);
    border-radius: 16px;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.branch-details h3 {
    margin: 0 0 6px;
    color: var(--navy-dark);
    font-size: 17px;
    font-weight: 700;
}

.branch-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.branch-location .icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--maroon);
}

.status-pill {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-hospital {
    color: #7a1528;
    background: #fcedf0;
    border: 1px solid #f7d4dc;
}

.status-clinic,
.status-branch {
    color: #123b66;
    background: #eaf3fa;
    border: 1px solid #d2e4f3;
}

.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro .section-title {
    font-size: 43px;
}

.contact-mini {
    margin-top: 25px;
    padding: 20px;
    background: var(--navy-soft);
    border: 1px solid #d8e8f3;
    border-radius: 16px;
}

.contact-mini strong {
    display: block;
    color: var(--navy-dark);
    font-size: 13px;
}

.contact-mini p {
    margin: 6px 0 13px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.contact-mini a {
    color: var(--maroon);
    font-size: 12px;
    font-weight: 850;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    color: var(--navy-dark);
    background: none;
    border: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 800;
}

.faq-plus {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--maroon);
    background: var(--maroon-soft);
    border-radius: 50%;
    font-size: 18px;
    transition: transform .25s;
}

.faq-button[aria-expanded="true"] .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    margin: -4px 45px 22px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.cta {
    position: relative;
    z-index: 2;
    padding: 0 0 78px;
    background: var(--white);
}

.cta-box {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    overflow: hidden;
    padding: 48px 55px;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-dark), var(--navy) 65%, #1e537f);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: 15%;
    top: -170px;
    border: 55px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: -90px;
    background: var(--maroon);
    border-radius: 50%;
    opacity: .75;
}

.cta-copy,
.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-copy {
    max-width: 640px;
}

.cta-copy small {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cta-copy h2 {
    margin: 13px 0 12px;
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
}

.cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.cta .btn-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
}

.site-footer {
    color: rgba(255, 255, 255, .72);
    background: var(--navy-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .7fr .8fr 1.15fr;
    gap: 55px;
    padding: 68px 0 48px;
}

.footer-brand .brand-copy strong {
    color: var(--white);
}

.footer-brand .brand-copy small {
    color: var(--gold-light);
}

.footer-about {
    max-width: 325px;
    margin: 20px 0 22px;
    font-size: 11px;
    line-height: 1.75;
}

.socials {
    display: flex;
    gap: 9px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
}

.footer-column h3 {
    margin: 4px 0 21px;
    color: var(--white);
    font-size: 13px;
}

.footer-links {
    display: grid;
    gap: 13px;
}

.footer-links a {
    width: max-content;
    font-size: 11px;
    transition: color .2s, transform .2s;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-contact {
    display: grid;
    gap: 15px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 10px;
    line-height: 1.55;
}

.footer-contact .icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--gold-light);
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 9px;
}

.footer-legal {
    display: flex;
    gap: 18px;
}

.mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 110;
    display: none;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 25px rgba(9, 45, 80, .12);
}

.mobile-actions a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 850;
}

.mobile-actions a:last-child {
    color: var(--white);
    background: var(--maroon);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── Premium Facility Cards ── */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.fc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(18, 59, 102, .08);
    box-shadow: 0 8px 32px rgba(9, 45, 80, .06);
    transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s ease;
}

.fc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(9, 45, 80, .14), 0 0 0 1px rgba(18, 59, 102, .06);
}

/* ── Media area ── */
.fc-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
}

.fc-accent-maroon .fc-media {
    background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
}

.fc-accent-gold .fc-media {
    background: linear-gradient(145deg, #8c6a1a, #705512);
}

.fc-accent-navy .fc-media {
    background: linear-gradient(145deg, #1a4d7a, var(--navy-dark));
}

.fc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.fc-card:hover .fc-media img {
    transform: scale(1.06);
}

.fc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 40, 70, 0) 30%, rgba(8, 40, 70, .55) 100%);
    pointer-events: none;
    z-index: 1;
}

.fc-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .5);
}

.fc-placeholder svg {
    width: 68px;
    height: 68px;
}

.fc-number {
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 3;
    padding: 7px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.fc-badge {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 3;
    padding: 7px 16px;
    color: var(--white);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

/* ── Body area ── */
.fc-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fc-body h3 {
    margin: 0 0 10px;
    color: var(--navy-dark);
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.fc-body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
    flex: 1;
}

.fc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 20px;
    width: max-content;
    color: var(--maroon);
    background: var(--maroon-soft);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    transition: background .25s, color .25s, transform .25s;
}

.fc-link .icon {
    width: 16px;
    height: 16px;
    transition: transform .25s;
}

.fc-link:hover {
    color: var(--white);
    background: var(--maroon);
    transform: translateX(3px);
}

.fc-link:hover .icon {
    transform: translateX(3px);
}

/* ── Accent stripe at bottom of card ── */
.fc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    opacity: 0;
    transition: opacity .35s;
}

.fc-card:hover::after {
    opacity: 1;
}

.fc-accent-maroon::after {
    background: linear-gradient(90deg, var(--maroon), var(--gold));
}

.fc-accent-gold::after {
    background: linear-gradient(90deg, var(--gold), var(--maroon));
}

.fc-accent-navy::after {
    background: linear-gradient(90deg, var(--navy), var(--maroon));
}

/* ── First card spans two columns on wider screens ── */
.fc-card:first-child {
    grid-column: span 2;
}

.fc-card:first-child .fc-media {
    aspect-ratio: 21 / 9;
}

@media (max-width: 1080px) {
    .fc-card:first-child {
        grid-column: span 1;
    }

    .fc-card:first-child .fc-media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .fc-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fc-card:first-child {
        grid-column: auto;
    }

    .fc-body {
        padding: 22px 20px 24px;
    }

    .fc-body h3 {
        font-size: 19px;
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 16px;
    }

    .desktop-nav>a {
        font-size: 11px;
    }

    .hero-grid {
        gap: 35px;
    }

    .facility-card.small {
        grid-column: span 6;
    }

    .facility-card.small:last-child {
        grid-column: 4 / span 6;
    }

    .journey-grid,
    .branch-layout {
        gap: 40px;
    }

    .footer-main {
        gap: 30px;
    }
}

@media (max-width: 900px) {

    .desktop-nav,
    .header-book {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-block: 58px 78px;
    }

    .hero-copy {
        text-align: center;
    }

    .breadcrumb,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-copy>p {
        margin-inline: auto;
    }

    .facility-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-item:nth-child(2) {
        border-right: 0;
    }

    .quick-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .facility-card.large,
    .facility-card.medium {
        grid-column: span 6;
    }

    .journey-grid,
    .comfort-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .journey-copy {
        text-align: center;
    }

    .journey-copy .eyebrow {
        justify-content: center;
    }

    .comfort-copy {
        text-align: center;
    }

    .comfort-copy .eyebrow {
        justify-content: center;
    }

    .support-item {
        text-align: left;
    }

    .branch-copy {
        text-align: center;
    }

    .branch-copy .eyebrow {
        justify-content: center;
    }

    .faq-intro {
        position: static;
        text-align: center;
    }

    .faq-intro .eyebrow {
        justify-content: center;
    }

    .contact-mini {
        max-width: 440px;
        margin-inline: auto;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar-inner {
        justify-content: center;
        min-height: 32px;
    }

    .topbar-group:first-child {
        display: none;
    }

    .topbar-group {
        gap: 15px;
    }

    .topbar-group a:last-child {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .nav-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .brand-mark svg {
        width: 29px;
        height: 29px;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .nav-call {
        display: none;
    }

    .mobile-menu {
        inset-block-start: 104px;
    }

    .hero-grid {
        padding-block: 42px 65px;
    }

    .breadcrumb {
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-copy>p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .facility-visual {
        min-height: 330px;
    }

    .visual-orbit {
        inset: 20px 15px;
    }

    .visual-core {
        inset: 57px 52px;
    }

    .visual-core svg {
        width: 125px;
        height: 92px;
    }

    .float-card {
        min-width: 142px;
        padding: 10px 11px;
    }

    .float-card .card-icon {
        width: 32px;
        height: 32px;
    }

    .float-card small {
        display: none;
    }

    .float-one {
        left: 0;
        top: 42px;
    }

    .float-two {
        right: 0;
        top: 116px;
    }

    .float-three {
        left: 5px;
        bottom: 28px;
    }

    .visual-note {
        display: none;
    }

    .quick-strip {
        margin-top: -18px;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-item {
        min-height: 96px;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
        padding: 16px;
    }

    .quick-icon {
        width: 39px;
        height: 39px;
    }

    .quick-item span {
        font-size: 9px;
    }

    .section {
        padding: 78px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-copy {
        font-size: 12px;
    }

    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-card.large,
    .facility-card.medium,
    .facility-card.small,
    .facility-card.small:last-child {
        grid-column: auto;
        min-height: 285px;
        padding: 24px;
    }

    .facility-art {
        width: 55%;
        height: 52%;
    }

    .facility-card h3 {
        font-size: 23px;
    }

    .journey-grid {
        gap: 26px;
    }

    .journey-copy {
        padding: 30px 23px;
    }

    .journey-copy h2 {
        font-size: 34px;
    }

    .journey-step {
        grid-template-columns: 54px 1fr;
        gap: 8px;
        min-height: 116px;
        padding-right: 14px;
    }

    .journey-list::before {
        left: 26px;
    }

    .step-dot {
        margin-left: 7px;
    }

    .step-body {
        grid-template-columns: 39px 1fr;
        gap: 11px;
    }

    .step-icon {
        width: 39px;
        height: 39px;
    }

    .journey-step h3 {
        font-size: 13px;
    }

    .journey-step p {
        font-size: 9px;
    }

    .comfort-grid {
        gap: 22px;
    }

    .comfort-visual {
        min-height: 360px;
    }

    .comfort-ring {
        width: 310px;
        height: 310px;
    }

    .comfort-core {
        width: 238px;
        height: 238px;
    }

    .comfort-core img {
        width: 100%;
        height: 100%;
    }

    .comfort-badge {
        min-width: 125px;
        padding: 10px 12px;
    }

    .badge-one {
        top: 54px;
    }

    .badge-two {
        top: 145px;
    }

    .badge-three {
        bottom: 44px;
    }

    .support-list {
        grid-template-columns: 1fr;
    }

    .branch-copy {
        padding: 30px 23px;
    }

    .branch-copy h2 {
        font-size: 35px;
    }

    .branch-card {
        grid-template-columns: 51px 1fr;
        gap: 13px;
        padding: 18px;
    }

    .branch-number {
        width: 49px;
        height: 49px;
    }

    .status-pill {
        grid-column: 2;
        width: max-content;
    }

    .faq-layout {
        gap: 32px;
    }

    .faq-intro .section-title {
        font-size: 35px;
    }

    .faq-button {
        font-size: 13px;
    }

    .cta {
        padding-bottom: 55px;
    }

    .cta-box {
        min-height: 0;
        padding: 38px 23px;
        border-radius: 22px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 52px 0 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 80px;
    }

    .mobile-actions {
        display: grid;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Photo-led facilities page additions */
.photo-visual {
    min-height: 500px;
}

.hero-photo-main {
    position: absolute;
    inset: 12px 18px 35px 70px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .75);
    border-radius: 78px 12px 78px 12px;
    box-shadow: 0 32px 75px rgba(8, 40, 70, .28);
}

.hero-photo-main img,
.hero-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-small {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 225px;
    height: 158px;
    overflow: hidden;
    border: 7px solid var(--white);
    border-radius: 12px 38px 12px 38px;
    box-shadow: 0 20px 45px rgba(8, 40, 70, .25);
}

.photo-status {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 4;
    min-width: 230px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    background: var(--white);
    border-radius: 12px 0 0 12px;
    box-shadow: var(--shadow-small);
}

.photo-status i {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    background: #32a765;
    border: 4px solid #d8f2e3;
    border-radius: 50%;
}

.photo-status b,
.photo-status small {
    display: block;
}

.photo-status b {
    color: var(--navy-dark);
    font-size: 13px;
}

.photo-status small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.photo-seal {
    position: absolute;
    right: -8px;
    top: -8px;
    z-index: 4;
    width: 124px;
    height: 124px;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--navy-dark);
    background: var(--gold);
    border: 7px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    box-shadow: 0 15px 38px rgba(8, 40, 70, .2);
}

.photo-seal strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
}

.photo-seal span {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .06em;
    line-height: 1.4;
    text-transform: uppercase;
}

.facility-gallery {
    background: var(--white);
}

.photo-gallery {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    grid-auto-rows: 275px;
    gap: 14px;
}

.photo-gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--navy-soft);
}

.photo-gallery .gallery-tall {
    grid-row: span 2;
}

.photo-gallery .gallery-wide {
    grid-column: span 2;
}

.photo-gallery .gallery-portrait {
    grid-row: span 2;
}

.photo-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.photo-gallery figure:hover img {
    transform: scale(1.035);
}

.photo-gallery figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(4, 25, 43, .82));
}

.photo-gallery figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: var(--white);
}

.photo-gallery figcaption b,
.photo-gallery figcaption span {
    display: block;
}

.photo-gallery figcaption b {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.photo-gallery figcaption span {
    margin-top: 5px;
    color: #d2dee7;
    font-size: 11px;
}

@media (max-width: 900px) {
    .photo-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .photo-gallery .gallery-wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .photo-visual {
        min-height: 375px;
    }

    .hero-photo-main {
        inset: 0 6px 40px 24px;
        border-radius: 48px 9px 48px 9px;
    }

    .hero-photo-small {
        width: 155px;
        height: 112px;
    }

    .photo-status {
        right: -5px;
        bottom: 24px;
        min-width: 195px;
        padding: 12px;
    }

    .photo-seal {
        width: 92px;
        height: 92px;
        right: -3px;
        top: -16px;
        border-width: 5px;
    }

    .photo-seal strong {
        font-size: 22px;
    }

    .photo-seal span {
        font-size: 6px;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 310px;
    }

    .photo-gallery .gallery-tall,
    .photo-gallery .gallery-portrait {
        grid-row: span 1;
    }

    .photo-gallery figure:nth-child(5) {
        min-height: 390px;
    }
}