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

:root {
    --burgundy:    #7B2D3B;
    --burgundy-dk: #5E1F2B;
    --blush:       #F5E6E8;
    --blush-lt:    #FBF3F4;
    --cream:       #FDF8F9;
    --neutral:     #F7F5F5;
    --gray-100:    #F0EEEE;
    --gray-200:    #E2DED E;
    --gray-400:    #9E9A9A;
    --gray-600:    #6B6565;
    --gray-800:    #2E2828;
    --gray-900:    #1A1515;
    --white:       #FFFFFF;
    --font-sans:   'Inter', system-ui, sans-serif;
    --font-serif:  'Playfair Display', Georgia, serif;
    --shadow-sm:   0 1px 3px rgba(30,20,20,.08);
    --shadow-md:   0 4px 16px rgba(30,20,20,.10);
    --shadow-lg:   0 8px 32px rgba(30,20,20,.12);
    --radius:      8px;
    --radius-lg:   12px;
    --transition:  .25s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy-dk); }
ul { list-style: none; }
address { font-style: normal; }

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

/* ── Typography ───────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

.lead-paragraph {
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .9375rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn-primary:hover {
    background: var(--burgundy-dk);
    border-color: var(--burgundy-dk);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}
.logo:hover { color: var(--burgundy); }

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--burgundy);
    border-radius: 6px;
    position: relative;
}
.logo-mark::before,
.logo-mark::after {
    content: '';
    position: absolute;
    background: var(--white);
    border-radius: 1px;
}
.logo-mark::before {
    top: 50%;
    left: 6px;
    right: 6px;
    height: 3px;
    transform: translateY(-50%);
}
.logo-mark::after {
    left: 50%;
    top: 6px;
    bottom: 6px;
    width: 3px;
    transform: translateX(-50%);
}

.main-nav ul {
    display: flex;
    gap: 32px;
}
.main-nav a:not(.btn) {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--gray-600);
}
.main-nav a:not(.btn):hover { color: var(--burgundy); }

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    margin-top: 72px;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-accent {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,230,232,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,230,232,.15);
    border: 1px solid rgba(245,230,232,.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--blush);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #6BCB77;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stats li {
    display: flex;
    flex-direction: column;
}
.hero-stats strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.hero-stats span {
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 640/720;
}

/* ── Services ─────────────────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--neutral);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--blush);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--burgundy);
}
.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.service-card p {
    font-size: .9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/520;
}

.about-values {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-values li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9375rem;
    color: var(--gray-800);
    line-height: 1.6;
}
.about-values svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--burgundy);
    margin-top: 2px;
}

/* ── Patient Info ─────────────────────────────────────── */
.patient-info {
    padding: 80px 0;
    background: var(--burgundy);
}
.patient-info .section-label { color: var(--blush); }
.patient-info .section-title { color: var(--white); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-block {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
}
.info-block h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}
.info-block p {
    font-size: .9375rem;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
}
.info-block a {
    color: var(--blush);
    font-weight: 600;
}
.info-block a:hover { color: var(--white); }

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .9375rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: rgba(255,255,255,.7); }
.hours-list .time { color: var(--white); font-weight: 600; }

/* ── Contact ──────────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info address p {
    font-size: .9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}
.contact-info address strong { color: var(--gray-900); }
.contact-info address a { color: var(--burgundy); }

.contact-info .section-desc { margin-bottom: 28px; }

.map-container {
    margin-top: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560/280;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.form-note {
    font-size: .875rem;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123,45,59,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy {
    font-size: .75rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 14px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    width: 56px;
    height: 56px;
    color: #6BCB77;
    margin: 0 auto 16px;
}
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.form-success p {
    font-size: .9375rem;
    color: var(--gray-600);
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-brand .logo-mark { width: 28px; height: 28px; }
.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
}
.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.55);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p {
    font-size: .875rem;
    line-height: 1.8;
    color: rgba(255,255,255,.55);
}
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: .8125rem;
    color: rgba(255,255,255,.35);
}

/* ── Scroll Reveal (progressive enhancement) ─────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform .3s ease, opacity .3s ease;
        pointer-events: none;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }
    .main-nav a:not(.btn) { font-size: 1.05rem; }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }
    .hero-image { max-height: 360px; }
    .hero-image img { aspect-ratio: auto; }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { order: -1; max-height: 320px; }
    .about-image img { aspect-ratio: auto; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 24px; }
}
