:root {
  --ink: #102a43;
  --ink-soft: #486581;
  --blue: #0b5fa5;
  --blue-deep: #084b83;
  --cyan: #2fb6c5;
  --pale: #eaf5fb;
  --paper: #f7fbfd;
  --white: #ffffff;
  --line: #d7e5ee;
  --warm: #f4eee7;
  --shadow: 0 18px 50px rgba(16, 42, 67, .10);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; padding: 10px 16px; border-radius: 12px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--white { background: var(--white); }
.section--blue { background: var(--ink); color: #fff; }
.section--soft { background: var(--pale); }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section--blue .eyebrow { color: #8de0e9; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(2.75rem, 7vw, 6.5rem); font-weight: 500; }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; }
h3 { margin-bottom: 12px; font-size: 1.45rem; font-weight: 600; }
.lead { max-width: 710px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.section--blue .lead { color: #c8dbe8; }
.muted { color: var(--ink-soft); }
.micro { color: var(--ink-soft); font-size: .86rem; }
.kicker { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.82); color: var(--blue-deep); font-size: .83rem; font-weight: 700; }
.kicker::before { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); content: ""; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(215,229,238,.85); background: rgba(247,251,253,.92); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: grid; line-height: 1.12; }
.brand strong { font-family: Georgia, serif; font-size: 1.12rem; }
.brand span { color: var(--ink-soft); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { padding: 8px 0; color: var(--ink-soft); font-size: .9rem; font-weight: 700; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); }
.nav .nav-cta { padding: 11px 18px; border-radius: 99px; background: var(--blue); color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 99px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 12px 25px rgba(11,95,165,.2); }
.btn--primary:hover { background: var(--blue-deep); }
.btn--ghost { border-color: var(--line); background: rgba(255,255,255,.8); color: var(--ink); }
.btn--light { background: #fff; color: var(--blue-deep); }
.btn--small { min-height: 40px; padding: 9px 16px; font-size: .9rem; }

.hero { padding: 50px 0 58px; }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: .98fr 1.02fr; gap: 28px; align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px 0; }
.hero-copy h1 { font-size: clamp(3.1rem, 6.5vw, 6.8rem); }
.hero-media { position: relative; min-height: 640px; overflow: hidden; border-radius: 42px; background: #dfeef5; box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-note { position: absolute; right: 22px; bottom: 22px; max-width: 270px; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(0,0,0,.12); backdrop-filter: blur(12px); }
.hero-note strong { display: block; margin-bottom: 4px; }
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 28px; border-block: 1px solid var(--line); }
.trust-item { padding: 22px 18px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: Georgia, serif; font-size: 1.35rem; }
.trust-item span { color: var(--ink-soft); font-size: .82rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-head > div { max-width: 760px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-5px); border-color: #b7d7e8; box-shadow: var(--shadow); }
.card p { color: var(--ink-soft); }
.card-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-weight: 800; }
.med-icon { position: relative; width: 64px; height: 64px; margin-bottom: 28px; border-radius: 20px; background: var(--pale); }
.icon-kidneys::before, .icon-kidneys::after { position: absolute; top: 16px; width: 18px; height: 30px; border: 3px solid var(--blue); content: ""; }
.icon-kidneys::before { left: 13px; border-radius: 70% 35% 55% 40%; transform: rotate(-12deg); }
.icon-kidneys::after { right: 13px; border-radius: 35% 70% 40% 55%; transform: rotate(12deg); }
.icon-shield::before { position: absolute; inset: 13px 16px 12px; border: 3px solid var(--blue); border-radius: 17px 17px 24px 24px; content: ""; }
.icon-shield::after { position: absolute; left: 30px; top: 21px; width: 4px; height: 22px; border-radius: 5px; background: var(--cyan); content: ""; transform: rotate(32deg); }
.icon-pelvic::before { position: absolute; left: 17px; top: 13px; width: 26px; height: 34px; border: 3px solid var(--blue); border-top-color: transparent; border-radius: 50% 50% 48% 48%; content: ""; }
.icon-pelvic::after { position: absolute; left: 22px; top: 28px; width: 16px; height: 11px; border-bottom: 4px solid var(--cyan); border-radius: 0 0 50% 50%; content: ""; }
.icon-ultrasound::before { position: absolute; left: 13px; top: 17px; width: 17px; height: 29px; border: 3px solid var(--blue); border-radius: 13px 13px 8px 8px; content: ""; transform: rotate(-18deg); }
.icon-ultrasound::after { position: absolute; right: 11px; top: 14px; width: 22px; height: 30px; border: 3px solid transparent; border-right-color: var(--cyan); border-radius: 50%; box-shadow: 7px 0 0 -4px var(--pale), 10px 0 0 -2px var(--cyan); content: ""; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.photo-frame { position: relative; overflow: hidden; border-radius: 38px; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.photo-frame--wide img { aspect-ratio: 4/3; object-position: center; }
.quote { padding-left: 24px; border-left: 4px solid var(--cyan); font-family: Georgia, serif; font-size: 1.5rem; line-height: 1.35; }
.check-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 50%; background: var(--pale); box-shadow: inset 0 0 0 5px var(--blue); content: ""; }
.alert { padding: 22px 24px; border: 1px solid #f1c894; border-radius: 20px; background: #fff8ed; color: #6b4415; }

.page-hero { padding: 88px 0 58px; }
.page-hero h1 { max-width: 960px; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; }
.page-hero-card { padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }

.service-detail { display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 32px 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-number { color: var(--cyan); font-family: Georgia, serif; font-size: 2.3rem; }
.service-detail ul { columns: 2; padding-left: 18px; color: var(--ink-soft); }

.timeline { position: relative; max-width: 820px; margin-top: 36px; }
.timeline::before { position: absolute; left: 87px; top: 12px; bottom: 12px; width: 1px; background: var(--line); content: ""; }
.timeline-item { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 38px; padding: 0 0 34px; }
.timeline-year { color: var(--blue); font-weight: 900; }
.timeline-copy::before { position: absolute; left: 80px; top: 7px; width: 15px; height: 15px; border: 4px solid var(--paper); border-radius: 50%; background: var(--cyan); content: ""; }
.document-placeholder { min-height: 330px; display: grid; place-items: center; padding: 40px; border: 1px dashed #9cb9c9; border-radius: 30px; background: linear-gradient(135deg,#f9fcfd,#e9f4f8); text-align: center; }
.document-placeholder::before { display: block; width: 66px; height: 86px; margin: 0 auto 24px; border: 2px solid #9cb9c9; border-radius: 8px; background: repeating-linear-gradient(to bottom,transparent 0 15px,#cbdde6 16px 17px); content: ""; }

.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.2,.8,.2,1); touch-action: pan-y; }
.slide { min-width: 100%; padding: 2px; }
.news-card, .review-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 36px; border: 1px solid var(--line); border-radius: 30px; background: #fff; }
.news-card h3 { max-width: 760px; font-size: clamp(1.7rem,3vw,2.7rem); }
.news-meta, .review-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; color: var(--blue); font-size: .84rem; font-weight: 800; }
.review-card blockquote { margin: 0 0 28px; font-family: Georgia, serif; font-size: clamp(1.25rem,2.4vw,2rem); line-height: 1.45; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
.carousel-buttons { display: flex; gap: 10px; }
.carousel-button { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.carousel-button:hover { background: var(--pale); }
.carousel-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #b6c9d5; cursor: pointer; }
.carousel-dot[aria-current="true"] { width: 28px; border-radius: 8px; background: var(--blue); }
.disclaimer { margin-top: 22px; color: var(--ink-soft); font-size: .88rem; }

.clinic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.clinic-card { padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.clinic-card address { color: var(--ink-soft); font-style: normal; }
.contact-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; padding: 46px; border-radius: 34px; background: var(--blue); color: #fff; }
.contact-band h2 { margin-bottom: 12px; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.phone-display { font-family: Georgia, serif; font-size: clamp(1.7rem,3vw,2.8rem); }

.site-footer { padding: 56px 0 100px; background: #071f33; color: #dce9f1; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 40px; }
.site-footer h3 { color: #fff; }
.site-footer a { color: #dce9f1; }
.site-footer a:hover { color: #8de0e9; }
.footer-links { display: grid; gap: 8px; }
.footer-contact-label { margin: 18px 0 2px; color: #9fb5c4; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-phone { color: #fff !important; font-size: .95rem; font-weight: 800; }
.footer-clinics { display: grid; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-clinics p { margin: 0; color: #9fb5c4; font-size: .78rem; line-height: 1.45; }
.footer-clinics strong, .footer-clinics a { display: block; }
.footer-clinics strong { color: #dce9f1; }
.footer-clinics a { margin-top: 2px; color: #8de0e9; font-weight: 800; }
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #9fb5c4; font-size: .82rem; }
.mobile-actions { display: none; }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 79px 16px auto; display: none; max-height: calc(100vh - 100px); overflow: auto; flex-direction: column; align-items: stretch; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .hero-grid, .split, .page-hero-grid, .contact-band { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; }
  .hero-media { min-height: 540px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .hero { padding-top: 26px; }
  .hero-copy h1 { font-size: clamp(2.75rem,14vw,4.3rem); }
  .hero-media { min-height: 460px; border-radius: 28px; }
  .hero-media img { object-position: 51% center; }
  .hero-note { right: 12px; bottom: 12px; left: 12px; max-width: none; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .cards, .clinic-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .service-detail { grid-template-columns: 52px 1fr; gap: 14px; }
  .service-detail ul { columns: 1; }
  .timeline::before { left: 61px; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 24px; }
  .timeline-copy::before { left: 54px; }
  .news-card, .review-card { min-height: 420px; padding: 26px; }
  .contact-band { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-actions { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 35; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
  .mobile-actions a { display: grid; min-height: 45px; place-items: center; border-radius: 14px; background: var(--blue); color: #fff; font-size: .86rem; font-weight: 800; }
}

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