:root {
  --ink: #151817;
  --muted: #5f6966;
  --line: #d9dfdc;
  --paper: #ffffff;
  --mist: #edf3f1;
  --teal: #0e5b5b;
  --teal-dark: #083d3e;
  --coral: #c66f66;
  --gold: #a78a61;
  --header-height: 72px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.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; }
.eyebrow { margin: 0 0 12px; color: var(--coral); font-size: 12px; font-weight: 700; text-transform: uppercase; }
h1, h2, h3, p { letter-spacing: 0; }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h2 { margin-bottom: 18px; font-size: 58px; line-height: 1.05; }
.lede { max-width: 680px; margin: 0; color: var(--muted); font-size: 20px; }
.section { padding: 96px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-head > div { max-width: 720px; }
.section-head p:last-child { margin-bottom: 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-weight: 700; }
.text-link:hover { color: var(--coral); }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: #ead8c5;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(21,24,23,.1);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button > span[aria-hidden="true"] {
  display: inline-block;
  width: auto;
  height: auto;
  flex: none;
  color: currentColor;
  background: transparent;
  transition: transform .2s ease;
}
.button:hover { background: #dfc3a5; border-color: transparent; transform: translateY(-1px); box-shadow: 0 11px 22px rgba(21,24,23,.13); }
.button:hover > span[aria-hidden="true"] { transform: translateX(3px); }
.button:active { transform: translateY(0); box-shadow: 0 5px 12px rgba(21,24,23,.1); }
.button:focus-visible { outline: 3px solid rgba(198,111,102,.38); outline-offset: 3px; }
.button-light { color: var(--ink); background: #ead8c5; border-color: transparent; }
.button-light:hover { color: var(--ink); background: #dfc3a5; border-color: transparent; }
.button-outline { color: var(--teal); background: transparent; border-color: var(--teal); box-shadow: none; }
.button-outline:hover { color: #fff; background: var(--teal); border-color: var(--teal); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.header-solid, .site-header.is-scrolled { color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 8px 28px rgba(15,35,31,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; white-space: nowrap; }
.brand-mark { font: 500 28px/1 Georgia, serif; }
.brand-sub { font-size: 9px; font-weight: 700; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.desktop-nav a:not(.button):hover { color: var(--coral); }
.language-control { flex: 0 0 auto; }
.language-control select {
  width: 92px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.language-control option { color: var(--ink); background: #fff; }
.header-solid .language-control select, .is-scrolled .language-control select { border-color: var(--line); color: var(--ink); background: #fff; }
.header-button { min-height: 40px; padding-inline: 20px; color: #fff; border-color: currentColor; background: transparent; box-shadow: none; }
.header-solid .header-button, .is-scrolled .header-button { color: var(--ink); border-color: transparent; background: #ead8c5; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 20px;
  color: var(--ink);
  background: #fff;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; gap: 0; }
.mobile-menu nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font: 400 27px/1.2 Georgia, serif; }
.mobile-menu .button { margin-top: 28px; width: 100%; color: var(--ink); font: 700 14px/1 Arial, sans-serif; }

.home-hero {
  position: relative;
  height: 86svh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  color: #fff;
  background: #142422 url("../images/hero-video-poster.jpg") center / cover no-repeat;
}
.hero-video-frame { position: absolute; inset: 0; overflow: hidden; }
.home-hero video {
  position: absolute;
  top: -16.2%;
  right: 0;
  left: 0;
  width: 100%;
  height: 132.4%;
  object-fit: cover;
  opacity: 0;
  transform: none;
  background: #0e1514;
  transition: opacity .5s ease;
}
.home-hero.video-ready video { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: rgba(4,24,24,.58); }
.hero-copy { position: relative; z-index: 1; display: flex; height: 100%; flex-direction: column; justify-content: flex-end; padding-bottom: 76px; }
.hero-copy .eyebrow { color: #f0a098; }
.hero-copy h1 { max-width: 820px; margin-bottom: 22px; font-size: 86px; line-height: .92; }
.hero-copy p { max-width: 620px; margin: 0 0 30px; color: rgba(255,255,255,.83); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { min-width: 220px; justify-content: space-between; }
.home-hero .hero-actions .button:not(.button-light) { color: #fff; border-color: rgba(255,255,255,.58); background: transparent; box-shadow: none; }
.home-hero .hero-actions .button:not(.button-light):hover { color: var(--ink); border-color: #ead8c5; background: #ead8c5; }
.hero-note { position: absolute; z-index: 1; right: 28px; bottom: 82px; font-size: 11px; text-transform: uppercase; writing-mode: vertical-rl; }

.trust-band { color: #fff; background: var(--teal-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { min-height: 130px; padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 7px; font: 400 27px/1 Georgia, serif; }
.trust-item span { color: rgba(255,255,255,.72); font-size: 13px; }

.treatments { background: var(--mist); }
.treatment-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.treatment-card { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 14px 38px rgba(8,61,62,.08); }
.treatment-card img { width: 100%; height: auto; object-fit: contain; }
.treatment-card:hover img { transform: none; }
.treatment-overlay { position: static; padding: 30px 30px 28px; color: #fff; background: var(--teal-dark); }
.treatment-number { display: block; margin-bottom: 14px; color: #efaaa3; font-size: 12px; font-weight: 700; }
.treatment-overlay h3 { margin-bottom: 8px; font: 400 44px/1 Georgia, serif; }
.treatment-overlay p { max-width: 480px; margin: 0 0 20px; color: rgba(255,255,255,.78); }
.treatment-overlay .text-link { color: #fff; }

.doctor-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.doctor-profile { display: block; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; box-shadow: 0 14px 38px rgba(21,24,23,.05); }
.doctor-profile img { width: 100%; height: auto; object-fit: contain; }
.doctor-profile-copy { padding: 24px 26px 26px; }
.doctor-profile-copy h3 { margin-bottom: 6px; font: 400 29px/1.1 Georgia, serif; }
.doctor-profile-copy p { margin: 0; color: var(--muted); }

.care-band { color: #fff; background: var(--ink); }
.care-band .section-head p, .care-band .lede { color: rgba(255,255,255,.65); }
.care-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.care-step { padding: 32px 34px 0 0; }
.care-step span { display: block; margin-bottom: 28px; color: #efaaa3; font-size: 12px; font-weight: 700; }
.care-step h3 { margin-bottom: 10px; font: 400 26px/1.15 Georgia, serif; }
.care-step p { margin: 0; color: rgba(255,255,255,.65); }

.consult-band { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 420px; }
.consult-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px max(36px, calc((100vw - var(--content))/2)); color: #fff; background: var(--teal); }
.consult-copy h2 { max-width: 680px; }
.consult-copy p { max-width: 600px; color: rgba(255,255,255,.72); }
.consult-art { position: relative; overflow: hidden; background: #f7f7f7; }
.consult-art img { width: 100%; height: 100%; object-fit: contain; }

.service-hero { padding-top: var(--header-height); background: #f6f8f7; }
.service-visual { display: flex; height: auto; min-height: 0; justify-content: center; overflow: visible; background: #fff; }
.service-visual img { width: min(100%, 600px); height: auto; object-fit: contain; }
.service-title-band { padding: 34px 0 38px; color: #fff; background: var(--teal-dark); }
.service-title-layout { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.service-title-band h1 { max-width: 760px; margin: 0; font-size: 76px; line-height: .95; }
.service-title-band p { max-width: 430px; margin: 0; color: rgba(255,255,255,.7); }
.service-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.service-fact { padding: 32px; border-right: 1px solid var(--line); }
.service-fact:last-child { border-right: 0; }
.service-fact strong { display: block; margin-bottom: 6px; font: 400 25px/1.1 Georgia, serif; }
.service-fact span { color: var(--muted); font-size: 13px; }

.media-section { background: var(--mist); }
.media-frame { overflow: hidden; border-radius: 6px; background: #fff; box-shadow: 0 22px 60px rgba(8,61,62,.09); }
.media-frame picture { display: block; }
.media-frame img { width: 100%; height: auto; }
.results-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 64px; }
.results-layout img { width: 100%; border-radius: 6px; box-shadow: 0 22px 60px rgba(8,61,62,.1); }
.results-case { margin: 0; }
.result-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1px; overflow: hidden; border-radius: 4px; color: #fff; background: #fff; }
.result-stages span { padding: 13px 8px; text-align: center; background: var(--teal-dark); font-size: 12px; font-weight: 700; }
.disclaimer { color: var(--muted); font-size: 12px; }

.consultation-section { color: #fff; background: var(--ink); }
.consultation-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.consultation-layout p { color: rgba(255,255,255,.65); }
.consultation-form { display: grid; gap: 28px; }
.question-group { border: 0; margin: 0; padding: 0; }
.question-group legend { margin-bottom: 13px; font-weight: 700; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.option { position: relative; }
.option input { position: absolute; opacity: 0; }
.option span { display: flex; min-height: 50px; align-items: center; padding: 12px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; color: rgba(255,255,255,.82); cursor: pointer; }
.option input:checked + span { color: #fff; border-color: var(--coral); background: var(--coral); }
.option input:focus-visible + span { outline: 2px solid #fff; outline-offset: 2px; }
.consultation-form .button { width: fit-content; color: var(--ink); background: #ead8c5; border-color: transparent; }

.related { background: var(--mist); }
.related-link { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 28px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-link img { width: 180px; height: 120px; object-fit: contain; border-radius: 4px; background: #fff; }
.related-link h3 { margin: 0 0 4px; font: 400 28px/1.1 Georgia, serif; }
.related-link p { margin: 0; color: var(--muted); }
.related-link .arrow { color: var(--teal); font-size: 28px; }

.privacy-main { padding: calc(var(--header-height) + 70px) 0 100px; }
.privacy-main article { max-width: 780px; }
.privacy-main h1 { margin-bottom: 22px; font-size: 68px; overflow-wrap: anywhere; }
.privacy-main h2 { margin-top: 46px; font-size: 30px; }
.privacy-main p, .privacy-main li { color: var(--muted); }

.site-footer { padding: 50px 0 28px; color: rgba(255,255,255,.72); background: var(--teal-dark); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 420px; }
.footer-title { color: #fff; font-size: 13px; font-weight: 700; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-links button { width: fit-content; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); font-size: 11px; }

.cookie-banner { display: none; position: fixed; z-index: 200; right: 18px; bottom: 18px; width: min(440px, calc(100% - 36px)); padding: 22px; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 22px 60px rgba(0,0,0,.2); }
.show-cookie-banner .cookie-banner { display: block; }
.cookie-banner h2 { margin-bottom: 8px; font: 400 23px/1.1 Georgia, serif; }
.cookie-banner p { margin: 0 0 17px; color: var(--muted); font-size: 13px; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions .button { min-height: 44px; flex: 1; padding-inline: 18px; box-shadow: none; }
.mobile-consult { display: none; }

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

@media (max-width: 820px) {
  :root { --header-height: 64px; }
  [data-reveal] { opacity: 1; transform: none; }
  .shell { width: min(calc(100% - 32px), var(--content)); }
  .desktop-nav { display: none; }
  .header-inner { gap: 12px; }
  .language-control { margin-left: auto; }
  .language-control select { width: 88px; }
  .menu-button { display: block; }
  .section { padding: 72px 0; }
  h2 { font-size: 44px; }
  .lede { font-size: 17px; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-head .text-link { margin-top: 18px; }
  .home-hero { height: auto; min-height: 0; max-height: none; padding-top: var(--header-height); background: var(--teal-dark); }
  .hero-video-frame { position: relative; inset: auto; width: 100%; aspect-ratio: 40 / 17; overflow: hidden; background: #0e1514; }
  .home-hero video { position: absolute; top: 50%; right: auto; left: 0; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; opacity: 1; transform: translateY(-50%); }
  .hero-shade { display: none; }
  .hero-copy { height: auto; padding: 38px 16px 40px; background: var(--teal-dark); }
  .hero-copy h1 { font-size: 54px; }
  .hero-copy p { font-size: 17px; }
  .hero-note { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 0; padding: 22px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .trust-item:last-child { border-bottom: 0; }
  .treatment-grid, .doctor-grid { grid-template-columns: 1fr; }
  .treatment-card { min-height: 0; }
  .treatment-overlay h3 { font-size: 36px; }
  .doctor-profile { display: block; min-height: 0; }
  .doctor-profile img { height: auto; min-height: 0; }
  .care-steps { grid-template-columns: 1fr; }
  .care-step { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .consult-band { grid-template-columns: 1fr; }
  .consult-copy { padding: 66px 24px; }
  .consult-art { min-height: 380px; }
  .service-visual { height: auto; min-height: 0; }
  .service-title-layout { display: block; }
  .service-title-band h1 { font-size: 50px; }
  .service-title-band p { margin-top: 18px; }
  .service-facts { grid-template-columns: 1fr; }
  .service-fact { padding: 23px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .results-layout, .consultation-layout { grid-template-columns: 1fr; gap: 38px; }
  .related-link { grid-template-columns: 110px 1fr auto; gap: 16px; }
  .related-link img { width: 110px; height: 90px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  body { padding-bottom: 0; }
  .mobile-consult {
    display: flex;
    position: fixed;
    z-index: 90;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 50%;
    width: calc(100% - 32px);
    max-width: 360px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ink);
    background: #ead8c5;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 9px 22px rgba(21,24,23,.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 28px));
    transition: transform .28s ease, opacity .28s ease, box-shadow .2s ease;
  }
  .mobile-consult.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
  .mobile-consult span { display: inline; width: auto; height: auto; background: transparent; }
  .mobile-consult:active { transform: translate(-50%, 0); box-shadow: 0 5px 14px rgba(21,24,23,.14); }
  .mobile-consult:focus-visible { outline: 3px solid rgba(198,111,102,.38); outline-offset: 3px; }
  .menu-open .mobile-consult, .show-cookie-banner .mobile-consult { display: none; }
}

@media (max-width: 520px) {
  .brand-sub { display: none; }
  .home-hero { height: auto; }
  h2 { font-size: 38px; }
  .hero-copy h1 { font-size: 46px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .treatment-card { min-height: 0; }
  .treatment-overlay { padding: 32px 22px 23px; }
  .treatment-overlay h3 { font-size: 33px; }
  .doctor-profile { display: block; min-height: 0; }
  .doctor-profile img { height: auto; min-height: 0; }
  .doctor-profile-copy { padding: 20px; }
  .doctor-profile-copy h3 { font-size: 26px; }
  .doctor-profile-copy p { font-size: 13px; }
  .service-title-band h1 { font-size: 44px; }
  .privacy-main h1 { font-size: 46px; }
  .option-grid { grid-template-columns: 1fr; }
  .consultation-form .button { width: 100%; }
  .related-link { grid-template-columns: 82px 1fr; }
  .related-link img { width: 82px; height: 82px; }
  .related-link .arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .cookie-actions { display: grid; }
}

@media (max-width: 360px) {
  .brand-sub { display: none; }
  .language-control select { width: 84px; }
}

[dir="rtl"] .brand { direction: ltr; }
[dir="rtl"] .hero-actions, [dir="rtl"] .section-head, [dir="rtl"] .service-title-layout, [dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .answers, [dir="rtl"] .option-grid { direction: rtl; }
[dir="rtl"] .related-link .arrow { transform: scaleX(-1); }

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