:root {
  --ink: #092d43;
  --ink-deep: #041e2e;
  --ink-soft: #184861;
  --gold: #d9ad46;
  --gold-pale: #f2d995;
  --ivory: #f7f4ec;
  --paper: #fcfbf7;
  --mist: #e6eff0;
  --white: #fff;
  --muted: #6f7f86;
  --line: rgba(9, 45, 67, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: 1280px;
  --shadow: 0 30px 90px rgba(4, 30, 46, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; color: #fff; background: #000; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.language-ribbon {
  position: relative;
  z-index: 101;
  color: rgba(255,255,255,.66);
  background: var(--ink-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.language-ribbon__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.language-ribbon p { display: flex; align-items: center; gap: 12px; margin: 0; }
.language-ribbon p span { width: 18px; height: 1px; background: var(--gold); }
.language-ribbon nav { display: flex; align-self: stretch; }
.language-ribbon nav a { min-width: 42px; display: grid; place-items: center; border-left: 1px solid rgba(255,255,255,.1); }
.language-ribbon nav a:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.language-ribbon nav a.is-active { color: var(--ink-deep); background: var(--gold); }

.header {
  position: absolute;
  top: 34px;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.header.is-fixed { position: fixed; top: 0; background: rgba(252,251,247,.94); box-shadow: 0 12px 40px rgba(4,30,46,.08); backdrop-filter: blur(18px); }
.header--light:not(.is-fixed) { color: #fff; border-bottom-color: rgba(255,255,255,.16); }
.header--light:not(.is-fixed) .logo small { color: rgba(255,255,255,.58); }
.header--light:not(.is-fixed) .nav-appointment { color: var(--ink-deep); background: var(--gold); }
.header__inner { height: 88px; display: flex; align-items: center; gap: 38px; }
.logo { min-width: 248px; display: inline-flex; align-items: center; gap: 13px; }
.logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: 50% 10%; box-shadow: 0 8px 24px rgba(4,30,46,.1); }
.logo > span { display: flex; flex-direction: column; line-height: 1.08; }
.logo strong { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.logo small { margin-top: 5px; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.nav a { position: relative; padding: 12px 0; font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.nav a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-appointment { min-height: 44px; display: inline-flex; align-items: center; gap: 16px; padding: 0 19px; color: #fff; background: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.nav-appointment:hover { background: var(--ink-deep); transform: translateY(-2px); }
.nav-appointment i { color: var(--gold); font-style: normal; }
.menu-button { width: 46px; height: 46px; display: none; place-items: center; gap: 6px; padding: 0; border: 1px solid currentColor; background: transparent; cursor: pointer; }
.menu-button span { width: 18px; height: 1px; display: block; background: currentColor; transition: transform .25s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.kicker span { width: 30px; height: 1px; background: var(--gold); }
.kicker--light { color: var(--gold-pale); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 26px; font-family: var(--serif); font-weight: 500; letter-spacing: -.05em; line-height: .98; }
h1 { font-size: clamp(56px, 6.1vw, 94px); }
h2 { font-size: clamp(43px, 4.5vw, 68px); }
h1 em, h2 em { color: var(--gold); font-weight: 500; }
.section { position: relative; padding: 126px 0; }

.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 28px; border: 1px solid transparent; cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button--navy { color: #fff; background: var(--ink); }
.button--navy span { color: var(--gold); }
.button--gold { color: var(--ink-deep); background: var(--gold); }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.28); }
.button--outline-light:hover { color: var(--ink-deep); background: var(--gold); border-color: var(--gold); }
.link-arrow { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.link-arrow span { color: var(--gold); font-size: 14px; }
.link-arrow--dark { border-color: var(--ink); }

.hero-v2 { position: relative; min-height: 860px; padding-top: 122px; background: var(--ivory); overflow: hidden; }
.hero-v2::before { position: absolute; top: 0; right: 50%; width: 1px; height: 100%; background: rgba(9,45,67,.06); content: ""; }
.hero-v2__line { position: absolute; top: 145px; left: 4%; width: 340px; height: 340px; border: 1px solid rgba(217,173,70,.22); border-radius: 50%; }
.hero-v2__line::before, .hero-v2__line::after { position: absolute; border: 1px solid rgba(217,173,70,.12); border-radius: 50%; content: ""; }
.hero-v2__line::before { inset: 46px; }
.hero-v2__line::after { inset: 92px; }
.hero-v2__grid { min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(56px, 8vw, 120px); padding-top: 45px; padding-bottom: 55px; }
.hero-v2__content { position: relative; z-index: 2; max-width: 700px; padding: 38px 0 20px; }
.hero-v2__content > p { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.hero-v2__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 30px; }
.hero-v2__languages { display: flex; align-items: center; gap: 8px; margin-top: 48px; }
.hero-v2__languages > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 8px; font-weight: 800; }
.hero-v2__languages small { margin-left: 8px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-v2__visual { position: relative; align-self: stretch; min-height: 610px; padding: 0 0 40px 25px; }
.hero-v2__visual figure { height: 100%; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.hero-v2__visual figure::after { position: absolute; inset: 0 0 40px 25px; border: 1px solid rgba(255,255,255,.24); content: ""; pointer-events: none; transform: scale(.94); }
.hero-v2__visual img { width: 100%; height: 100%; object-fit: cover; }
.rating-card { position: absolute; bottom: 0; left: -35px; z-index: 3; min-width: 250px; display: flex; align-items: center; gap: 18px; padding: 20px 23px; background: rgba(255,255,255,.94); box-shadow: 0 20px 60px rgba(4,30,46,.16); backdrop-filter: blur(16px); }
.rating-card > div { display: flex; flex-direction: column; }
.rating-card strong { font-family: var(--serif); font-size: 34px; line-height: 1; }
.rating-card span { color: var(--gold); font-size: 8px; letter-spacing: 1px; }
.rating-card p { margin: 0; font-family: var(--serif); font-size: 14px; line-height: 1.4; }
.rating-card small { color: var(--muted); font-family: var(--sans); font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-v2__caption { position: absolute; right: -2px; bottom: 17px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-v2__caption span { margin-right: 9px; color: var(--gold); }
.hero-v2__services { min-height: 110px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-v2__services a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 22px; border-right: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 15px; transition: color .25s ease, background .25s ease; }
.hero-v2__services a:hover { color: #fff; background: var(--ink); }
.hero-v2__services span { color: var(--gold); font-family: var(--sans); font-size: 8px; }
.hero-v2__services i { color: var(--gold); font-style: normal; font-size: 12px; }

.intro { overflow: hidden; }
.intro::before { position: absolute; top: 0; right: 0; width: 26%; height: 100%; background: rgba(230,239,240,.35); content: ""; }
.intro__grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(70px,10vw,160px); }
.intro__title h2 { margin-bottom: 0; }
.intro__copy { max-width: 600px; padding-top: 38px; }
.intro__copy p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.intro__copy .lead { color: var(--ink); font-family: var(--serif); font-size: 21px; line-height: 1.6; }
.intro__copy .link-arrow { margin-top: 16px; }
.editorial-gallery { position: relative; min-height: 650px; display: grid; grid-template-columns: 1.45fr .8fr; gap: 18px; margin-top: 90px; }
.editorial-gallery figure { margin: 0; }
.editorial-gallery__main { position: relative; height: 650px; overflow: hidden; }
.editorial-gallery__main img, .editorial-gallery__detail img { width: 100%; height: 100%; object-fit: cover; }
.editorial-gallery__main figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; padding: 28px 32px; color: #fff; background: linear-gradient(to top, rgba(4,30,46,.78), transparent); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.editorial-gallery__main figcaption span { color: var(--gold-pale); }
.editorial-gallery__detail { height: 420px; align-self: end; overflow: hidden; }
.editorial-gallery__note { position: absolute; top: 48px; right: 16%; z-index: 3; min-width: 210px; padding: 28px; color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.editorial-gallery__note strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.35; }
.editorial-gallery__note small { display: block; margin-top: 20px; color: var(--gold-pale); font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.treatments { color: #fff; background: var(--ink-deep); overflow: hidden; }
.treatments::after { position: absolute; right: -240px; bottom: -240px; width: 620px; height: 620px; border: 1px solid rgba(217,173,70,.13); border-radius: 50%; content: ""; }
.section-heading { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 65px; }
.section-heading h2 { margin-bottom: 0; }
.treatment-list { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.14); }
.treatment-row { min-height: 130px; display: grid; grid-template-columns: 62px 1fr .85fr 30px; align-items: center; gap: 24px; padding: 24px 18px 24px 0; border-bottom: 1px solid rgba(255,255,255,.14); transition: padding .3s ease, background .3s ease; }
.treatment-row:hover { padding-left: 22px; background: rgba(255,255,255,.035); }
.treatment-row > span { color: var(--gold); font-family: var(--serif); font-size: 15px; }
.treatment-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(23px,2.5vw,34px); font-weight: 500; }
.treatment-row p { margin: 0; color: rgba(255,255,255,.47); font-size: 11px; }
.treatment-row i { color: var(--gold); font-style: normal; }

.languages { background: var(--ivory); }
.languages__grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(70px,10vw,150px); }
.languages__intro { position: sticky; top: 130px; }
.languages__intro p { max-width: 520px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.language-cards { border-top: 1px solid var(--line); }
.language-card { display: grid; gap: 10px; padding: 34px 30px; border-bottom: 1px solid var(--line); transition: color .3s ease, background .3s ease, transform .3s ease; }
.language-card:hover, .language-card.is-featured { color: #fff; background: var(--ink); transform: translateX(-10px); }
.language-card small { color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.language-card strong { font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.35; }
.language-card > span { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; }
.language-card:hover > span, .language-card.is-featured > span { color: rgba(255,255,255,.5); }
.language-card i { color: var(--gold); font-style: normal; font-size: 14px; }

.clinical-experience { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; }
.clinical-experience__image { min-height: 760px; overflow: hidden; }
.clinical-experience__image img { width: 100%; height: 100%; object-fit: cover; }
.clinical-experience__content { display: flex; justify-content: center; flex-direction: column; padding: 90px clamp(48px,7vw,110px); color: #fff; background: var(--ink); }
.clinical-experience__content p { max-width: 550px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.9; }
.clinical-experience__content ul { margin: 22px 0 35px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.clinical-experience__content li { display: grid; grid-template-columns: 45px 1fr; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 11px; }
.clinical-experience__content li span { color: var(--gold); }
.clinical-experience__content .button { align-self: flex-start; }

.reviews-v2 { background: var(--paper); }
.reviews-v2__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 65px; }
.reviews-v2__header h2 { margin-bottom: 0; }
.google-score { min-width: 240px; display: flex; align-items: center; gap: 18px; padding: 18px 20px; border: 1px solid var(--line); }
.google-score > strong { font-family: var(--serif); font-size: 36px; line-height: 1; }
.google-score span { display: flex; flex-direction: column; color: var(--gold); font-size: 9px; letter-spacing: 2px; }
.google-score small { margin-top: 4px; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.review-grid article { min-height: 360px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease, transform .3s ease; }
.review-grid article:hover { background: var(--ivory); transform: translateY(-7px); }
.review-grid .quote { color: var(--gold); font-family: var(--serif); font-size: 70px; line-height: .7; }
.review-grid p { margin: 28px 0; font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.6; }
.review-grid footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.review-grid footer strong, .review-grid footer small { display: block; }
.review-grid footer strong { margin-bottom: 3px; font-size: 10px; letter-spacing: .05em; }
.review-grid footer small { color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.appointment-v2 { color: #fff; background: var(--ink); overflow: hidden; }
.appointment-v2__orbit { position: absolute; top: 50%; left: -180px; width: 500px; height: 500px; border: 1px solid rgba(217,173,70,.13); border-radius: 50%; transform: translateY(-50%); }
.appointment-v2__orbit::after { position: absolute; inset: 70px; border: 1px solid rgba(217,173,70,.09); border-radius: inherit; content: ""; }
.appointment-v2__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(70px,9vw,140px); }
.appointment-v2__grid h2 { margin-bottom: 22px; }
.appointment-v2__grid p { max-width: 500px; color: rgba(255,255,255,.52); font-size: 13px; }
.appointment-v2__contact { border-top: 1px solid rgba(255,255,255,.14); }
.appointment-v2__contact a { display: grid; grid-template-columns: 100px 1fr 30px; align-items: center; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.14); transition: padding .25s ease; }
.appointment-v2__contact a:hover { padding-left: 14px; }
.appointment-v2__contact small { color: var(--gold-pale); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.appointment-v2__contact strong { font-family: var(--serif); font-size: 23px; font-weight: 500; }
.appointment-v2__contact i { color: var(--gold); font-style: normal; }

.footer-v2 { padding: 70px 0 22px; color: rgba(255,255,255,.58); background: #031722; }
.footer-v2__top { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 70px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.1); }
.logo--footer { color: #fff; }
.footer-v2__top > div:first-child > p { max-width: 300px; margin-top: 20px; font-size: 11px; }
.footer-v2__top > div:not(:first-child) { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-v2__top > div:not(:first-child) > small { margin-bottom: 8px; color: var(--gold-pale); font-size: 7px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-v2__top a, .footer-v2__top p { margin: 0; font-size: 10px; }
.footer-v2__bottom { min-height: 70px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 35px; font-size: 7px; letter-spacing: .06em; }
.footer-v2__bottom div { display: flex; gap: 22px; }
.footer-v2__bottom > a { justify-self: end; color: var(--gold-pale); }
.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; box-shadow: 0 15px 45px rgba(4,30,46,.2); }
.floating-actions a { min-width: 90px; min-height: 42px; display: grid; place-items: center; color: #fff; background: var(--ink); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.floating-actions a:last-child { color: var(--ink-deep); background: var(--gold); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.inner-hero { position: relative; min-height: 620px; padding: 190px 0 80px; color: #fff; background: var(--ink); overflow: hidden; }
.inner-hero::after { position: absolute; inset: 0 0 0 52%; background: linear-gradient(90deg,var(--ink),transparent 34%), var(--hero-image) center/cover; content: ""; opacity: .78; }
.inner-hero__content { position: relative; z-index: 2; max-width: 760px; }
.inner-hero h1 { font-size: clamp(58px,7vw,100px); }
.inner-hero p { max-width: 590px; color: rgba(255,255,255,.62); font-size: 15px; }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 34px; color: rgba(255,255,255,.45); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs a { color: var(--gold-pale); }
.page-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.page-intro .lead { font-family: var(--serif); font-size: 25px; line-height: 1.6; }
.page-intro p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.detail-services { background: var(--ivory); }
.detail-service { display: grid; grid-template-columns: 90px .9fr 1.1fr; gap: 45px; padding: 62px 0; border-top: 1px solid var(--line); }
.detail-service:last-child { border-bottom: 1px solid var(--line); }
.detail-service > span { color: var(--gold); font-family: var(--serif); font-size: 20px; }
.detail-service h2 { font-size: clamp(34px,3.4vw,50px); }
.detail-service h3 { margin: 22px 0 8px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.detail-service p, .detail-service li { color: var(--muted); font-size: 12px; }
.detail-service ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 0 0 26px; padding: 0; list-style: none; }
.detail-service li::before { margin-right: 9px; color: var(--gold); content: "—"; }
.clinic-story { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.clinic-story__image { min-height: 720px; }
.clinic-story__image img { width: 100%; height: 100%; object-fit: cover; }
.clinic-story__content { display: flex; justify-content: center; flex-direction: column; padding: 90px clamp(45px,7vw,110px); color: #fff; background: var(--ink); }
.clinic-story__content p { color: rgba(255,255,255,.58); font-size: 13px; }
.clinic-values { display: grid; grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.clinic-values article { min-height: 250px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.clinic-values span { color: var(--gold); font-family: var(--serif); font-size: 18px; }
.clinic-values h3 { margin: 45px 0 12px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.clinic-values p { margin: 0; color: var(--muted); font-size: 11px; }
.contact-page { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; }
.contact-page__panel { display: flex; justify-content: center; flex-direction: column; padding: 90px clamp(45px,7vw,110px); color: #fff; background: var(--ink); }
.contact-page__details { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-page__details > div { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-page__details small { display: block; margin-bottom: 5px; color: var(--gold-pale); font-size: 7px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-page__details p, .contact-page__details a { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.contact-page__map iframe { width: 100%; height: 100%; min-height: 720px; display: block; border: 0; filter: saturate(.65) contrast(1.05); }
.seo-copy { background: var(--paper); }
.seo-copy__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.seo-copy h2 { font-size: clamp(38px,4vw,60px); }
.seo-copy p, .seo-copy li { color: var(--muted); font-size: 13px; }
.seo-copy ul { padding-left: 18px; }
.language-hero { min-height: 700px; padding: 185px 0 100px; color: #fff; background: linear-gradient(90deg,rgba(4,30,46,.97) 0%,rgba(4,30,46,.83) 48%,rgba(4,30,46,.2) 100%), url("../images/clinic/clinic-new-treatment-01.webp") center/cover; }
.language-hero__content { max-width: 820px; }
.language-hero h1 { font-size: clamp(58px,7vw,104px); }
.language-hero p { max-width: 660px; color: rgba(255,255,255,.66); font-size: 16px; }
.language-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.language-hero__meta span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .logo { min-width: 215px; }
  .hero-v2__grid { grid-template-columns: 1fr .8fr; gap: 45px; }
  .hero-v2__visual { min-height: 560px; }
  .footer-v2__top { gap: 35px; }
}

@media (max-width: 900px) {
  .nav, .nav-appointment { display: none; }
  .header__inner { height: 76px; justify-content: space-between; }
  .menu-button { display: grid; }
  .mobile-nav { position: fixed; top: 76px; right: 0; left: 0; z-index: 99; display: grid; padding: 25px 24px; opacity: 0; visibility: hidden; background: var(--paper); box-shadow: 0 20px 50px rgba(4,30,46,.14); transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav > a:not(.button) { padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 19px; }
  .mobile-nav .button { margin-top: 20px; }
  .hero-v2 { padding-top: 110px; }
  .hero-v2__grid { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-v2__content { max-width: 760px; }
  .hero-v2__visual { min-height: 560px; padding-left: 0; }
  .hero-v2__visual figure::after { left: 0; }
  .hero-v2__services { grid-template-columns: 1fr 1fr; }
  .intro__grid, .languages__grid, .appointment-v2__grid, .page-intro, .seo-copy__grid { grid-template-columns: 1fr; gap: 55px; }
  .languages__intro { position: static; }
  .clinical-experience, .clinic-story, .contact-page { grid-template-columns: 1fr; }
  .clinical-experience__image, .clinic-story__image { min-height: 580px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid article { min-height: 290px; }
  .footer-v2__top { grid-template-columns: 1fr 1fr; }
  .footer-v2__bottom { grid-template-columns: 1fr; padding: 25px 0; }
  .footer-v2__bottom > a { justify-self: start; }
  .detail-service { grid-template-columns: 55px 1fr; }
  .detail-service > div:last-child { grid-column: 2; }
  .inner-hero::after { left: 40%; opacity: .55; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .language-ribbon p { font-size: 7px; letter-spacing: .08em; }
  .language-ribbon p span, .language-ribbon p span + * { display: none; }
  .language-ribbon nav a { min-width: 38px; }
  .header { top: 34px; }
  .header.is-fixed { top: 0; }
  .header__inner { height: 70px; }
  .mobile-nav { top: 70px; }
  .logo { min-width: 0; }
  .logo img { width: 42px; height: 42px; }
  .logo strong { font-size: 17px; }
  .logo small { font-size: 6px; }
  .menu-button { width: 42px; height: 42px; }
  h1 { font-size: clamp(47px,14vw,67px); }
  h2 { font-size: clamp(38px,11vw,51px); }
  .section { padding: 86px 0; }
  .hero-v2 { padding-top: 104px; }
  .hero-v2__grid { padding-top: 55px; }
  .hero-v2__content > p { font-size: 14px; }
  .hero-v2__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-v2__languages { flex-wrap: wrap; }
  .hero-v2__languages small { width: 100%; margin: 5px 0 0; }
  .hero-v2__visual { min-height: 450px; }
  .rating-card { bottom: 2px; left: 0; min-width: 220px; }
  .hero-v2__services { grid-template-columns: 1fr; }
  .hero-v2__services a { min-height: 74px; }
  .intro::before { display: none; }
  .editorial-gallery { min-height: 700px; grid-template-columns: 1fr; }
  .editorial-gallery__main { height: 480px; }
  .editorial-gallery__detail { height: 290px; }
  .editorial-gallery__note { top: 410px; right: 10px; }
  .section-heading, .reviews-v2__header { align-items: flex-start; flex-direction: column; }
  .treatment-row { grid-template-columns: 36px 1fr 20px; gap: 12px; }
  .treatment-row p { display: none; }
  .language-card { padding: 27px 20px; }
  .language-card:hover, .language-card.is-featured { transform: none; }
  .clinical-experience__image, .clinic-story__image { min-height: 420px; }
  .clinical-experience__content, .clinic-story__content { padding: 75px 24px; }
  .google-score { min-width: 100%; }
  .review-grid article { padding: 28px; }
  .appointment-v2__contact a { grid-template-columns: 78px 1fr 20px; gap: 10px; }
  .appointment-v2__contact strong { font-size: 18px; }
  .footer-v2 { padding-bottom: 90px; }
  .footer-v2__top { grid-template-columns: 1fr; }
  .floating-actions { right: 0; bottom: 0; left: 0; flex-direction: row; }
  .floating-actions a { width: 50%; min-height: 58px; }
  .inner-hero { min-height: 590px; padding-top: 165px; }
  .inner-hero::after { inset: 0; opacity: .35; }
  .detail-service { grid-template-columns: 34px 1fr; gap: 12px; padding: 45px 0; }
  .detail-service ul { grid-template-columns: 1fr; }
  .clinic-values { grid-template-columns: 1fr; }
  .contact-page__panel { padding: 75px 24px; }
  .contact-page__map iframe { min-height: 480px; }
  .language-hero { min-height: 650px; padding-top: 160px; }
}

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