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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #C8006A 0%, #7022CC 55%, #2233CC 100%);
    padding: 36px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 10px 32px rgba(0,0,0,0.30));
}

.hero-name {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.95);
    text-indent: 8px;
}

.hero-doctors {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.5px;
}

.hero-tagline {
    margin-top: 8px;
    font-size: 10.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.70);
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

/* ── CONTACT BAR ── */
.contact-bar {
    background: #fff;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #C8006A, #2233CC) 1;
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}

.contact-sep {
    width: 1px;
    height: 32px;
    background: #e0e0e0;
}

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

.contact-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C8006A;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 13px;
    color: #444;
    font-weight: 400;
}

.contact-value a {
    color: #C8006A;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s, opacity 0.2s;
}

.contact-value a:hover { opacity: 0.75; }

/* ── TAGLINE ── */
.tagline-section {
    background: #faf9fb;
    border-bottom: 1px solid #eee;
    padding: 48px 40px;
    text-align: center;
}

.tagline-text {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15.5px;
    font-weight: 300;
    color: #444;
    line-height: 1.85;
    letter-spacing: 0.2px;
    text-wrap: balance;
}

.tagline-text strong {
    font-weight: 600;
    color: #2233CC;
}

/* ── SERVICES ── */
.services-section {
    padding: 68px 40px 72px;
    max-width: 900px;
    margin: 0 auto;
}

.section-eyebrow {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #C8006A;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-rule {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #C8006A, #2233CC);
    margin: 0 auto 52px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 52px;
}

.service-col h3 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2233CC;
    padding-bottom: 11px;
    margin-bottom: 16px;
    border-bottom: 1.5px solid #eee;
    position: relative;
}

.service-col h3::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 44px;
    height: 1.5px;
    background: linear-gradient(90deg, #C8006A, #2233CC);
}

.service-col ul {
    list-style: none;
}

.service-col ul li {
    font-size: 13.5px;
    color: #555;
    font-weight: 400;
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.4;
}

.service-col ul li:last-child { border-bottom: none; }

.therapy-list {
    columns: 2;
    column-gap: 40px;
    list-style: none;
}

.therapy-list li {
    font-size: 13.5px;
    color: #555;
    font-weight: 400;
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.4;
    break-inside: avoid;
}

.expertise-col {
    margin-top: 52px;
}

.expertise-col h3 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2233CC;
    padding-bottom: 11px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid #eee;
    position: relative;
}

.expertise-col h3::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 44px;
    height: 1.5px;
    background: linear-gradient(90deg, #C8006A, #2233CC);
}

.expertise-list {
    columns: 3;
    column-gap: 40px;
    list-style: none;
}

.expertise-list li {
    font-size: 13.5px;
    color: #555;
    font-weight: 400;
    padding: 7px 0;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.4;
    break-inside: avoid;
}

/* ── MAP ── */
.map-section {
    background: #faf9fb;
    padding: 48px 40px;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #C8006A, #2233CC) 1;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    line-height: 0;
}

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, #C8006A 0%, #7022CC 55%, #2233CC 100%);
    padding: 52px 24px 36px;
    text-align: center;
}

.footer-script {
    font-family: 'Great Vibes', cursive;
    font-size: 38px;
    color: #fff;
    margin-bottom: 4px;
}

.footer-rule {
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.45);
    margin: 20px auto;
}

.footer-address {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 28px;
}

.footer-contacts a {
    font-size: 12.5px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-email {
    font-size: 12.5px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-email:hover { color: #fff; }

.footer-doctors {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .therapy-list {
        columns: 1;
    }
    .expertise-list {
        columns: 2;
    }
    .contact-bar {
        padding: 20px 24px;
        gap: 20px;
    }
    .contact-sep { display: none; }
    .services-section { padding: 52px 28px 60px; }
}

@media (max-width: 420px) {
    .expertise-list {
        columns: 1;
    }
}
