@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ──────────────────────────────────────── */
:root {
    --navy: #1B2B5E;
    --navy-dark: #152249;
    --navy-mid: #243570;
    --navy-light: #2e4080;
    --white: #ffffff;
    --off-white: #f7f8fc;
    --light-gray: #edf0f5;
    --mid-gray: #c8cdd8;
    --text-gray: #5a6478;
    --text-dark: #1e2333;
    --gold: #c49a2a;
    --font-serif: 'Merriweather', Georgia, serif;
    --font-sans: 'Source Sans 3', system-ui, sans-serif;
    --shadow-card: 0 2px 16px rgba(27, 43, 94, .10);
    --shadow-hover: 0 6px 28px rgba(27, 43, 94, .16);
    --r: 8px;
    --r-lg: 12px;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: #fff;
    line-height: 1.55;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ── TOP INFO BAR ────────────────────────────────── */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, .80);
    font-size: .78rem;
    padding: 6px 0;
    text-align: center;
    letter-spacing: .02em;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.top-bar a {
    color: rgba(255, 255, 255, .80);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
}

.top-bar a:hover {
    color: #fff;
}

/* ── NAVBAR ──────────────────────────────────────── */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(27, 43, 94, .07);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: auto;
    height: 52px;
}

.logo-text .name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: .01em;
}

.logo-text .sub {
    font-size: .62rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .15s, background .15s;
}

.nav-links a:hover {
    color: var(--navy);
    background: var(--off-white);
}

/* ── Locations dropdown (desktop) ─────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .15s, background .15s;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--navy);
    background: var(--off-white);
}

.nav-chev {
    transition: transform .25s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-chev,
.nav-dropdown.open .nav-chev {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(27, 43, 94, .16);
    padding: 8px;
    min-width: 190px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(6px);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 7px;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: .02em;
    transition: background .15s;
}

.nav-dropdown-menu a:hover {
    background: var(--off-white);
}

/* CTA button */
.btn-nav-cta {
    background: var(--navy);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: var(--r);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
    border: none;
    transition: background .15s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--navy-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .65s cubic-bezier(.65, 0, .35, 1), opacity .4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.2);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ─────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 990;
    display: flex;
    flex-direction: column;
    padding: 92px 26px 28px;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), visibility .55s;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .top-bar {
    display: none;
}

.mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-menu-logo .logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mobile-menu-logo .logo-icon svg {
    width: 100%;
    height: 100%;
}

.mobile-menu-logo .name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.mobile-menu-logo .sub {
    font-size: .62rem;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
}

.mobile-menu nav a {
    display: block;
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.open nav a {
    opacity: 1;
    transform: translateY(0);
}

/* staggered reveal — each link a beat after the previous */
.mobile-menu.open nav a:nth-child(1) {
    transition-delay: .18s;
}

.mobile-menu.open nav a:nth-child(2) {
    transition-delay: .24s;
}

.mobile-menu.open nav a:nth-child(3) {
    transition-delay: .30s;
}

.mobile-menu.open nav a:nth-child(4) {
    transition-delay: .36s;
}

.mobile-menu.open nav a:nth-child(5) {
    transition-delay: .42s;
}

.mobile-menu.open nav a:nth-child(6) {
    transition-delay: .48s;
}

.mobile-menu.open nav a:nth-child(7) {
    transition-delay: .54s;
}

.mobile-menu.open nav a:nth-child(8) {
    transition-delay: .60s;
}

/* call buttons fade in last */
.mobile-menu .mobile-menu-btns {
    opacity: 0;
    transition: opacity .5s ease .64s;
}

.mobile-menu.open .mobile-menu-btns {
    opacity: 1;
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}


/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--r);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .18s;
    white-space: wrap;
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: .78rem;
}

.btn-lg {
    padding: 13px 28px;
    font-size: .9rem;
}

/* Phone buttons exactly as render */
.btn-phone {
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
    border-radius: var(--r);
    padding: 10px 18px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .15s;
}

.btn-phone:hover {
    background: var(--navy-dark);
}

.btn-phone .loc-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.btn-phone .loc-number {
    font-size: .88rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden; /* important */
    min-height: 620px;

    background-image: url('../images/family.png');
    background-size: cover;
    background-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
            90deg,
            rgba(248, 250, 252, 0.98) 0%,
            rgba(248, 250, 252, 0.95) 22%,
            rgba(248, 250, 252, 0.80) 40%,
            rgba(248, 250, 252, 0.45) 58%,
            rgba(248, 250, 252, 0.12) 75%,
            rgba(248, 250, 252, 0) 100%
    );

    z-index: 1;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    padding: 60px 48px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
    z-index: 2;
}

.hero-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-note {
    font-size: .82rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #dce5f5 0%, #c8d4ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--text-gray);
    font-size: .85rem;
    overflow: hidden;
}

.hero-image-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-image-inner img.loaded {
    opacity: 1;
}

/* ── SERVICES ICONS STRIP ─────────────────────────── */
.services-strip {
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    background: #fff;
    padding: 36px 24px;
}

.services-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex: 1;
    min-width: 90px;
    cursor: pointer;
    transition: transform .18s;
}

.service-icon-item:hover {
    transform: translateY(-3px);
}

.service-icon-item:hover .svc-icon-wrap {
    border-color: var(--navy);
}

.svc-icon-wrap {
    width: clamp(44px, 5vw, 64px);
    height: clamp(44px, 5vw, 64px);
    border: 1.5px solid var(--mid-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .18s;
    flex-shrink: 0;
    overflow: hidden;
}

.svc-icon-wrap img,
.svc-icon-wrap svg {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(50%) saturate(800%) hue-rotate(200deg) brightness(85%);
}

.service-icon-item span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: .01em;
}

/* ── SECTION LAYOUT ──────────────────────────────── */
.section {
    padding: 40px 40px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-sm {
    padding: 48px 24px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 12px;
}

.section-sub {
    font-size: .95rem;
    color: var(--text-gray);
    line-height: 1.65;
    max-width: 720px;
}

.section-center {
    text-align: center;
}

.section-center .section-sub {
    margin: 0 auto;
}

/* ── DOCTOR SECTION ──────────────────────────────── */
.doctor-section {
    background: var(--off-white);
}

.doctor-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
}

.doctor-bio {
    color: var(--text-gray);
    font-size: .95rem;
    line-height: 1.72;
    margin-bottom: 6px;
}

.doctor-photo {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(27, 43, 94, .13);
    aspect-ratio: 3 / 4;
    background: linear-gradient(160deg, #dce5f5 0%, #c8d4ec 100%);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.doctor-photo-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--text-gray);
    font-size: .82rem;
}

.doctor-checklist {
    list-style: none;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.doctor-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-gray);
}

.doctor-checklist li::before {
    content: '\2713';
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
}

.doctor-name::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--navy);
    margin-top: 12px;
}

/* ── LOCATIONS SECTION ───────────────────────────── */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.loc-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: box-shadow .2s;
}

.loc-card:hover {
    box-shadow: var(--shadow-hover);
}

.loc-card-photo {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(120deg, #dce5f5 0%, #c8d4ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-gray);
    font-size: .82rem;
    overflow: hidden;
}

.loc-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-card-body {
    padding: 24px;
}

.loc-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 14px;
}

.loc-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 8px;
    font-size: .87rem;
    color: var(--text-gray);
}

.loc-row .ico {
    color: var(--navy);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1.4;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 14px;
    font-size: .82rem;
    margin: 10px 0;
}

.hours-grid .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-grid .time {
    color: var(--text-gray);
}

.map-box {
    border-radius: var(--r);
    overflow: hidden;
    margin: 14px 0;
    border: 1px solid var(--light-gray);
}

.map-box iframe {
    width: 100%;
    height: 180px;
    display: block;
    border: none;
}

.loc-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
    background: var(--navy);
    padding: 40px 24px;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stats-grid .stat {
    padding: 0 20px;
}

.stats-grid .stat + .stat {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.stats-grid .num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
}

.stats-grid .lbl {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 4px;
    letter-spacing: .04em;
}

/* ── INSURANCE STRIP ─────────────────────────────── */
.insurance-section {
    background: #fff;
    padding: 56px 24px;
}

.insurance-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 44px;
    margin-top: 32px;
}

.ins-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: opacity .15s;
}

.ins-badge:hover {
    opacity: .7;
}

.ins-badge img,
.ins-badge svg {
    height: 30px !important;
    width: auto !important;
    max-width: 130px !important;
    object-fit: contain;
    display: block;
}

.ins-badge.ins-more {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .02em;
}

/* ── REVIEWS ─────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: var(--r-lg);
    padding: 22px;
    box-shadow: var(--shadow-card);
    transition: box-shadow .2s;
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: #e4a800;
    font-size: .95rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-text {
    font-size: .87rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: .83rem;
    color: var(--text-dark);
}

.review-source {
    font-size: .72rem;
    color: var(--text-gray);
}

/* ── GALLERY GRID ────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(120deg, #dce5f5 0%, #c8d4ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-gray);
    font-size: .8rem;
    cursor: pointer;
    position: relative;
    transition: transform .18s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 43, 94, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .18s;
    color: #fff;
    font-size: 1.4rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ── FOOTER CTA BAR ──────────────────────────────── */
.footer-cta {
    background: var(--navy);
    padding: 28px 24px;
}

.footer-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
}

.footer-cta-text p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
}

.footer-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Phone button white outlined variant for footer */
.btn-phone-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .45);
    border-radius: var(--r);
    padding: 10px 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .15s;
    text-align: left;
}

.btn-phone-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

.btn-phone-white .ico {
    font-size: 1.1rem;
}

.btn-phone-white .loc-label {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .7;
    display: block;
    margin-bottom: 2px;
}

.btn-phone-white .loc-number {
    font-size: .9rem;
    font-weight: 700;
    display: block;
}

/* ── MAIN FOOTER ─────────────────────────────────── */
footer {
    background: #111928;
    color: rgba(255, 255, 255, .65);
    padding: 52px 24px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
}

.footer-brand-sub {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: .84rem;
    line-height: 1.65;
    max-width: 240px;
}

.footer-col h4 {
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    transition: color .15s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .83rem;
    margin-bottom: 9px;
}

.footer-contact-row .ico {
    color: rgba(255, 255, 255, .5);
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-row a {
    color: rgba(255, 255, 255, .55);
    transition: color .15s;
}

.footer-contact-row a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .76rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .3);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, .6);
}

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 60px 24px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, .72);
    font-size: .98rem;
    max-width: 580px;
    margin: 0 auto 24px;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 11px 24px;
    font-size: .78rem;
    color: var(--text-gray);
    display: flex;
    gap: 6px;
    align-items: center;
}

.breadcrumb a {
    color: var(--navy);
    font-weight: 600;
}

/* ── UTILITIES ───────────────────────────────────── */
.divider {
    border: none;
    border-top: 1px solid var(--light-gray);
}

.bg-off {
    background: var(--off-white);
}

.bg-navy {
    background: var(--navy);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* ── RESPONSIVE ──────────────────────────────────── */


/* ── SERVICES PAGE ───────────────────────────────── */
.svc-block {
    display: grid;
    grid-template-columns:180px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--light-gray);
}

.svc-block:last-child {
    border-bottom: none;
}

.svc-block-icon {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--r-lg);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.svc-block-icon img {
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    max-width: 88px;
    max-height: 88px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(50%) saturate(800%) hue-rotate(200deg) brightness(85%);
}

.svc-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 14px 0 18px;
}

.svc-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-gray);
}

.svc-checklist li::before {
    content: '✓';
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
}

.dir-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 22, 44, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
}

.dir-modal.open {
    opacity: 1;
    visibility: visible;
}

.dir-modal-card {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 340px;
    padding: 28px 24px 22px;
    box-shadow: 0 20px 60px rgba(15, 22, 44, .3);
    text-align: center;
    transform: scale(.94);
    transition: transform .25s ease;
}

.dir-modal.open .dir-modal-card {
    transform: scale(1);
}

.dir-modal-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 4px;
}

.dir-modal-card p {
    font-size: .86rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.dir-opt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    margin-bottom: 11px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: #fff;
    transition: all .15s;
}

.dir-opt.primary {
    background: var(--navy);
    color: #fff;
}

.dir-opt:hover {
    box-shadow: 0 4px 14px rgba(27, 43, 94, .18);
}

.dir-opt svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dir-cancel {
    width: 100%;
    padding: 12px;
    border: none;
    background: none;
    color: var(--text-gray);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
}

.dir-cancel:hover {
    color: var(--navy);
}

/*Large Tablets*/
@media (max-width: 991px) {
    .nav-links, .nav-cta-wrap {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-image {
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        padding: 48px 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-note {
        justify-content: center;
    }

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

    .stats-grid .stat + .stat {
        border-left: none;
    }

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

@media (max-width: 767px) {
    .nav-links, .nav-cta-wrap {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 36px 16px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.18;
    }

    .hero-sub {
        font-size: 1.02rem;
    }

    .hero-label {
        font-size: .72rem;
    }

    .hero-btns {
        gap: 10px;
        width: 100%;
    }

    .btn-phone {
        width: 100%;
        justify-content: center;
    }

    .svc-block {
        grid-template-columns:1fr;
    }

    .svc-block-icon {
        width: 140px;
        height: 140px;
    }

    .services-strip {
        padding: 28px 16px;
    }

    .services-strip-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 8px;
        justify-items: center;
    }

    .service-icon-item {
        flex: unset;
        min-width: unset;
        width: 100%;
    }

    .svc-icon-wrap {
        width: 48px;
        height: 48px;
    }

    .doctor-bio {
        display: none;
    }

    .doctor-name::after {
        content: none !important;
    }

    .doctor-section {
        display: flex; /* Activates flexbox layout */
        flex-direction: row; /* Places items side-by-side horizontally */
        align-items: center; /* Centers the photo and text vertically */
        gap: 15px; /* Adds clean spacing between photo and text */
    }

    .doctor-photo {
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .doctor-grid {
        gap: 20px;
    }

    #locations,
    section[aria-label="Our office locations"],
    #gallery,
    section[aria-label="Office gallery preview"],
    #reviews,
    section[aria-label="Patient reviews"] {
        display: none;
    }

    .service-icon-item span {
        font-size: .7rem;
    }

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

    .section {
        padding: 30px 0px;
    }

    footer {
        padding: 25px 0px 25px;
    }

    .footer-grid {
        display: none;
    }

    .footer-bottom {
        border-top: 0px solid rgba(255, 255, 255, .07);
    }
}

@media (max-width: 575px) {
    .hero {
        background: linear-gradient(160deg, #f2f7fc 0%, #e6eef8 100%);
        min-height: 200px;
    }

    .hero-inner {
        text-align: center;
        padding: 0px 10px;
        min-height: 100px;
    }

    .hero-image {
        display: none;
    }

    .section {
        padding: 20px 0px;
    }

    .section-title {
        font-weight: 600;
    }

    .doctor-grid {
        gap: 20px;
        grid-template-columns: clamp(180px, 38%, 200px) 1fr;
    }

    .doctor-checklist {
        display: none;
    }

    .doctor-section {
        gap: 10px; /* Adds clean spacing between photo and text */
    }

    .doctor-photo {
        margin-left: 0px;
        max-width: 180px;
    }

    .Learn-Details {
        display: none;
    }
}