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

:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --teal-light: #14b8a6;
    --teal-pale: #f0fdfa;
    --teal-muted: #ccfbf1;
    --cyan-pale: #ecfeff;
    --blue-pale: #f0f9ff;
    --navy: #0f172a;
    --ink: #1f2937;
    --ink-mid: #475569;
    --ink-soft: #64748b;
    --ink-faint: #94a3b8;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --white: #ffffff;
    --green: #16a34a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--navy);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 200;
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
}

.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;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
                transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    z-index: -1;
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--ink-mid);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ─── NAV DROPDOWN ──────────────────────────────────────── */
.nav-dropdown {
    position: relative;
    cursor: pointer;
}

.nav-dropdown > button {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: var(--ink-mid);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0;
    transition: color 0.2s;
    position: relative;
}

.nav-dropdown > button::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

.nav-dropdown > button:hover,
.nav-dropdown > button[aria-expanded="true"] {
    color: var(--teal);
}

.nav-dropdown > button:hover::after,
.nav-dropdown > button[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.nav-dropdown > button svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown > button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: 0.5rem;
    z-index: 110;
    list-style: none;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--border);
}

.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--white);
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-mid);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    cursor: pointer;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: var(--teal-pale);
    color: var(--teal);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    border: none;
    font-family: inherit;
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal-pale);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    box-shadow: 0 4px 8px rgba(13, 148, 136, 0.3);
    transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--cyan-pale) 50%, var(--blue-pale) 100%);
    min-height: calc(100vh - 72px);
    padding-top: 72px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: 'p22-mackinac-pro', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--teal);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.stat { text-align: left; }

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--ink-soft);
}

/* Hero Visual / Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-self: stretch;
}

.hero-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    z-index: -1;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    border-radius: 50%;
    z-index: -1;
}

.doctor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.doctor-avatar svg {
    width: 40px;
    height: 40px;
    color: white;
}

.hero-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.hero-card p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: var(--teal-pale);
    color: var(--teal);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 500;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--teal-pale); }
.section-dark { background: var(--navy); color: white; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--teal);
}

.section-heading {
    font-family: 'p22-mackinac-pro', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    max-width: 520px;
}

.section-heading em {
    font-style: italic;
    color: var(--teal);
}

/* ─── SERVICES GRID ──────────────────────────────────────── */
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.services-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-mid);
    max-width: 360px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}

.section-alt .service-card {
    background: var(--white);
    border-color: transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--teal);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ink-mid);
    margin-bottom: 1.5rem;
}

.service-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.1);
}

.about-img-float {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 52%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--navy);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.08);
}

.img-placeholder {
    background-color: rgba(13, 148, 136, 0.06);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(13, 148, 136, 0.06) 8px,
        rgba(13, 148, 136, 0.06) 9px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.5;
    user-select: none;
    width: 100%;
    height: 100%;
}

.section-dark .img-placeholder {
    background-color: rgba(255, 255, 255, 0.06);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.06) 8px,
        rgba(255, 255, 255, 0.06) 9px
    );
    color: rgba(255, 255, 255, 0.5);
}

.section-dark .section-label { color: var(--teal-light); }
.section-dark .section-label::before { background: var(--teal-light); }
.section-dark .section-heading { color: white; max-width: 100%; }

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0 2.5rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-point svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--teal-light);
}

/* ─── HIGHLIGHT STRIP ────────────────────────────────────── */
.strip {
    background: var(--teal);
    padding: 3.5rem 0;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.strip-item {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-item:last-child { border-right: none; }

.strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-text .t1 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.strip-text .t2 {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.section-alt .info-icon { background: var(--white); }

.info-icon svg { color: var(--teal); }

.info-text .label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.info-text .val {
    font-size: 0.9375rem;
    color: var(--ink);
    line-height: 1.6;
}

.info-text .val a {
    color: var(--ink);
    transition: color 0.2s;
}

.info-text .val a:hover { color: var(--teal); }

.contact-cta {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.form-section {
    padding: 100px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.375rem;
}

.form-group label .required {
    color: #dc2626;
    margin-left: 0.125rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

[data-mf-feedback] {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    line-height: 1.5;
}

[data-mf-feedback][data-status="success"] {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

[data-mf-feedback][data-status="error"] {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ─── LEGAL PAGES ───────────────────────────────────────── */
.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.5rem 0 0.75rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 2rem 0 0.5rem;
}

.legal-content p {
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(13, 148, 136, 0.3);
    text-underline-offset: 2px;
}

.legal-content a:hover {
    text-decoration-color: var(--teal);
}

.legal-updated {
    font-size: 0.8125rem;
    color: var(--ink-faint);
    margin-top: 3rem;
}

/* ─── PATIENT INFO PAGE ────────────────────────────────── */
.patient-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.patient-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.patient-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.patient-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal-pale), var(--teal-muted));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--teal);
}

.patient-info-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.patient-info-body {
    color: var(--ink-mid);
    font-size: 0.9375rem;
    line-height: 1.8;
    flex: 1;
}

.patient-info-body p {
    margin-bottom: 0.5rem;
}

.patient-info-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.patient-info-actions .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Policy cards */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.policy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.policy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.policy-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--teal);
}

.policy-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.policy-body {
    color: var(--ink-mid);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.policy-body p {
    margin-bottom: 0.5rem;
}

.policy-body a {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(13, 148, 136, 0.3);
    text-underline-offset: 2px;
}

.policy-body a:hover {
    text-decoration-color: var(--teal);
}

@media (max-width: 768px) {
    .patient-info-grid {
        grid-template-columns: 1fr;
    }
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── HOURS TABLE ───────────────────────────────────────── */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    vertical-align: top;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--ink);
    padding-right: 1.5rem;
    white-space: nowrap;
}

.hours-table td:last-child {
    color: var(--ink-mid);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--navy);
    padding: 3.5rem 0 2rem;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.25rem;
}

.footer-col h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.25rem;
}

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

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

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

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-col p a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .mf-email {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .mf-email:hover { color: white; }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--cyan-pale) 100%);
    padding: 8rem 0 4rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--ink-mid);
    max-width: 600px;
    line-height: 1.7;
}

/* ─── TEAM GRID ──────────────────────────────────────────── */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.team-card {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    overflow: hidden;
}

.team-avatar svg {
    width: 36px;
    height: 36px;
    color: white;
}

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.875rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card .bio {
    font-size: 0.875rem;
    color: var(--ink-mid);
    line-height: 1.6;
}

/* ─── DOCTORS PAGE ──────────────────────────────────────── */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.doctor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.doctor-card .doctor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 4px var(--teal-pale), var(--shadow-sm);
}

.doctor-card .doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.doctor-card .doctor-avatar svg {
    width: 48px;
    height: 48px;
    color: white;
    position: absolute;
}

.doctor-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.doctor-qualifications {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.doctor-card .bio {
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.doctor-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.doctor-meta-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ink-mid);
    line-height: 1.5;
    text-align: center;
}

.doctor-meta-item svg {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
}

.doctor-book-btn {
    margin-top: auto;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
}

.doctor-days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--ink-faint);
    margin-top: 0.75rem;
}

.doctor-days svg {
    color: var(--ink-faint);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--ink-mid);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
    padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.mobile-menu ul a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-mid);
    transition: background 0.2s, color 0.2s;
}

.mobile-menu ul a:hover,
.mobile-menu ul a.active {
    background: var(--teal-pale);
    color: var(--teal);
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-mid);
    transition: background 0.2s, color 0.2s;
}

.mobile-submenu-toggle:hover {
    background: var(--teal-pale);
    color: var(--teal);
}

.mobile-submenu-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.mobile-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-submenu-toggle[aria-expanded="true"] {
    color: var(--teal);
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 1rem;
}

.mobile-submenu.open {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-submenu a {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-mid);
    transition: background 0.2s, color 0.2s;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
    background: var(--teal-pale);
    color: var(--teal);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-buttons .btn {
    justify-content: center;
    width: 100%;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-inner {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }

    .hero-img {
        min-height: 0;
        max-height: 320px;
        border-radius: var(--radius-md);
    }

    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-float { right: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .strip-grid { grid-template-columns: repeat(2, 1fr); }
    .strip-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
    .nav-buttons { display: none; }
    .container { padding: 0 1.25rem; }
    .section { padding: 5rem 0; }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat { text-align: center; }

    .services-grid { grid-template-columns: 1fr; }
    .strip-grid { grid-template-columns: 1fr; }
    .strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .strip-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img-float { display: none; }
    .page-hero { padding: 6rem 0 3rem; }
    .team-card { flex: 0 0 100%; }
}

/* ─── FOCUS STYLES ──────────────────────────────────────── */
.service-card:focus-within,
a.service-card:focus {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.footer-col ul li a,
.footer-col p a,
.info-text .val a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 2px;
}

.info-text .val a {
    text-decoration-color: var(--border);
}

.info-text .val a:hover {
    text-decoration-color: var(--teal);
}

.footer-col ul li a:hover,
.footer-col p a:hover {
    text-decoration-color: white;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
