@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --ink: #172334;
  --muted: #627080;
  --teal: #006b68;
  --teal-dark: #005451;
  --aqua: #dff2ef;
  --lavender: #f3f5ff;
  --blue-wash: #eaf0ff;
  --cream: #fbfaf6;
  --gold: #efb940;
  --red: #c93c32;
  --white: #fff;
  --line: #dfe5e8;
  --shadow: 0 16px 40px rgba(23, 35, 52, 0.1);
  --radius: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0 0 0.7rem;
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--lavender); }
.section-cream { background: var(--cream); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.lead { max-width: 660px; color: var(--muted); font-size: 1.08rem; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; }

.top-sticky {
  position: sticky;
  z-index: 30;
  top: 0;
}
.alert-bar {
  padding: 7px 20px;
  color: var(--white);
  background: var(--red);
  font-size: 0.77rem;
  font-weight: 600;
  text-align: center;
}
.alert-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-header {
  border-bottom: 1px solid rgba(23,35,52,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 155px; height: 58px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.88rem; font-weight: 600; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.phone-link { color: var(--teal); font-size: 0.9rem; font-weight: 700; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-switch a { color: var(--muted); }
.lang-switch a:hover { color: var(--teal); }
.lang-switch [aria-current="true"] { color: var(--teal); }
.menu-toggle, .menu-label { display: none; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 8px 22px rgba(0,107,104,.18); }
.btn-outline { color: var(--teal); background: transparent; }
.btn-light { border-color: var(--white); color: var(--teal); background: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero { overflow: hidden; background: linear-gradient(120deg, #fff 0%, #fff 52%, #f2f8f7 52%); }
.hero-grid { min-height: 610px; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 72px; }
.hero-copy { padding: 70px 0; }
.hero-copy em { color: var(--teal); font-weight: 600; }
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -38px 35px 40px -35px;
  border-radius: 50% 50% 44% 56% / 53% 40% 60% 47%;
  background: var(--aqua);
}
.hero-media img { position: relative; z-index: 1; width: 100%; height: 440px; border-radius: 12px 70px 12px 70px; object-fit: cover; box-shadow: var(--shadow); }
.hero-stats { display: flex; gap: 42px; margin-top: 38px; }
.stat strong { display: block; color: var(--teal); font-family: "Playfair Display", serif; font-size: 1.45rem; }
.stat span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.floating-note {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 24px;
  padding: 15px 19px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 700;
}
.floating-note b { display: block; color: var(--teal); font-size: 1.15rem; }

.trust-strip { padding: 24px 0; border-block: 1px solid var(--line); background: var(--cream); }
.trust-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 48px; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .04em; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(0,107,104,.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(23,35,52,.035);
}
.card-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 6px;
  color: var(--teal);
  background: var(--aqua);
  font-weight: 700;
}
.card p { color: var(--muted); font-size: .91rem; }
.card-link { margin-top: auto; color: var(--teal); font-size: .83rem; font-weight: 700; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; height: 510px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.check-list { display: grid; gap: 18px; margin-top: 26px; }
.check-list li { position: relative; padding-left: 36px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--aqua);
  font-weight: 700;
}
.check-list b { display: block; margin-bottom: 2px; }
.check-list span { color: var(--muted); font-size: .9rem; }

.doctor-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.doctor-panel img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; object-position: center 20%; }
.doctor-copy { padding: clamp(36px, 6vw, 72px); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.credentials h4 { color: var(--teal); font-family: "DM Sans", sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.credentials li { padding: 5px 0; color: var(--muted); font-size: .83rem; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { padding: 27px; border-radius: 10px; background: var(--white); }
.stars { margin-bottom: 14px; color: var(--gold); letter-spacing: 3px; }
.review p { color: var(--muted); font-size: .9rem; }
.review b { font-size: .84rem; }

.cta { padding: 78px 0; color: var(--white); background: var(--teal); text-align: center; }
.cta p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.8); }
.cta .button-row { justify-content: center; }
.cta .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.hours { display: grid; gap: 8px; margin-top: 24px; }
.hours li { display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.map { overflow: hidden; min-height: 390px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 100%; min-height: 390px; border: 0; }

.page-hero { background: linear-gradient(135deg, #fff 30%, var(--lavender) 100%); }
.page-hero .hero-grid { min-height: 520px; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); }
.page-hero .hero-media img { height: 370px; border-radius: 14px; }
.service-layout { display: grid; grid-template-columns: 1fr 330px; align-items: start; gap: 45px; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-cards .card { min-height: 230px; }
.sidebar {
  position: sticky;
  top: 140px;
  padding: 30px;
  border-radius: 13px;
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
}
.sidebar h3 { font-size: 1.6rem; }
.sidebar p { color: rgba(255,255,255,.8); font-size: .9rem; }
.sidebar .btn { width: 100%; margin-top: 8px; }
.sidebar .btn-light { color: var(--teal); }
.sidebar .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.sidebar hr { margin: 24px 0; border: 0; border-top: 1px solid rgba(255,255,255,.25); }
.mini-info { display: grid; gap: 10px; font-size: .84rem; }
.warning {
  margin-top: 28px;
  padding: 25px;
  border: 1px solid #f1c5c1;
  border-radius: 10px;
  color: #8e2f28;
  background: #fff2f1;
}
.warning ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; font-size: .88rem; }
.warning li::before { content: "•"; margin-right: 8px; color: var(--red); }
.faq { max-width: 780px; margin-top: 54px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 19px 4px; cursor: pointer; font-family: "Playfair Display", serif; font-size: 1.05rem; font-weight: 600; }
.faq details p { padding: 0 30px 18px 4px; color: var(--muted); font-size: .9rem; }

.site-footer { padding: 66px 0 28px; background: var(--blue-wash); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.1fr; gap: 48px; }
.footer-brand img { width: 165px; height: 70px; margin-bottom: 16px; object-fit: contain; object-position: left; }
.footer-brand p, .footer-col li, .footer-col a { color: var(--muted); font-size: .82rem; }
.footer-col h4 { margin-bottom: 15px; font-family: "DM Sans", sans-serif; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-col li { padding: 4px 0; }
.footer-bottom { margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(23,35,52,.08); color: var(--muted); font-size: .72rem; text-align: center; }

@media (max-width: 960px) {
  .menu-label { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 7px; font-size: 1.2rem; cursor: pointer; }
  .nav { flex-wrap: wrap; min-height: 70px; }
  .nav-links {
    display: none;
    order: 4;
    width: 100%;
    padding: 15px 0 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .menu-toggle:checked ~ .nav-links { display: flex; }
  .nav-actions .btn { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 20px; padding-bottom: 65px; }
  .hero-copy { padding: 65px 0 25px; }
  .hero-media { max-width: 700px; }
  .hero-media img { height: 420px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 45px; }
  .doctor-panel { grid-template-columns: 1fr; }
  .doctor-panel img { max-height: 620px; }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .phone-link { display: none; }
  .lang-switch { display: inline-flex; }
  .brand img { width: 135px; }
  .hero { background: linear-gradient(180deg, #fff 0%, #fff 58%, #f2f8f7 58%); }
  .hero-media img { height: 330px; border-radius: 10px 40px 10px 40px; }
  .hero-stats { gap: 20px; }
  .floating-note { right: 8px; }
  .cards, .reviews, .credentials, .service-cards { grid-template-columns: 1fr; }
  .photo-frame img { height: 390px; }
  .doctor-panel img { min-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .warning ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
