:root {
  --ink: #153335;
  --ink-2: #345154;
  --teal: #123e42;
  --teal-soft: #e9f1f0;
  --sage: #77938b;
  --gold: #b89053;
  --paper: #fbfcfa;
  --warm: #f4f0e9;
  --line: #dce5e3;
  --white: #fff;
  --shadow: 0 24px 60px rgba(20, 52, 54, .12);
  --radius: 18px;
  --container: 1180px;
}

*, *::before, *::after { 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, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; }
h1 { margin-bottom: 1.45rem; font-size: clamp(2.8rem, 6vw, 5.65rem); font-weight: 520; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.25rem, 4.3vw, 4rem); font-weight: 540; }
h3 { margin-bottom: .75rem; font-size: 1.5rem; font-weight: 600; }
em { color: var(--sage); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: .7rem 1rem; color: var(--white); background: var(--teal); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.eyebrow { display: flex; gap: .65rem; align-items: center; margin-bottom: 1.25rem; color: var(--sage); font-size: .75rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: #b8cbc8; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .8rem 1.35rem; border: 1px solid var(--teal); border-radius: 4px; color: var(--white); background: var(--teal); font-size: .9rem; font-weight: 700; text-decoration: none; transition: background .2s, color .2s, transform .2s; }
.button:hover { color: var(--teal); background: transparent; transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #d7a957; outline-offset: 4px; }
.button--small { min-height: 43px; padding: .55rem 1rem; }
.button--light { border-color: var(--white); color: var(--teal); background: var(--white); }
.button--light:hover { color: var(--white); background: transparent; }
.text-link, .card-link { font-weight: 720; text-decoration: none; }
.text-link span, .card-link span { display: inline-block; margin-left: .25rem; transition: transform .2s; }
.text-link:hover span, .card-link:hover span { transform: translateX(4px); }

.contact-bar { color: #dce8e6; background: var(--teal); font-size: .78rem; }
.contact-bar__inner { display: flex; min-height: 37px; align-items: center; justify-content: space-between; }
.contact-bar p { display: flex; gap: .45rem; align-items: center; margin: 0; }
.contact-bar svg { width: 15px; height: 15px; fill: var(--gold); }
.contact-bar a { color: var(--white); text-decoration: none; }
.contact-bar div > span { margin: 0 .45rem; opacity: .5; }
.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(251, 252, 250, .96); }
.nav-wrap { display: flex; min-height: 88px; align-items: center; justify-content: space-between; }
.brand { width: 160px; }
.brand img { width: 160px; height: auto; }
.main-nav { display: flex; gap: clamp(1rem, 2.6vw, 2.25rem); align-items: center; }
.main-nav > a:not(.button) { position: relative; font-size: .88rem; font-weight: 650; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; bottom: -7px; left: 0; width: 0; height: 1px; background: var(--gold); content: ""; transition: width .2s; }
.main-nav > a:hover::after { width: 100%; }
.nav-menu { position: relative; }
.nav-menu summary { display: flex; gap: .45rem; align-items: center; padding: .8rem 0; cursor: pointer; font-size: .86rem; font-weight: 650; list-style: none; white-space: nowrap; }
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary::after { width: 7px; height: 7px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: rotate(45deg); transition: transform .2s; }
.nav-menu[open] summary::after { margin-top: 4px; transform: rotate(225deg); }
.nav-menu__panel { position: absolute; top: calc(100% + 14px); left: 50%; display: grid; width: 280px; padding: .75rem; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .18s, transform .18s; }
.nav-menu[open] .nav-menu__panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-menu__panel::before { position: absolute; top: -15px; right: 0; left: 0; height: 15px; content: ""; }
.nav-menu__panel a { padding: .65rem .75rem; border-radius: 4px; color: var(--ink-2); font-size: .82rem; font-weight: 620; text-decoration: none; }
.nav-menu__panel a:hover, .nav-menu__panel a:focus-visible { color: var(--teal); background: var(--teal-soft); }
@media (hover: hover) and (min-width: 981px) {
  .nav-menu:hover .nav-menu__panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
}
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; color: var(--teal); background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6.75rem) 0 5.5rem; background: linear-gradient(115deg, #fbfcfa 0%, #f6f8f5 65%, #e8f0ee 100%); }
.hero::before { position: absolute; top: -300px; right: -250px; width: 700px; height: 700px; border: 1px solid rgba(119,147,139,.2); border-radius: 50%; content: ""; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); gap: clamp(3rem, 6vw, 6.5rem); align-items: center; }
.hero__content { position: relative; z-index: 1; padding: 1.5rem 0; }
.hero__lead { max-width: 680px; margin-bottom: 2rem; color: var(--ink-2); font-size: clamp(1.06rem, 1.7vw, 1.23rem); }
.hero__actions { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2.3rem; }
.trust-list { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 0; padding: 0; color: var(--ink-2); font-size: .82rem; font-weight: 650; list-style: none; }
.trust-list li { display: flex; gap: .4rem; align-items: center; }
.trust-list svg { width: 18px; height: 18px; padding: 3px; border: 1px solid var(--sage); border-radius: 50%; fill: none; stroke: var(--sage); stroke-width: 2.2; }
.hero__visual { position: relative; }
.hero__image-frame { position: relative; padding: 12px; border: 1px solid #cbd9d6; border-radius: 210px 210px 18px 18px; }
.hero__image-frame::before { position: absolute; top: 11%; right: -23px; width: 46px; height: 1px; background: var(--gold); content: ""; }
.hero__image-frame img { width: 100%; aspect-ratio: 4 / 5; border-radius: 198px 198px 11px 11px; object-fit: cover; }
.doctor-card { position: absolute; right: -35px; bottom: 32px; display: flex; gap: .75rem; min-width: 240px; align-items: center; padding: 1rem 1.15rem; border-left: 3px solid var(--gold); border-radius: 4px; background: var(--white); box-shadow: var(--shadow); }
.doctor-card__icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal); font-size: 1.35rem; }
.doctor-card p { margin: 0; line-height: 1.35; }
.doctor-card strong, .doctor-card span { display: block; }
.doctor-card strong { font-size: .87rem; }
.doctor-card p span { margin-top: .2rem; color: var(--ink-2); font-size: .73rem; }

.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof p { margin: 0; padding: 1.55rem 2rem; text-align: center; }
.proof p + p { border-left: 1px solid var(--line); }
.proof strong, .proof span { display: block; }
.proof strong { margin-bottom: .2rem; font-size: .88rem; }
.proof span { color: #637879; font-size: .76rem; }

.treatments { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading h2 { margin: 0; }
.section-heading > p { margin: 0 0 .55rem; color: var(--ink-2); }
.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.treatment-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s, box-shadow .25s; }
.treatment-card:hover { transform: translateY(-7px); box-shadow: 0 18px 45px rgba(20, 52, 54, .1); }
.treatment-card__image { display: block; overflow: hidden; aspect-ratio: 4 / 4.6; background: var(--teal-soft); }
.treatment-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.treatment-card:hover .treatment-card__image img { transform: scale(1.025); }
.treatment-card__body { padding: 1.35rem 1.35rem 1.5rem; }
.treatment-card__body h3 a { text-decoration: none; }
.treatment-card__body > p:not(.tag) { min-height: 4.8em; margin-bottom: 1.35rem; color: #536b6d; font-size: .88rem; line-height: 1.55; }
.tag { margin-bottom: .55rem; color: var(--gold); font-size: .69rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.card-link { color: var(--teal); font-size: .78rem; }
.service-links { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-top: 2.4rem; }
.service-links a { padding: .55rem .9rem; border: 1px solid var(--line); border-radius: 50px; color: var(--ink-2); background: var(--white); font-size: .78rem; font-weight: 650; text-decoration: none; transition: border-color .2s, background .2s; }
.service-links a:hover { border-color: var(--sage); background: var(--teal-soft); }

.doctor { overflow: hidden; color: var(--white); background: var(--teal); }
.doctor__grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.doctor__visual { position: relative; max-width: 500px; padding: 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 240px 240px 15px 15px; }
.doctor__visual img { width: 100%; aspect-ratio: 4 / 5; border-radius: 226px 226px 9px 9px; object-fit: cover; }
.clinic-badge { position: absolute; right: -40px; bottom: 35px; padding: .85rem 1.1rem; border-radius: 4px; color: var(--teal); background: var(--white); box-shadow: var(--shadow); font-size: .8rem; font-weight: 750; }
.clinic-badge span { margin-right: .35rem; color: var(--gold); }
.doctor__content > p { max-width: 660px; color: #c9d7d5; }
.doctor__content .doctor__intro { color: var(--white); font-size: 1.18rem; }
.clinical-list { margin: 2rem 0 2.2rem; padding: 0; list-style: none; }
.clinical-list li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.clinical-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.clinical-list > li > span { color: var(--gold); font-family: Georgia, serif; font-size: 1.05rem; }
.clinical-list strong { display: block; margin-bottom: .15rem; }
.clinical-list p { margin: 0; color: #b8cbc8; font-size: .85rem; }

.visit { background: var(--warm); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.visit__grid > div > p:not(.eyebrow) { max-width: 580px; margin-bottom: 2rem; color: var(--ink-2); font-size: 1.05rem; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #d9d2c6; border-radius: var(--radius); background: rgba(255,255,255,.55); font-style: normal; }
.contact-panel > div { padding: 1.4rem 1.5rem; }
.contact-panel > div:first-child { border-bottom: 1px solid #d9d2c6; }
.contact-panel > div:nth-child(2) { border-bottom: 1px solid #d9d2c6; border-left: 1px solid #d9d2c6; }
.contact-panel > div:last-child { border-left: 1px solid #d9d2c6; }
.contact-panel__label { display: block; margin-bottom: .45rem; color: var(--gold); font-size: .68rem; font-weight: 780; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel strong, .contact-panel a { display: block; font-weight: 680; }
.contact-panel a { text-decoration: none; }
.contact-panel p { margin: .2rem 0 0; color: #536b6d; font-size: .84rem; }

.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 7rem); }
.faq__grid > div:first-child > p:not(.eyebrow) { max-width: 440px; color: var(--ink-2); }
.faq__items { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.45rem 3rem 1.45rem 0; cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 1.18rem; right: .25rem; color: var(--sage); content: "+"; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 680px; margin: -.25rem 2.5rem 1.5rem 0; color: var(--ink-2); }

.cta { padding: 4rem 0; color: var(--white); background: #1d4b4f; }
.cta__inner { display: flex; gap: 2rem; align-items: center; justify-content: space-between; }
.cta h2 { max-width: 760px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.cta .button { flex: 0 0 auto; }

.site-footer { padding: 4.5rem 0 1.5rem; color: #cad8d6; background: #0c292c; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer__logo { width: 180px; height: auto; margin-bottom: 1.2rem; }
.footer__grid p { max-width: 300px; margin: 0; font-size: .83rem; }
.footer__grid strong { display: block; margin-bottom: .85rem; color: var(--white); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__grid nav a, .footer__grid > div:not(:first-child) a { display: block; margin: .4rem 0; color: #cad8d6; font-size: .82rem; text-decoration: none; }
.footer__grid a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom p { margin: 0; font-size: .72rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: grid; width: 56px; height: 56px; place-items: center; border: 3px solid var(--white); border-radius: 50%; background: #25d366; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float img { width: 50px; height: 50px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; top: 0; right: 0; z-index: -1; display: flex; width: min(84vw, 380px); height: 100dvh; flex-direction: column; align-items: stretch; justify-content: center; padding: 5rem 2rem; background: var(--white); box-shadow: -20px 0 50px rgba(20,52,54,.16); opacity: 0; pointer-events: none; transform: translateX(100%); transition: transform .25s, opacity .25s; }
  .main-nav > a:not(.button) { padding: .65rem 0; font-size: 1.05rem; }
  .nav-menu { width: 100%; }
  .nav-menu summary { justify-content: space-between; padding: .65rem 0; font-size: 1.05rem; }
  .nav-menu__panel { position: static; width: 100%; max-height: 38vh; padding: .35rem 0 .7rem .65rem; border: 0; box-shadow: none; opacity: 1; overflow-y: auto; pointer-events: auto; transform: none; }
  .nav-menu__panel a { padding: .5rem .7rem; }
  .nav-open .main-nav { z-index: 60; opacity: 1; pointer-events: auto; transform: none; }
  .nav-open .nav-toggle { position: fixed; top: 53px; right: 20px; z-index: 70; }
  .nav-open .nav-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr .82fr; gap: 2.5rem; }
  .doctor-card { right: -10px; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .treatment-card__body > p:not(.tag) { min-height: 0; }
  .footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .contact-bar__inner { min-height: 34px; justify-content: center; }
  .contact-bar p, .contact-bar div > span, .contact-bar div a:last-child { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand, .brand img { width: 140px; }
  .nav-open .nav-toggle { top: 46px; right: 11px; }
  .hero { padding: 3.25rem 0 4.5rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 0; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .hero__actions .text-link { text-align: center; }
  .hero__visual { width: calc(100% - 10px); margin: .5rem auto 0; }
  .doctor-card { right: -4px; bottom: 20px; min-width: 220px; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof p { padding: 1.05rem .75rem; }
  .proof p + p { border-top: 1px solid var(--line); border-left: 0; }
  .section-heading, .doctor__grid, .visit__grid, .faq__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .section-heading { margin-bottom: 2.5rem; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card__image { aspect-ratio: 4 / 3.8; }
  .doctor__visual { width: calc(100% - 25px); margin-inline: auto; }
  .clinic-badge { right: -18px; }
  .doctor__content { order: -1; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel > div + div { border-top: 1px solid #d9d2c6; }
  .contact-panel > div:nth-child(2), .contact-panel > div:last-child { border-left: 0; }
  .cta__inner { align-items: stretch; flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: .5rem; }
}

@media (max-width: 440px) {
  .section { padding: 4.5rem 0; }
  .trust-list { display: grid; grid-template-columns: 1fr; }
  .treatment-card__body { padding: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div:first-child { grid-column: auto; }
}

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