:root {
    --navy-950: #0a2639;
    --navy-900: #123c5a;
    --navy-800: #18506f;
    --blue-700: #1d6685;
    --blue-100: #dfeef4;
    --blue-050: #f0f7fa;
    --mint-400: #6ed3c1;
    --mint-100: #dff6f1;
    --coral-600: #b94230;
    --coral-500: #c94f3a;
    --coral-100: #fbe8e3;
    --ink: #182630;
    --muted: #50616d;
    --line: #ccd9e0;
    --paper: #ffffff;
    --canvas: #f4f7f9;
    --shadow-sm: 0 8px 24px rgba(10, 38, 57, 0.08);
    --shadow-lg: 0 24px 60px rgba(10, 38, 57, 0.16);
    --radius-sm: 0.65rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --container: 73.75rem;
    --header-height: 5rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: var(--blue-700);
}

a:hover {
    color: var(--navy-950);
}

button,
input {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--mint-400);
    outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.65rem, 5.4vw, 5rem);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
}

h4 {
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--navy-950);
    background: var(--mint-400);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow,
.card-label,
.panel-kicker {
    margin-bottom: 0.65rem;
    color: var(--blue-700);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--coral-600);
    box-shadow: 0 10px 22px rgba(185, 66, 48, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: #ffffff;
    background: #963425;
}

.btn-secondary {
    color: var(--navy-950);
    background: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    color: var(--navy-950);
    background: var(--mint-100);
    border-color: var(--mint-100);
}

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

.btn-outline:hover,
.btn-outline:focus-visible {
    color: #ffffff;
    background: var(--navy-900);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue-700);
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(0.2rem);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(18, 60, 90, 0.1);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(10, 38, 57, 0.12);
}

.nav {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    flex: 0 1 auto;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy-950);
    text-decoration: none;
}

.brand:hover {
    color: var(--navy-950);
}

.brand-mark {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 0.85rem;
    color: #ffffff;
    background: var(--navy-900);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: inset 0 -0.3rem 0 var(--mint-400);
}

.brand-copy {
    display: grid;
    line-height: 1.2;
}

.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

.brand-copy span {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.75rem;
}

.nav-menu,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-menu {
    gap: 1.1rem;
}

.nav-links {
    gap: 0.15rem;
}

.nav-links a {
    padding: 0.65rem 0.55rem;
    border-radius: 0.45rem;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="true"] {
    color: var(--navy-900);
    background: var(--blue-050);
}

.btn-header {
    min-height: 2.65rem;
    padding-inline: 0.95rem;
    color: #ffffff;
    background: var(--navy-900);
    font-size: 0.85rem;
}

.btn-header:hover,
.btn-header:focus-visible {
    color: #ffffff;
    background: var(--navy-950);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 0.3rem;
    border-radius: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0 0;
    color: #ffffff;
    background: var(--navy-950);
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.hero::before {
    top: -15rem;
    right: -8rem;
    width: 39rem;
    height: 39rem;
    border: 1px solid rgba(110, 211, 193, 0.28);
    box-shadow: inset 0 0 0 6rem rgba(29, 102, 133, 0.15), inset 0 0 0 12rem rgba(255, 255, 255, 0.025);
}

.hero::after {
    bottom: -17rem;
    left: 22%;
    width: 28rem;
    height: 28rem;
    background: rgba(29, 102, 133, 0.2);
    filter: blur(2px);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    gap: clamp(2.5rem, 6vw, 6.5rem);
    align-items: center;
}

.hero .eyebrow {
    color: var(--mint-400);
}

.hero h1 {
    max-width: 13ch;
    color: #ffffff;
}

.hero-intro {
    max-width: 39rem;
    margin-bottom: 2rem;
    color: #d8e6ec;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-panel {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}



.panel-kicker {
    color: var(--mint-400);
}

.contact-panel h2 {
    max-width: 12ch;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.panel-phone {
    display: inline-block;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.panel-phone:hover,
.contact-panel a:hover {
    color: var(--mint-400);
}

.contact-panel p {
    color: #d8e6ec;
}

.panel-divider {
    height: 1px;
    margin-block: 1.4rem;
    background: rgba(255, 255, 255, 0.18);
}

.after-hours {
    margin-bottom: 0;
}

.after-hours a {
    color: #ffffff;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(3.5rem, 7vw, 6rem);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-highlights span {
    padding: 1.2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    color: #e5f0f4;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.hero-highlights span:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.content-section,
.contact-section {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-heading {
    max-width: 43rem;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-heading > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.service-card {
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
    color: var(--ink);
    border-color: var(--mint-400);
    box-shadow: 0 18px 42px rgba(10, 38, 57, 0.12);
    transform: translateY(-0.35rem);
}

.service-card:nth-child(2) {
    transform: translateY(1.25rem);
}

.service-card:nth-child(2):hover,
.service-card:nth-child(2):focus-visible {
    transform: translateY(0.9rem);
}

.card-number {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2rem;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--mint-100);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.service-card p {
    color: var(--muted);
}

.service-card .text-link {
    margin-top: auto;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 4rem;
}

.detail-card {
    padding: 1.35rem;
    border-top: 4px solid var(--mint-400);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: var(--blue-050);
}

.detail-card h3 {
    font-size: 1.25rem;
}

.detail-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.process-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4.5rem, 8vw, 7rem);
    color: #ffffff;
    background: var(--blue-700);
}

.process-section::after {
    position: absolute;
    right: -8rem;
    bottom: -10rem;
    width: 24rem;
    height: 24rem;
    border: 3rem solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.process-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.section-heading-light .eyebrow {
    color: var(--mint-400);
}

.section-heading-light h2,
.section-heading-light > p:not(.eyebrow) {
    color: #ffffff;
}

.steps-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.steps-list li:first-child {
    padding-top: 0;
}

.steps-list h3,
.steps-list p {
    color: #ffffff;
}

.steps-list h3 {
    margin-bottom: 0.3rem;
}

.steps-list p {
    margin-bottom: 0;
    opacity: 0.82;
}

.step-number {
    display: grid;
    width: 3.1rem;
    height: 3.1rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--mint-400);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.about-copy > p:not(.eyebrow) {
    max-width: 43rem;
    color: var(--muted);
}

.about-copy .lead {
    color: var(--ink);
    font-size: 1.15rem;
}

.about-highlights {
    display: grid;
    margin-top: 2rem;
    border-top: 1px solid var(--line);
}

.about-highlights article {
    display: grid;
    grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr);
    gap: 1.5rem;
    padding-block: 1.15rem;
    border-bottom: 1px solid var(--line);
}

.about-highlights h3 {
    margin-bottom: 0;
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1.45;
}

.about-highlights p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.faq-grid {
    display: grid;
    gap: 0.7rem;
}

.faq-grid details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.faq-grid summary {
    position: relative;
    padding: 1.15rem 3.2rem 1.15rem 1.2rem;
    color: var(--navy-950);
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    list-style: none;
}

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

.faq-grid summary::after {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--mint-100);
    content: "+";
    font-family: sans-serif;
    font-size: 1.1rem;
    transform: translateY(-50%);
}

.faq-grid details[open] summary::after {
    content: "−";
}

.faq-grid details[open] summary {
    border-bottom: 1px solid var(--line);
}

.faq-grid details p {
    margin: 0;
    padding: 1rem 1.2rem 1.2rem;
    color: var(--muted);
}

.contact-section {
    color: #ffffff;
    background: var(--navy-950);
}

.contact-summary-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 1rem;
}

.contact-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
}

.contact-card .card-label {
    color: var(--mint-400);
}

.contact-card h3,
.contact-card h3 a,
.contact-card p,
.contact-card a {
    color: #ffffff;
}

.contact-card h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.callout-note {
    margin-top: 1.5rem;
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--coral-500);
    background: rgba(255, 255, 255, 0.06);
}

.hours-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.hours-list li {
    display: grid;
    gap: 0.15rem;
    padding: 0.3rem 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-list li:first-child {
    padding-left: 0;
    border-left: 0;
}

.hours-list span:first-child {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.hours-list span:last-child {
    color: #c6d9e1;
    font-size: 0.78rem;
}

.small-copy {
    margin-top: 1.5rem;
    color: #c6d9e1 !important;
    font-size: 0.88rem;
}

.locations-heading {
    margin-top: clamp(3.5rem, 7vw, 6rem);
}

.locations-heading h3 {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 2rem;
}

.locations-heading p {
    color: #c6d9e1;
}

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

.location-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.location-copy {
    padding: 1.4rem;
}

.location-copy .card-label {
    color: var(--blue-700);
}

.location-copy h4 {
    color: var(--navy-950);
}

.location-copy address {
    margin-bottom: 1rem;
    color: var(--muted);
    font-style: normal;
}

.location-card iframe {
    width: 100%;
    height: 15rem;
    border: 0;
    border-top: 1px solid var(--line);
}

.site-footer {
    padding-block: 2.2rem;
    color: #c3d2d9;
    background: #061a27;
}

.footer-layout {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
}

.site-footer p {
    margin: 0.25rem 0 0;
    font-size: 0.86rem;
}

@media (max-width: 67rem) {
    :root {
        --header-height: 4.6rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100vh - var(--header-height));
        gap: 1rem;
        padding: 1rem 1.5rem 1.5rem;
        overflow-y: auto;
        border-top: 1px solid var(--line);
        background: #ffffff;
        box-shadow: 0 18px 30px rgba(10, 38, 57, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.8rem);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header.menu-open .nav-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header.menu-open .nav-toggle > span:nth-of-type(2) {
        transform: translateY(0.5rem) rotate(45deg);
    }

    .site-header.menu-open .nav-toggle > span:nth-of-type(3) {
        opacity: 0;
    }

    .site-header.menu-open .nav-toggle > span:nth-of-type(4) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }

    .nav-links {
        display: grid;
    }

    .nav-links a {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .btn-header {
        width: 100%;
    }

    .hours-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 1rem;
    }

    .hours-list li:nth-child(4) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 52rem) {
    .hero-layout,
    .process-layout,
    .about-layout,
    .faq-section,
    .callback-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 44rem;
    }

    .contact-panel {
        max-width: 34rem;
    }

    .services-grid,
    .service-details,
    .patients-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(2):hover,
    .service-card:nth-child(2):focus-visible {
        transform: none;
    }

    .service-card .text-link {
        margin-top: 1.2rem;
    }

    .service-details {
        margin-top: 2rem;
    }

    .doctor-portrait {
        min-height: 22rem;
    }

    .patient-card {
        min-height: auto;
    }

    .patient-card h3 {
        min-height: 0;
    }

    .patient-card > .text-link,
    .patient-actions {
        margin-top: 1.2rem;
    }

    .contact-summary-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .callback-layout {
        gap: 2rem;
    }
}

@media (max-width: 38rem) {
    :root {
        --header-height: 4.35rem;
    }

    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    .brand-copy span {
        display: none;
    }

    .brand-mark {
        width: 2.4rem;
        height: 2.4rem;
    }

    .hero {
        padding-top: 3.7rem;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.2rem);
    }

    .hero-actions,
    .patient-actions {
        display: grid;
    }

    .hero-actions .btn,
    .patient-actions .btn,
    .callback-copy .btn,
    .form-submit {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        margin-top: 3.5rem;
    }

    .hero-highlights span,
    .hero-highlights span:first-child {
        padding-block: 0.85rem;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
        border-left: 0;
    }

    .about-highlights article {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

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

    .hours-list li:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .hours-list li:nth-child(4) {
        padding-left: 0.75rem;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

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

    .footer-layout {
        display: grid;
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Doctor revisions: phone appointments, documentary photos and unnumbered care points. */
.hero h1 { max-width: 17ch; font-size: clamp(2.35rem, 4.7vw, 4.2rem); }
.hero-location { color: var(--mint-400); margin: -0.5rem 0 1.75rem; font-weight: 700; }
.service-card { min-height: 17rem; box-shadow: none; }
.service-card:nth-child(2), .service-card:hover, .service-card:nth-child(2):hover {
    transform: none; border-color: var(--line); box-shadow: none;
}
.service-card p { margin-bottom: 0; }
.service-details { margin-top: 1.5rem; }
.detail-card p + p { margin-top: 1rem; }
.care-points li { grid-template-columns: 0.6rem minmax(0, 1fr); }
.care-points li::before {
    content: ""; width: 0.5rem; height: 0.5rem; margin-top: 0.65rem;
    border-radius: 50%; background: var(--mint-400);
}
.doctor-photo { margin: 0; padding: 2rem; background: var(--blue-100); border-radius: var(--radius-lg); }
.doctor-photo img { width: min(100%, 16rem); height: auto; margin-inline: auto; border-radius: 0.65rem; }
.doctor-photo figcaption { margin-top: 1rem; color: var(--navy-900); font-size: 0.9rem; text-align: center; }
.office-photo { margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.office-photo img { width: 100%; height: auto; }
.office-photo figcaption { padding: 0.7rem 1rem; background: var(--blue-100); color: var(--navy-900); font-size: 0.9rem; }
.lobby-photo { margin-inline: auto; margin-bottom: clamp(3rem, 6vw, 5rem); }
.team-photo { margin-top: clamp(3rem, 6vw, 5rem); }
.exterior-photo { margin-bottom: 1.5rem; }
.location-note { display: inline-block; padding: 0.25rem 0.65rem; border-radius: 0.4rem; color: var(--navy-900); background: var(--mint-100); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 67rem) {
    .nav-menu { visibility: hidden; }
    .site-header.menu-open .nav-menu { visibility: visible; }
    html:not(.js-enabled) .nav { flex-wrap: wrap; padding-block: 0.75rem; }
    html:not(.js-enabled) .nav-toggle { display: none; }
    html:not(.js-enabled) .nav-menu { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; width: 100%; max-height: none; }
}
@media (max-width: 38rem) {
    .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .brand { gap: 0.5rem; min-width: 0; }
    .nav { gap: 0.5rem; }
    .nav-toggle { flex-shrink: 0; }
    .brand-copy strong { font-size: 0.88rem; }
    .doctor-photo { padding: 1.25rem; }
}
