:root {
  --ink: #0a2f44;
  --ink-deep: #031a27;
  --ink-soft: #2b5d72;
  --gold: #e1b34f;
  --gold-pale: #f3d993;
  --ivory: #f4f0e7;
  --paper: #fbfaf6;
  --mist: #dcebed;
  --line: rgba(6, 39, 57, .13);
  --shadow: 0 38px 110px rgba(2, 23, 34, .22);
}

body {
  background:
    radial-gradient(circle at 92% 8%, rgba(225,179,79,.055), transparent 24%),
    var(--paper);
}

.language-ribbon {
  background: #02131d;
}

.header {
  border-bottom-color: rgba(255,255,255,.15);
}

.header:not(.is-fixed) {
  color: #fff;
}

.header:not(.is-fixed) .logo small {
  color: rgba(255,255,255,.58);
}

.header:not(.is-fixed) .nav-appointment {
  color: var(--ink-deep);
  background: var(--gold);
}

.header.is-fixed {
  background: rgba(250,248,242,.92);
  box-shadow: 0 20px 60px rgba(2,23,34,.09);
}

.header__inner {
  height: 94px;
}

.logo img {
  width: 51px;
  height: 51px;
  box-shadow: 0 12px 34px rgba(2,23,34,.15);
}

.logo strong {
  font-size: 22px;
}

.nav {
  gap: 33px;
}

.nav a {
  font-size: 9px;
  letter-spacing: .08em;
}

.nav-appointment {
  min-height: 48px;
  padding-inline: 23px;
}

.hero-v2 {
  min-height: 930px;
  padding-top: 128px;
  color: #fff;
  background: var(--ink-deep);
}

.hero-v2::before {
  z-index: 2;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(2,19,29,.96) 0%, rgba(2,19,29,.87) 42%, rgba(2,19,29,.34) 72%, rgba(2,19,29,.2) 100%),
    linear-gradient(0deg, rgba(2,19,29,.82) 0%, transparent 32%);
  content: "";
  pointer-events: none;
}

.hero-v2::after {
  position: absolute;
  z-index: 3;
  top: 128px;
  right: 5%;
  width: 1px;
  height: calc(100% - 230px);
  background: linear-gradient(transparent, rgba(225,179,79,.55), transparent);
  content: "";
}

.hero-v2__line {
  z-index: 3;
  top: 205px;
  left: -110px;
  width: 520px;
  height: 520px;
  border-color: rgba(225,179,79,.13);
}

.hero-v2__line::before {
  inset: 70px;
  border-color: rgba(225,179,79,.09);
}

.hero-v2__line::after {
  inset: 140px;
  border-color: rgba(225,179,79,.07);
}

.hero-v2__grid {
  position: relative;
  z-index: 4;
  min-height: 690px;
  grid-template-columns: 1fr;
  padding-top: 65px;
  padding-bottom: 140px;
}

.hero-v2__content {
  max-width: 920px;
  padding-top: 45px;
}

.hero-v2__content h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(65px, 7.4vw, 112px);
  line-height: .9;
  text-shadow: 0 16px 70px rgba(0,0,0,.25);
}

.hero-v2__content h1 em {
  color: var(--gold-pale);
}

.hero-v2__content > p {
  max-width: 630px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
}

.hero-v2__content .kicker {
  color: var(--gold-pale);
}

.hero-v2__content .button--navy {
  color: var(--ink-deep);
  background: var(--gold);
}

.hero-v2__content .button--navy span {
  color: var(--ink-deep);
}

.hero-v2__content .link-arrow {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

.hero-v2__languages > span {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
}

.hero-v2__languages small {
  color: rgba(255,255,255,.56);
}

.hero-v2__visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: 0;
  padding: 0;
}

.hero-v2__visual figure {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  box-shadow: none;
  transform: scale(1.035);
  transition: opacity 1.4s ease, visibility 1.4s, transform 7s ease;
}

.hero-v2__visual figure.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-v2__visual figure::after {
  display: none;
}

.hero-v2__visual img {
  object-position: center;
}

.hero-v2__visual figure:nth-child(3) img {
  object-position: center 34%;
}

.rating-card {
  right: 8%;
  bottom: 128px;
  left: auto;
  z-index: 5;
  min-width: 260px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(3,26,39,.68);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.rating-card small {
  color: rgba(255,255,255,.56);
}

.hero-v2__caption {
  z-index: 5;
  right: 8%;
  bottom: 94px;
  color: rgba(255,255,255,.58);
}

.hero-v3__controls {
  position: absolute;
  z-index: 6;
  right: 8%;
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-v3__controls button {
  width: 32px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}

.hero-v3__controls button.is-active {
  width: 58px;
  background: var(--gold);
}

.hero-v2__services {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(calc(100% - 48px), var(--shell));
  color: #fff;
  border-color: rgba(255,255,255,.16);
  background: rgba(3,26,39,.62);
  backdrop-filter: blur(18px);
}

.hero-v2__services a {
  color: #fff;
  border-color: rgba(255,255,255,.14);
}

.hero-v2__services a:hover {
  color: var(--ink-deep);
  background: var(--gold);
}

.hero-v2__services a:hover span,
.hero-v2__services a:hover i {
  color: var(--ink-deep);
}

.section {
  padding-top: 145px;
  padding-bottom: 145px;
}

.intro {
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(220,235,237,.3) 74%),
    var(--paper);
}

.intro::before {
  display: none;
}

.intro__title h2,
.intro__copy .lead {
  color: var(--ink-deep);
}

.editorial-gallery {
  min-height: 720px;
  grid-template-columns: 1.55fr .7fr;
  gap: 22px;
}

.editorial-gallery__main {
  height: 720px;
  box-shadow: var(--shadow);
}

.editorial-gallery__detail {
  height: 470px;
  box-shadow: 0 28px 80px rgba(2,23,34,.15);
}

.editorial-gallery__note {
  top: 70px;
  right: 13%;
  min-width: 238px;
  padding: 34px;
  background: rgba(3,26,39,.93);
  backdrop-filter: blur(15px);
}

.editorial-gallery__note strong {
  font-size: 27px;
}

.treatments {
  background:
    radial-gradient(circle at 88% 12%, rgba(225,179,79,.11), transparent 25%),
    var(--ink-deep);
}

.treatment-row {
  min-height: 145px;
}

.treatment-row h3 {
  letter-spacing: -.025em;
}

.treatment-row:hover {
  padding-left: 28px;
  background: linear-gradient(90deg, rgba(225,179,79,.09), transparent 62%);
}

.languages {
  background:
    radial-gradient(circle at 8% 86%, rgba(225,179,79,.07), transparent 25%),
    var(--ivory);
}

.language-card {
  min-height: 165px;
  justify-content: center;
  padding: 39px 36px;
}

.language-card:hover,
.language-card.is-featured {
  background:
    linear-gradient(120deg, rgba(255,255,255,.045), transparent 60%),
    var(--ink-deep);
  box-shadow: 0 20px 60px rgba(2,23,34,.15);
}

.clinical-experience__content {
  background:
    radial-gradient(circle at 90% 10%, rgba(225,179,79,.12), transparent 28%),
    var(--ink-deep);
}

.clinical-experience__image img {
  transition: transform 1.1s ease;
}

.clinical-experience:hover .clinical-experience__image img {
  transform: scale(1.025);
}

.reviews-v2 {
  background:
    linear-gradient(rgba(251,250,246,.96), rgba(251,250,246,.96)),
    url("../images/clinic/clinic-08.webp") center/cover;
}

.review-grid {
  gap: 14px;
  border: 0;
}

.review-grid article {
  min-height: 390px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 60px rgba(2,23,34,.045);
  backdrop-filter: blur(8px);
}

.review-grid article:hover {
  background: #fff;
  box-shadow: 0 28px 80px rgba(2,23,34,.1);
}

.appointment-v2 {
  background:
    radial-gradient(circle at 8% 50%, rgba(225,179,79,.12), transparent 30%),
    var(--ink-deep);
}

.footer-v2 {
  background: #02131d;
}

.inner-hero {
  min-height: 720px;
  padding-top: 220px;
  background: var(--ink-deep);
}

.inner-hero::after {
  inset: 0;
  opacity: .74;
  background:
    linear-gradient(90deg, rgba(2,19,29,.97), rgba(2,19,29,.72) 48%, rgba(2,19,29,.22)),
    var(--hero-image) center/cover;
}

.inner-hero__content {
  max-width: 860px;
}

.inner-hero h1 {
  font-size: clamp(66px, 7.3vw, 108px);
  line-height: .9;
}

.detail-services {
  background:
    radial-gradient(circle at 90% 12%, rgba(225,179,79,.06), transparent 25%),
    var(--ivory);
}

.detail-service {
  padding-top: 76px;
  padding-bottom: 76px;
}

.clinic-story__content,
.contact-page__panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(225,179,79,.12), transparent 30%),
    var(--ink-deep);
}

.clinic-values {
  gap: 12px;
  border: 0;
}

.clinic-values article {
  min-height: 275px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 55px rgba(2,23,34,.05);
}

.language-hero {
  min-height: 790px;
  padding-top: 215px;
  background:
    linear-gradient(90deg, rgba(2,19,29,.98) 0%, rgba(2,19,29,.83) 48%, rgba(2,19,29,.2) 100%),
    url("../images/clinic/clinic-new-treatment-01.webp") center/cover;
}

.language-hero h1 {
  font-size: clamp(68px, 7.5vw, 112px);
  line-height: .9;
}

@media (max-width: 900px) {
  .header__inner {
    height: 78px;
  }

  .hero-v2 {
    min-height: 920px;
    padding-top: 112px;
  }

  .hero-v2__grid {
    min-height: 720px;
    padding-top: 70px;
  }

  .hero-v2__content {
    max-width: 700px;
  }

  .hero-v2__visual {
    position: absolute;
    min-height: 0;
  }

  .hero-v2__services {
    grid-template-columns: 1fr 1fr;
  }

  .rating-card {
    right: 5%;
  }

  .hero-v3__controls,
  .hero-v2__caption {
    right: 5%;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header__inner {
    height: 70px;
  }

  .hero-v2 {
    min-height: 920px;
    padding-top: 104px;
  }

  .hero-v2::before {
    background:
      linear-gradient(90deg, rgba(2,19,29,.95), rgba(2,19,29,.71)),
      linear-gradient(0deg, rgba(2,19,29,.9), transparent 40%);
  }

  .hero-v2::after {
    display: none;
  }

  .hero-v2__grid {
    min-height: 760px;
    padding-top: 70px;
    padding-bottom: 190px;
  }

  .hero-v2__content h1 {
    font-size: clamp(52px, 15vw, 68px);
    line-height: .92;
  }

  .hero-v2__content > p {
    font-size: 13px;
  }

  .hero-v2__languages {
    margin-top: 35px;
  }

  .rating-card {
    right: 16px;
    bottom: 178px;
    left: 16px;
    min-width: 0;
  }

  .hero-v2__caption {
    display: none;
  }

  .hero-v3__controls {
    right: 16px;
    bottom: 151px;
  }

  .hero-v2__services {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .hero-v2__services a {
    min-height: 78px;
    padding: 15px;
    font-size: 12px;
  }

  .hero-v2__services a:nth-child(n+3) {
    display: none;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .editorial-gallery {
    min-height: 720px;
  }

  .editorial-gallery__main {
    height: 500px;
  }

  .editorial-gallery__note {
    top: 430px;
    right: 8px;
  }

  .review-grid {
    gap: 10px;
  }

  .review-grid article {
    min-height: 330px;
  }

  .inner-hero {
    min-height: 650px;
    padding-top: 185px;
  }

  .inner-hero h1 {
    font-size: clamp(52px, 14vw, 70px);
  }

  .language-hero {
    min-height: 720px;
    padding-top: 185px;
  }

  .language-hero h1 {
    font-size: clamp(53px, 14vw, 72px);
  }
}
