:root {
    --ink-950: #05263a;
    --ink-900: #073d5e;
    --ink-700: #24546d;
    --ink-500: #5f7d8e;
    --line: #cfe1ea;
    --sky-100: #e8f5fb;
    --sky-50: #f4fafe;
    --white: #fff;
    --lime: #47ed88;
    --lime-dark: #0a6a40;
    --lime-soft: #e4fff0;
    --alert: #9b2c2c;
    --alert-soft: #fff1f0;
    --shadow-sm: 0 10px 30px rgba(7, 61, 94, .08);
    --shadow-lg: 0 30px 80px rgba(7, 61, 94, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shell: 1240px;
    --display: "Sora", "Aptos Display", sans-serif;
    --body: "IBM Plex Sans", "Aptos", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink-950);
    background: var(--white);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }

button, input, textarea, select { font: inherit; }

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

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

h1, h2, h3, h4 {
    color: var(--ink-950);
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.035em;
}

h1 { font-size: clamp(2.85rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

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

::selection { color: var(--ink-950); background: var(--lime); }

:focus-visible {
    outline: 3px solid var(--lime-dark);
    outline-offset: 4px;
}

.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;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink-950);
    border-radius: 8px;
    transform: translateY(-160%);
}

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

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--tight { padding: clamp(54px, 7vw, 90px) 0; }
.section--sky { background: var(--sky-50); }
.section--ink { color: rgba(255, 255, 255, .76); background: var(--ink-950); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(280px, .4fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 46px;
}

.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > p { color: var(--ink-700); margin-bottom: 6px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--ink-700);
    font-family: var(--display);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--light { color: rgba(255, 255, 255, .72); }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 22px;
    color: var(--white);
    background: var(--ink-900);
    border: 1px solid var(--ink-900);
    border-radius: 999px;
    font-family: var(--display);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { background: var(--ink-950); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.button--sm { min-height: 46px; padding: 10px 17px; font-size: .78rem; }
.button--lime { color: var(--ink-950); background: var(--lime); border-color: var(--lime); }
.button--lime:hover { color: var(--white); background: var(--lime-dark); border-color: var(--lime-dark); }
.button--white { color: var(--ink-950); background: var(--white); border-color: var(--white); }
.button--ghost { color: var(--ink-900); background: transparent; border-color: var(--line); }
.button--ghost:hover { color: var(--white); background: var(--ink-900); border-color: var(--ink-900); }
.button--ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.35); }
.button--ghost-light:hover { background: rgba(255,255,255,.1); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-900);
    font-family: var(--display);
    font-size: .86rem;
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover { text-decoration: underline; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.topbar {
    position: relative;
    z-index: 100;
    color: rgba(255, 255, 255, .84);
    background: var(--ink-950);
    font-size: .78rem;
}

.topbar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar__inner > span { display: flex; align-items: center; gap: 8px; }
.topbar__inner div { display: flex; gap: 9px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); text-decoration: underline; }

.site-header {
    position: sticky;
    z-index: 90;
    top: 0;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled { border-color: rgba(207, 225, 234, .8); box-shadow: 0 8px 24px rgba(7, 61, 94, .06); }

.nav-wrap { display: flex; min-height: 80px; align-items: center; gap: 26px; }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: auto;
    text-decoration: none;
}

.brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--ink-900);
    background: var(--lime-soft);
    border-radius: 14px;
}

.brand__mark svg { width: 28px; height: 28px; }
.brand__mark path:first-child { fill: none; stroke: currentColor; stroke-width: 2.4; }
.brand__mark path:last-child { fill: none; stroke: var(--lime-dark); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--display); font-size: .88rem; letter-spacing: -.025em; }
.brand small { margin-top: 1px; color: var(--ink-500); font-size: .65rem; letter-spacing: .025em; }

.primary-nav { display: flex; align-items: center; gap: 27px; }
.primary-nav a { position: relative; padding: 9px 0; color: var(--ink-700); font-size: .83rem; font-weight: 500; text-decoration: none; }
.primary-nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--lime-dark); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--ink-950); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; width: 46px; height: 46px; padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 83% 35%, rgba(255,255,255,.95) 0 11%, transparent 38%),
        linear-gradient(112deg, #f6fbfe 0%, #e5f4fb 64%, #d6ecf7 100%);
}

.hero::before {
    position: absolute;
    top: -15%;
    right: -6%;
    width: 680px;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(255,255,255,.12), 0 0 0 150px rgba(255,255,255,.08);
}

.hero__grid {
    display: grid;
    min-height: 720px;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 24px;
    padding-top: 70px;
    padding-bottom: 80px;
}

.hero__copy { position: relative; z-index: 2; max-width: 690px; }
.hero h1 { max-width: 700px; margin-bottom: 24px; }
.hero h1 .hero__soft { display: block; color: #5e8498; }
.hero__lead { max-width: 610px; margin-bottom: 30px; color: var(--ink-700); font-size: clamp(1.08rem, 1.4vw, 1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 24px;
    margin-top: 34px;
    padding: 0;
    list-style: none;
}

.hero__proof li { display: flex; align-items: center; gap: 8px; color: var(--ink-700); font-size: .84rem; }
.hero__proof li::before { display: grid; width: 21px; height: 21px; color: var(--lime-dark); background: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.9); border-radius: 50%; content: "✓"; font-size: .7rem; font-weight: 700; place-items: center; }

.hero__visual { position: relative; align-self: stretch; min-height: 600px; }
.hero__visual picture { position: absolute; z-index: 1; inset: 0 -10% 0 0; display: flex; align-items: center; justify-content: center; }
.hero__visual img { width: min(760px, 120%); height: 100%; object-fit: cover; object-position: 55% center; mix-blend-mode: multiply; }
.hero__visual.hero__visual--doctor picture { inset: 36px 4% 0 7%; overflow: hidden; align-items: flex-start; background: #dceef6; border: 1px solid rgba(255,255,255,.88); border-radius: 36px 36px 0 0; box-shadow: var(--shadow-lg); }
.hero__visual.hero__visual--doctor img { width: 100%; height: 100%; object-position: center 18%; mix-blend-mode: normal; }

.search-ribbon {
    position: relative;
    z-index: 8;
    margin-top: -42px;
}

.smart-search {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    min-height: 86px;
    padding: 14px 15px 14px 25px;
    background: var(--white);
    border: 1px solid rgba(207,225,234,.7);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.smart-search__label { padding-right: 20px; border-right: 1px solid var(--line); }
.smart-search__label strong, .smart-search__label small { display: block; }
.smart-search__label strong { font-family: var(--display); font-size: .84rem; }
.smart-search__label small { color: var(--ink-500); font-size: .72rem; }
.smart-search__field { position: relative; }
.smart-search input { width: 100%; min-height: 52px; padding: 10px 12px; color: var(--ink-950); background: transparent; border: 0; outline: 0; }
.smart-search input::placeholder { color: #7f98a6; opacity: 1; }
.voice-button { display: none; width: 52px; height: 52px; color: var(--ink-900); background: var(--sky-100); border: 0; border-radius: 50%; cursor: pointer; place-items: center; }
.voice-button.is-supported { display: grid; }
.voice-button.is-listening { color: var(--white); background: var(--alert); animation: pulse 1.1s infinite; }
.search-results { position: absolute; z-index: 20; top: calc(100% + 10px); right: 0; left: 0; display: none; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); }
.search-results.is-open { display: block; }
.search-results a { display: block; padding: 10px 12px; border-radius: 9px; text-decoration: none; }
.search-results a:hover, .search-results a:focus { background: var(--sky-50); }
.search-results strong, .search-results small { display: block; }
.search-results small { color: var(--ink-500); }

@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(155, 44, 44, .14); } }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip > div { min-height: 130px; padding: 30px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { display: block; margin-bottom: 7px; font-family: var(--display); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1; }
.trust-strip span { color: var(--ink-500); font-size: .78rem; line-height: 1.35; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform .24s ease, color .24s ease, background .24s ease, box-shadow .24s ease;
}

.service-card::after { position: absolute; right: -65px; bottom: -65px; width: 190px; height: 190px; background: var(--sky-100); border-radius: 50%; content: ""; transition: transform .3s ease, background .3s ease; }
.service-card:hover { color: var(--white); background: var(--ink-900); border-color: var(--ink-900); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover h3, .service-card:hover p, .service-card:hover .service-card__index { color: inherit; }
.service-card:hover::after { background: rgba(71,237,136,.18); transform: scale(1.15); }
.service-card__index { display: block; margin-bottom: 65px; color: var(--ink-500); font-family: var(--display); font-size: .72rem; letter-spacing: .12em; }
.service-card h3 { max-width: 300px; margin-bottom: 14px; transition: color .24s ease; }
.service-card p { position: relative; z-index: 2; max-width: 350px; margin-bottom: 0; color: var(--ink-700); font-size: .92rem; transition: color .24s ease; }
.service-card__arrow { position: absolute; z-index: 3; right: 27px; bottom: 26px; display: grid; width: 45px; height: 45px; color: var(--ink-950); background: var(--lime); border-radius: 50%; font-size: 1.2rem; place-items: center; }

.doctor-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.doctor-portrait {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(160deg, #dbeef7, #f6fbfe);
    border-radius: var(--radius-lg);
}

.doctor-portrait::before { position: absolute; top: 7%; right: 7%; width: 68%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.2); content: ""; }
.doctor-portrait__monogram { position: absolute; z-index: 2; top: 20%; left: 11%; font-family: var(--display); font-size: clamp(6rem, 16vw, 12rem); font-weight: 700; letter-spacing: -.12em; line-height: 1; color: rgba(7,61,94,.11); }
.doctor-portrait__card { position: absolute; z-index: 3; right: 32px; bottom: 32px; left: 32px; padding: 28px; color: var(--white); background: rgba(5,38,58,.92); border-radius: 20px; backdrop-filter: blur(15px); }
.doctor-portrait__card strong { display: block; margin-bottom: 7px; font-family: var(--display); font-size: 1.18rem; }
.doctor-portrait__card p { color: rgba(255,255,255,.72); font-size: .88rem; }
.doctor-copy > p { max-width: 650px; color: var(--ink-700); }
.qualification-list { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.qualification-list li { display: grid; grid-template-columns: 56px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.qualification-list strong { font-family: var(--display); font-size: .82rem; }
.qualification-list span { color: var(--ink-700); }

.medical-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.medical-gallery figure { overflow: hidden; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.medical-gallery__image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sky-100); }
.medical-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.medical-gallery figure:hover img { transform: scale(1.025); }
.medical-gallery figcaption { display: grid; gap: 7px; padding: 23px 24px 26px; }
.medical-gallery figcaption strong { font-family: var(--display); font-size: 1.05rem; }
.medical-gallery figcaption span { color: var(--ink-700); font-size: .84rem; line-height: 1.5; }

.care-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); }
.care-step { min-height: 310px; padding: 34px; background: var(--ink-950); }
.care-step__num { display: grid; width: 44px; height: 44px; margin-bottom: 75px; color: var(--ink-950); background: var(--lime); border-radius: 50%; font-family: var(--display); font-size: .78rem; font-weight: 700; place-items: center; }
.care-step h3 { margin-bottom: 13px; }
.care-step p { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: .91rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.article-card__art { position: relative; height: 220px; overflow: hidden; background: var(--sky-100); }
.article-card__art::before, .article-card__art::after { position: absolute; border-radius: 50%; content: ""; }
.article-card__art::before { top: 34px; left: 40px; width: 140px; height: 140px; border: 24px solid rgba(255,255,255,.72); }
.article-card__art::after { right: 28px; bottom: -28px; width: 130px; height: 130px; background: rgba(71,237,136,.36); }
.article-card:nth-child(2) .article-card__art { background: #dbeaf4; }
.article-card:nth-child(2) .article-card__art::before { width: 80px; height: 160px; border-radius: 40px; transform: rotate(-22deg); }
.article-card:nth-child(3) .article-card__art { background: #e9f6f3; }
.article-card:nth-child(3) .article-card__art::before { border-color: rgba(7,61,94,.1); }
.article-card__tag { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 7px 11px; color: var(--ink-950); background: rgba(255,255,255,.88); border-radius: 999px; font-size: .7rem; font-weight: 600; }
.article-card__body { padding: 25px; }
.article-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 15px; color: var(--ink-500); font-size: .72rem; }
.article-card h3 { margin-bottom: 14px; font-size: 1.28rem; line-height: 1.25; }
.article-card h3 a { text-decoration: none; }
.article-card h3 a:hover { color: var(--ink-700); text-decoration: underline; }
.article-card p { color: var(--ink-700); font-size: .88rem; }

.page-hero { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 125px) 0; background: var(--sky-50); }
.page-hero::after { position: absolute; top: -120px; right: -100px; width: 480px; aspect-ratio: 1; border: 80px solid rgba(255,255,255,.55); border-radius: 50%; content: ""; }
.page-hero__inner { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.page-hero__lead { max-width: 720px; color: var(--ink-700); font-size: clamp(1.08rem, 1.6vw, 1.32rem); }
.breadcrumbs { margin-bottom: 30px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; color: var(--ink-500); font-size: .74rem; list-style: none; }
.breadcrumbs li { display: flex; gap: 7px; }
.breadcrumbs a { color: var(--ink-700); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.intro-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(310px, .4fr); gap: clamp(45px, 8vw, 110px); align-items: start; }
.intro-copy h2 { max-width: 760px; }
.intro-copy > p { max-width: 760px; color: var(--ink-700); }
.info-panel { position: sticky; top: 112px; padding: 28px; background: var(--ink-950); border-radius: var(--radius-md); color: rgba(255,255,255,.72); }
.info-panel__portrait { width: calc(100% + 56px); max-width: none; height: 280px; margin: -28px -28px 25px; object-fit: cover; object-position: center 18%; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.info-panel h2, .info-panel h3 { color: var(--white); font-size: 1.25rem; }
.info-panel ul { display: grid; gap: 12px; padding-left: 20px; }
.info-panel .button { width: 100%; margin-top: 10px; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.principle-card__icon { display: grid; width: 48px; height: 48px; margin-bottom: 42px; color: var(--ink-900); background: var(--lime-soft); border-radius: 14px; place-items: center; }
.principle-card p { color: var(--ink-700); font-size: .9rem; }

.service-detail-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(46px, 7vw, 100px); }
.content-column { max-width: 790px; }
.content-column h2 { margin-top: 54px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.content-column h2:first-child { margin-top: 0; }
.content-column p, .content-column li { color: var(--ink-700); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 17px 18px 17px 48px; background: var(--sky-50); border: 1px solid var(--line); border-radius: 12px; }
.check-list li::before { position: absolute; top: 18px; left: 18px; display: grid; width: 20px; height: 20px; color: var(--lime-dark); background: var(--lime-soft); border-radius: 50%; content: "✓"; font-size: .68rem; font-weight: 700; place-items: center; }
.source-note { margin-top: 34px; padding: 18px 20px; color: var(--ink-700); background: #f8fafb; border-left: 3px solid var(--lime-dark); font-size: .83rem; }
.source-note a { color: var(--ink-900); }
.emergency-note { padding: 20px; color: var(--alert); background: var(--alert-soft); border: 1px solid #ffd1cc; border-radius: 12px; font-size: .88rem; }
.side-appointment { position: sticky; top: 112px; padding: 28px; background: var(--sky-100); border-radius: var(--radius-md); }
.side-appointment h2 { font-size: 1.45rem; }
.side-appointment .button { width: 100%; margin-top: 10px; }
.side-appointment__line { height: 1px; margin: 24px 0; background: var(--line); }
.side-appointment address { color: var(--ink-700); font-style: normal; }

.faq-list { display: grid; gap: 10px; max-width: 900px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-list summary { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; font-family: var(--display); font-size: .94rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.35rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 22px 22px; color: var(--ink-700); }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(250px, 340px); gap: clamp(50px, 8vw, 110px); align-items: start; }
.article-body { font-size: 1.05rem; }
.article-body h2 { margin-top: 52px; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.article-body h3 { margin-top: 32px; }
.article-body p, .article-body li { color: #31596e; }
.article-body li { margin-bottom: 10px; }
.article-body .callout { margin: 34px 0; padding: 25px; color: var(--ink-950); background: var(--lime-soft); border-radius: 14px; }
.article-aside { position: sticky; top: 112px; }
.article-aside__card { margin-bottom: 16px; padding: 25px; background: var(--sky-50); border: 1px solid var(--line); border-radius: var(--radius-md); }
.article-aside__card h2 { font-size: 1.25rem; }
.article-aside__card ul { padding-left: 18px; font-size: .86rem; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.appointment-form { padding: clamp(26px, 5vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-family: var(--display); font-size: .78rem; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink-950); background: var(--sky-50); border: 1px solid var(--line); border-radius: 10px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { background: var(--white); border-color: var(--ink-900); outline: 3px solid rgba(7,61,94,.12); }
.field small { display: block; margin-top: 6px; color: var(--ink-500); font-size: .73rem; }
.check-field { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.check-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ink-900); }
.check-field label { color: var(--ink-700); font-size: .82rem; }
.appointment-form .button { margin-top: 6px; }
.honeypot { position: absolute; left: -9999px; }
.form-alert { margin-bottom: 24px; padding: 16px 18px; border-radius: 10px; }
.form-alert--success { color: var(--lime-dark); background: var(--lime-soft); border: 1px solid #b2efd0; }
.form-alert--error { color: var(--alert); background: var(--alert-soft); border: 1px solid #ffd1cc; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 24px; background: var(--sky-50); border: 1px solid var(--line); border-radius: 16px; }
.contact-card h2, .contact-card h3 { margin-bottom: 9px; font-size: 1.15rem; }
.contact-card p, .contact-card address { color: var(--ink-700); font-style: normal; font-size: .9rem; }
.contact-card a { color: var(--ink-900); word-break: break-word; }

.map-frame { position: relative; min-height: 430px; overflow: hidden; background: var(--sky-100); border: 1px solid var(--line); border-radius: var(--radius-md); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sitemap-card { padding: 28px; background: var(--sky-50); border: 1px solid var(--line); border-radius: var(--radius-md); }
.sitemap-card h2 { font-size: 1.25rem; }
.sitemap-card ul { display: grid; gap: 9px; padding-left: 20px; }
.sitemap-card a { color: var(--ink-700); }

.final-cta { padding: clamp(68px, 8vw, 108px) 0; color: rgba(255,255,255,.72); background: var(--ink-900); }
.final-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.final-cta h2 { max-width: 720px; margin-bottom: 18px; color: var(--white); }
.final-cta p { max-width: 620px; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 11px; justify-content: flex-end; }

.site-footer { padding: 74px 0 108px; color: rgba(255,255,255,.62); background: #031b29; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr 1.1fr; gap: 50px; }
.site-footer h2 { margin-bottom: 18px; color: rgba(255,255,255,.94); font-family: var(--body); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.site-footer li, .site-footer p, .site-footer address, .site-footer a { font-size: .83rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.brand--footer { margin-bottom: 20px; color: var(--white); }
.brand--footer .brand__mark { background: rgba(71,237,136,.12); }
.brand--footer strong { color: var(--white); }
.brand--footer small { color: rgba(255,255,255,.48); }
.footer-brand > p { max-width: 330px; }
.credential-line { display: inline-flex; margin-top: 10px; padding: 7px 10px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border-radius: 7px; font-size: .7rem; letter-spacing: .06em; }
.footer-contact { display: grid; align-content: start; gap: 8px; }
.footer-contact address { margin-bottom: 4px; font-style: normal; }
.footer-contact .text-link { margin-top: 7px; color: var(--lime); }
.footer-note { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-note p { max-width: 970px; color: rgba(255,255,255,.48); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .72rem; }
.mobile-actions { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .nav-cta { display: none; }
    .primary-nav { gap: 22px; }
    .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 840px) {
    .topbar { display: none; }
    .nav-wrap { min-height: 72px; }
    .nav-toggle { display: block; order: 3; }
    .primary-nav { position: fixed; z-index: 80; top: 72px; right: 0; left: 0; display: grid; align-content: start; gap: 0; height: calc(100dvh - 72px); padding: 24px 20px 120px; background: var(--white); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease; }
    .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
    .primary-nav a { padding: 18px 5px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.05rem; }
    .primary-nav a::after { display: none; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-top: 65px; padding-bottom: 0; }
    .hero__visual { min-height: 500px; margin-top: -45px; }
    .hero__visual picture { inset: 0 -12%; }
    .hero__visual img { width: 720px; }
    .hero__visual.hero__visual--doctor picture { inset: 24px 7% 0; }
    .smart-search { grid-template-columns: 1fr auto; }
    .smart-search__label { grid-column: 1 / -1; padding: 0 0 9px; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip, .service-grid, .blog-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip > div:nth-child(2) { border-right: 0; }
    .trust-strip > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
    .doctor-feature { grid-template-columns: 1fr; }
    .doctor-portrait { min-height: 500px; }
    .care-path { grid-template-columns: 1fr; }
    .care-step { min-height: auto; }
    .care-step__num { margin-bottom: 45px; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .intro-grid, .service-detail-grid, .article-layout, .form-layout { grid-template-columns: 1fr; }
    .info-panel, .side-appointment, .article-aside { position: static; }
    .final-cta__grid { grid-template-columns: 1fr; align-items: start; }
    .final-cta__actions { justify-content: flex-start; }
    .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-contact { grid-column: auto; }
}

@media (max-width: 580px) {
    body { font-size: 16px; padding-bottom: 66px; }
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .section { padding: 74px 0; }
    .brand strong { font-size: .76rem; }
    .brand small { font-size: .58rem; }
    .brand__mark { width: 39px; height: 39px; }
    .hero__grid { padding-top: 54px; }
    .hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
    .hero__actions .button { width: 100%; }
    .hero__proof { display: grid; gap: 10px; }
    .hero__visual { min-height: 420px; margin-top: -30px; }
    .hero__visual picture { inset: 0 -33%; }
    .hero__visual.hero__visual--doctor picture { inset: 18px 0 0; }
    .search-ribbon { margin-top: -18px; }
    .smart-search { padding: 16px; border-radius: 18px; }
    .smart-search input { padding-left: 2px; font-size: .9rem; }
    .trust-strip, .service-grid, .blog-grid, .principles-grid, .sitemap-grid, .medical-gallery { grid-template-columns: 1fr; }
    .trust-strip > div { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip > div:last-child { border-bottom: 0; }
    .service-card { min-height: 310px; }
    .doctor-portrait { min-height: 450px; }
    .doctor-portrait__card { right: 18px; bottom: 18px; left: 18px; padding: 22px; }
    .qualification-list li { grid-template-columns: 48px 1fr; }
    .check-list { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full { grid-column: auto; }
    .appointment-form { padding: 24px 18px; }
    .final-cta__actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { display: grid; }
    .mobile-actions { position: fixed; z-index: 95; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 66px; padding-bottom: env(safe-area-inset-bottom); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -12px 30px rgba(5,38,58,.08); }
    .mobile-actions a { display: grid; min-height: 58px; align-content: center; justify-items: center; gap: 1px; color: var(--ink-900); font-family: var(--display); font-size: .7rem; font-weight: 600; text-decoration: none; }
    .mobile-actions a:nth-child(2) { background: var(--lime-soft); }
    .mobile-actions span { font-size: 1rem; }
}

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

@media print {
    .topbar, .site-header, .final-cta, .site-footer, .mobile-actions, .voice-button { display: none !important; }
    body { color: #000; background: #fff; }
    a { color: #000; }
    .section, .page-hero { padding: 24px 0; }
}
