:root{
    --primary:#AD2B35;
    --primary-dark:#8F1F2A;
    --primary-light:#C84B58;
    --accent:#E98B95;
    --bg-soft:#FAF6F6;
    --bg-grey:#F3F5F7;
    --text:#2D3136;
    --text-light:#6B7280;

    --blue:#AD2B35;
    --blue-dark:#8F1F2A;
    --green:#C84B58;
    --green-dark:#AD2B35;
    --slate:#2D3136;
    --muted:#6B7280;
    --light:#FAF6F6;
    --line:#E3E7EB;
    --white:#ffffff;
    --shadow:0 18px 45px rgba(15,23,42,.10);
    --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color:var(--slate);
    background:linear-gradient(180deg,#FAF6F6 0%,#F3F5F7 55%,#FAF6F6 100%);
    line-height:1.6;
}
a{color:inherit}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(226,232,240,.9);
}
.header-inner{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    min-height:82px;
    display:flex;
    align-items:center;
    gap:28px;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:220px;
    text-decoration:none;
    font-weight:700;
    line-height:1.1;
    color:var(--slate);
}
.brand-logo{width:42px;height:42px;display:block}
.main-nav{margin-left:auto}
.main-nav ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    gap:6px;
}
.main-nav li{position:relative}
.main-nav a{
    display:block;
    padding:12px 14px;
    border-radius:999px;
    text-decoration:none;
    font-weight:650;
    font-size:15px;
    color:#3F454C;
    transition:.2s ease;
}
.main-nav li.active>a,
.main-nav a:hover{
    background:#FAF0F1;
    color:var(--blue);
}
.submenu{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    min-width:230px;
    display:none !important;
    padding:10px !important;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
}
.has-submenu:hover .submenu{display:block !important}
.submenu a{border-radius:12px;white-space:nowrap}
.header-rdv{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:max-content;
    padding:12px 18px;
    border-radius:999px;
    background:var(--blue);
    color:#fff;
    text-decoration:none;
    font-weight:750;
    box-shadow:0 12px 24px rgba(173,43,53,.22);
}
.nav-toggle{
    display:none;
    margin-left:auto;
    width:44px;
    height:44px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
}
.nav-toggle span{
    display:block;
    width:20px;
    height:2px;
    margin:5px auto;
    background:#2D2527;
    border-radius:999px;
}

.clinic-home,
.page-simple{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}

.hero{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,.92fr);
    gap:56px;
    align-items:center;
    margin:54px 0 28px;
    padding:58px;
    border-radius:var(--radius);
    background:linear-gradient(135deg,#ffffff 0%,#FAF0F1 100%);
    box-shadow:var(--shadow);
    overflow:hidden;
}
.hero:before{
    content:"";
    position:absolute;
    inset:auto auto -170px -170px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(173,43,53,.08);
}
.hero-copy{position:relative;z-index:1}
.eyebrow{
    margin:0 0 14px;
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:.12em;
    font-weight:800;
    font-size:13px;
}
.hero h1{
    margin:0 0 22px;
    font-size:clamp(42px,5vw,68px);
    line-height:1.03;
    letter-spacing:-.06em;
    color:#25282D;
}
.hero h1 span{display:block;color:var(--blue)}
.lead{
    margin:0 0 18px;
    font-size:clamp(20px,2.2vw,27px);
    line-height:1.35;
    color:#3F454C;
    font-weight:650;
}
.intro{
    margin:0;
    color:var(--muted);
    font-size:17px;
    max-width:650px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:36px;
    width:100%;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    padding:15px 24px;
    border:0;
    border-radius:16px;
    text-decoration:none;
    font-weight:850;
    font-size:16px;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{
    background:var(--blue);
    color:#fff;
    box-shadow:0 16px 28px rgba(173,43,53,.24);
}
.btn-primary:hover{background:var(--blue-dark)}
.btn-phone{
    background:var(--green);
    color:#fff;
    box-shadow:0 16px 28px rgba(200,75,88,.22);
}
.btn-phone:hover{background:var(--green-dark)}
.btn-light{
    background:#fff;
    color:var(--blue);
    box-shadow:0 12px 22px rgba(15,23,42,.12);
}
.hero-visual{position:relative;z-index:1}
.hero-image-wrap{
    position:relative;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 24px 60px rgba(15,23,42,.20);
    background:#F1D6D9;
    aspect-ratio:16/10;
}
.hero-image-wrap img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.02);
    transition:transform .55s ease;
}
.hero:hover .hero-image-wrap img{transform:scale(1.06)}
.floating-badge{
    position:absolute;
    right:20px;
    bottom:20px;
    display:grid;
    gap:2px;
    place-items:center;
    min-width:150px;
    padding:18px 16px;
    border-radius:22px;
    background:rgba(255,255,255,.94);
    box-shadow:0 18px 35px rgba(15,23,42,.18);
    text-align:center;
}
.floating-badge span{font-size:30px;line-height:1}
.floating-badge strong{font-size:15px;color:#0f172a}
.floating-badge small{color:var(--muted)}

.quick-info{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin:22px 0 72px;
}
.info-card{
    display:flex;
    align-items:flex-start;
    gap:16px;
    min-height:156px;
    padding:22px;
    border-radius:22px;
    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    box-shadow:0 12px 28px rgba(15,23,42,.07);
    transition:.22s ease;
}
.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 36px rgba(15,23,42,.10);
}
.info-card img{width:52px;height:52px;flex:0 0 auto}
.info-card h2{
    margin:2px 0 8px;
    font-size:20px;
    letter-spacing:-.03em;
    color:#25282D;
}
.info-card p{
    margin:0;
    color:var(--muted);
    font-size:15px;
    line-height:1.5;
}

.section-block{margin:0 0 72px}
.section-title{
    max-width:780px;
    margin:0 auto 30px;
    text-align:center;
}
.section-title.compact{margin-bottom:22px}
.section-title h2{
    margin:0 0 12px;
    font-size:clamp(32px,4vw,48px);
    line-height:1.08;
    letter-spacing:-.055em;
    color:#25282D;
}
.section-title p:not(.eyebrow){
    margin:0;
    color:var(--muted);
    font-size:18px;
}
.specialty-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.specialty-grid article{
    padding:28px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    box-shadow:0 10px 24px rgba(15,23,42,.06);
    transition:.22s ease;
}
.specialty-grid article:hover{
    transform:translateY(-5px);
    border-color:#E7BFC4;
}
.specialty-grid span{
    display:grid;
    place-items:center;
    width:52px;
    height:52px;
    border-radius:18px;
    background:#FAF0F1;
    font-size:26px;
    margin-bottom:18px;
}
.specialty-grid h3{
    margin:0 0 8px;
    font-size:22px;
    letter-spacing:-.035em;
}
.specialty-grid p{
    margin:0;
    color:var(--muted);
}

.why-us{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
}
.why-card{
    padding:34px;
    border-radius:26px;
    background:#fff;
    box-shadow:var(--shadow);
    border:1px solid rgba(226,232,240,.9);
}
.why-card.accent{
    background:linear-gradient(135deg,var(--blue) 0%,#7A1A23 100%);
    color:#fff;
}
.why-icon img{width:58px;height:58px;margin-bottom:18px}
.why-card h2{
    margin:0 0 18px;
    font-size:clamp(28px,3vw,38px);
    line-height:1.1;
    letter-spacing:-.05em;
}
.why-card ul{margin:0;padding-left:20px;color:#475569}
.why-card li{margin:10px 0}
.why-card.accent p{color:rgba(255,255,255,.86)}
.big-phone{font-size:24px;font-weight:900;margin:8px 0 8px!important}
.big-phone a{text-decoration:none;color:#fff}

.map-card{
    height:380px;
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(226,232,240,.9);
    background:#E8E2E3;
}
.map-card iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.site-footer{
    margin-top:74px;
    padding:32px 0 92px;
    background:#2D2527;
    color:#F3E9EA;
}
.footer-inner{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.footer-actions{display:flex;gap:12px;flex-wrap:wrap}
.footer-actions a{
    display:inline-flex;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    color:#fff;
    text-decoration:none;
    font-weight:750;
}

.page-simple{padding:54px 0}
.content-card{
    background:#fff;
    border-radius:28px;
    padding:min(7vw,70px);
    box-shadow:var(--shadow);
}
.content-card h1{
    margin-top:0;
    font-size:clamp(36px,5vw,58px);
    letter-spacing:-.055em;
}
.content-card img{max-width:100%;height:auto;border-radius:18px}

.mobile-sticky-actions{
    display:none;
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:60;
    grid-template-columns:1fr 1fr;
    gap:10px;
}
.mobile-sticky-actions a{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:14px 12px;
    border-radius:16px;
    color:#fff;
    text-decoration:none;
    font-weight:900;
    box-shadow:0 14px 28px rgba(15,23,42,.22);
}
.mobile-sticky-actions a:first-child{background:var(--green)}
.mobile-sticky-actions a:last-child{background:var(--blue)}

@media(max-width:1100px){
    .hero{grid-template-columns:1fr;gap:34px;padding:40px}
    .hero-visual{order:-1}
    .quick-info{grid-template-columns:repeat(2,minmax(0,1fr))}
    .specialty-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .why-us{grid-template-columns:1fr}
    .main-nav{display:none;position:absolute;left:20px;right:20px;top:78px;background:#fff;border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow);padding:12px}
    .main-nav.is-open{display:block}
    .main-nav ul{display:block}
    .main-nav a{border-radius:14px}
    .submenu{position:static;display:block !important;box-shadow:none;border:0;background:#f8fafc;margin:4px 0 8px 14px;min-width:auto}
    .nav-toggle{display:block}
    .header-rdv{display:true}
}
@media(max-width:720px){
    .header-inner,.clinic-home,.page-simple,.footer-inner{width:min(100% - 24px,1180px)}
    .brand{min-width:auto;font-size:14px}
    .brand-logo{width:36px;height:36px}
    .hero{padding:24px;border-radius:22px;margin-top:24px}
    .hero-image-wrap{aspect-ratio:4/3}
    .floating-badge{right:12px;bottom:12px;min-width:120px;padding:12px}
    .hero-buttons{justify-content:stretch}
    .btn{width:100%}
    .quick-info{grid-template-columns:1fr;margin-bottom:50px}
    .info-card{min-height:auto}
    .specialty-grid{grid-template-columns:1fr}
    .section-block{margin-bottom:52px}
    .map-card{height:320px}
    .footer-inner{display:block}
    .footer-actions{margin-top:18px}
    .mobile-sticky-actions{display:grid}
	.header-rdv{display:none}
}

.rdv-hero {
    margin: 50px auto 35px;
    padding: 70px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(173, 43, 53, .16), transparent 35%),
        linear-gradient(135deg, #FAF0F1 0%, #ffffff 65%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.rdv-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.rdv-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #F1D6D9;
    color: #8F1F2A;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
}

.rdv-hero h1 {
    margin: 0 0 22px;
    color: #0f172a;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.rdv-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.7;
}

.rdv-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.rdv-primary-button,
.rdv-secondary-button,
.rdv-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.rdv-primary-button {
    background: #AD2B35;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(173, 43, 53, .28);
}

.rdv-secondary-button {
    background: #ffffff;
    color: #AD2B35;
    border: 1px solid #E7BFC4;
}

.rdv-primary-button:hover,
.rdv-secondary-button:hover,
.rdv-main-button:hover {
    transform: translateY(-3px);
}

.rdv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 35px auto;
}

.rdv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
    border: 1px solid rgba(226, 232, 240, .9);
    overflow: hidden;
    transition: .25s ease;
}

.rdv-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(173, 43, 53, .06);
}

.rdv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, .12);
}

.rdv-card-highlight {
    grid-column: span 2;
    background:
        linear-gradient(135deg, #FAF0F1 0%, #ffffff 62%),
        #ffffff;
    border: 1px solid #E7BFC4;
}

.rdv-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.rdv-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #FAF0F1;
    font-size: 2rem;
}

.rdv-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.55rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.rdv-phone-label {
    margin: 6px 0 0;
    color: #64748b;
    font-size: .98rem;
}

.rdv-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 0 20px;
    padding: 12px 18px;
    border-radius: 999px;

    background: #FAEDEF;
    color: var(--primary-dark);
    border: 1px solid rgba(173, 43, 53, .18);

    font-size: 1.25rem;
    font-weight: 900;
    text-decoration: none;

    box-shadow: 0 10px 22px rgba(173, 43, 53, .10);
    transition: .2s ease;
}

.rdv-phone:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(173, 43, 53, .22);
}

.rdv-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #334155;
}

.rdv-list li {
    position: relative;
    padding-left: 18px;
}

.rdv-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #AD2B35;
    font-weight: 900;
}

.rdv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.rdv-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #AD2B35;
    color: #ffffff;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    transition: .2s ease;
}

.rdv-actions a:hover {
    background: #8F1F2A;
    transform: translateY(-2px);
}

.rdv-muted {
    margin: 4px 0 16px;
    color: #64748b;
    line-height: 1.6;
}

.rdv-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 45px auto 60px;
    padding: 38px;
    border-radius: 26px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
}

.rdv-info h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 2rem;
}

.rdv-info p {
    margin: 0;
    max-width: 720px;
    color: #cbd5e1;
    line-height: 1.7;
}

.rdv-main-button {
    flex: 0 0 auto;
    background: #C84B58;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(200, 75, 88, .25);
}

@media (max-width: 1050px) {
    .rdv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rdv-card-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .rdv-hero {
        padding: 42px 24px;
        border-radius: 22px;
    }

    .rdv-hero p {
        font-size: 1.05rem;
    }

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

    .rdv-card,
    .rdv-card-highlight {
        grid-column: span 1;
    }

    .rdv-card {
        min-height: auto;
        padding: 24px;
    }

    .rdv-list {
        grid-template-columns: 1fr;
    }

    .rdv-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .rdv-main-button {
        width: 100%;
    }
}


.team-hero {
    position: relative;
    margin: 20px auto 42px;
    padding: clamp(34px, 6vw, 68px);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(173, 43, 53, .16), transparent 34%),
        linear-gradient(135deg, #FAF0F1 0%, #ffffff 68%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    text-align: center;
    overflow: hidden;
}

.team-hero::before {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(200, 75, 88, .10);
}

.team-hero > * {
    position: relative;
    z-index: 1;
}

.team-kicker,
.team-kicker-small {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #F1D6D9;
    color: #8F1F2A;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

.team-kicker-small {
    margin-bottom: 10px;
    padding: 6px 14px;
    font-size: .74rem;
}

.team-hero h2 {
    max-width: 880px;
    margin: 0 auto 20px;
    color: #0f172a;
    font-size: clamp(2.2rem, 4.8vw, 4.1rem);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.team-hero p:not(.team-kicker) {
    max-width: 820px;
    margin: 0 auto;
    color: #475569;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.75;
}

.team-section {
    margin: 0 auto 58px;
}

.team-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.team-title-row h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.team-section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #AD2B35;
    color: #ffffff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(173, 43, 53, .22);
    transition: .22s ease;
}

.team-section-link:hover {
    transform: translateY(-2px);
    background: #8F1F2A;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.team-grid-doctors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, .92);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.team-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(173, 43, 53, .06);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: #E7BFC4;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .12);
}

.team-card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #FAF0F1 120%);
}

.team-card-compact {
    min-height: 210px;
}

.team-photo-wrap,
.team-photo-placeholder {
    position: relative;
    z-index: 1;
    width: 138px;
    height: 138px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #AD2B35, #E98B95);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
}

.team-photo-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
}

.team-photo-placeholder {
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.team-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.team-role {
    margin: 0 0 8px;
    color: #AD2B35;
    font-weight: 850;
    font-size: .92rem;
    line-height: 1.35;
}

.team-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.25rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.team-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    padding: 16px 0 0;

    color: var(--primary);
    font-weight: 850;
    text-decoration: none;

    transition: color .2s ease, transform .2s ease;
}

.team-card-link:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.team-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 60px auto 0;
    padding: 34px;
    border-radius: 26px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
}

.team-cta h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    letter-spacing: -0.04em;
}

.team-cta p {
    margin: 0;
    color: #cbd5e1;
}

.team-cta a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 999px;
    background: #C84B58;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(200, 75, 88, .25);
}

.team-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px 0;
}

.team-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    min-width: 260px;
    padding: 18px 20px;

    border-radius: 18px;
    background: var(--bg-soft);
    border: 1px solid rgba(173, 43, 53, .14);
}

.team-contact-item p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.45;
}

.team-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 16px;
    border-radius: 999px;

    background: rgba(173, 43, 53, .10);
    color: var(--primary-dark);
    border: 1px solid rgba(173, 43, 53, .18);

    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(173, 43, 53, .08);
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.team-phone:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(173, 43, 53, .20);
}

.team-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 7px;
    padding: 5px 12px;

    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--primary-dark);
    border: 1px solid rgba(173, 43, 53, .14);

    font-size: .86rem;
    font-weight: 750;
    line-height: 1.2;
}

@media (max-width: 1050px) {
    .team-grid,
    .team-grid-doctors,
    .team-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .team-hero {
        margin-top: 8px;
        border-radius: 22px;
    }

    .team-title-row {
        display: block;
    }

    .team-section-link {
        margin-top: 16px;
        width: 100%;
    }

    .team-grid,
    .team-grid-doctors,
    .team-grid-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-card {
        padding: 22px;
    }

    .team-card-compact {
        min-height: auto;
    }

    .team-photo-wrap,
    .team-photo-placeholder {
        width: 118px;
        height: 118px;
    }

    .team-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .team-cta a {
        width: 100%;
    }
	
	.team-contact-list {
    display: grid;
    grid-template-columns: 1fr;
	}

.team-contact-item {
    min-width: 0;
    width: 100%;
	}

.team-phone {
    width: 100%;
	}
}
