/* ============================================================
   OPATRA London — концепция «AURUM LUMEN» (Золото и свет)
   Секции разделяются цветом, воздухом и ритмом — не линиями.
   Палитра: #FFFFFF / золото (градиент) / #0B0B0C / #1C1C1E, #2A2A2E
   ============================================================ */

:root {
  --white: #FFFFFF;
  --black: #0B0B0C;
  --graphite: #1C1C1E;
  --graphite-2: #2A2A2E;
  --gold-1: #F4E3B2;
  --gold-2: #C9A24B;
  --gold-3: #8C6B23;
  --gold-grad: linear-gradient(135deg, #F4E3B2 0%, #C9A24B 45%, #8C6B23 100%);
  --gold-grad-soft: linear-gradient(135deg, #E8D398 0%, #C9A24B 60%, #A8843A 100%);
  --ink: #17171a;
  --ink-soft: #55555e;
  --paper-soft: #f7f5f0;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
  --r-lg: 28px;
  --r-md: 20px;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --shadow-soft: 0 18px 50px -18px rgba(11, 11, 12, .18);
  --shadow-gold: 0 14px 48px -14px rgba(201, 162, 75, .45);
}

/* ---------- база ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* цветовые блоки — раздел без линий */
.section-light   { background: var(--white); color: var(--ink); padding: clamp(88px, 12vw, 150px) 0; }
.section-dark    { background: var(--black); color: #ececee; padding: clamp(88px, 12vw, 150px) 0; position: relative; overflow: hidden; }
.section-graphite{ background: var(--graphite); color: #ececee; padding: clamp(88px, 12vw, 150px) 0; position: relative; overflow: hidden; }

/* ---------- типографика ---------- */
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 18px;
}
.kicker--gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.h2 em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h2--light { color: var(--white); }

.note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: -14px 0 34px;
}
.note--dark { color: #8f8f97; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 17px 36px; font-size: 16px; }

.btn--gold {
  background: var(--gold-grad-soft);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 56px -12px rgba(201, 162, 75, .6); }
.btn--gold:active { transform: translateY(0); }

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(244, 227, 178, .35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(244, 227, 178, .12); transform: translateY(-2px); }

/* ---------- шапка ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  transition: padding .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(11, 11, 12, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, .8);
}
.header.is-scrolled .header__inner { padding: 12px 0; }

.header__logo img { width: 150px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  position: relative;
  color: #e9e9ec;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0;
  transform: translateX(-50%) scale(.4);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav__link:hover { color: var(--gold-1); }
.nav__link:hover::after { opacity: 1; transform: translateX(-50%) scale(1); }
.nav__cta { padding: 11px 24px; font-size: 14px; box-shadow: 0 8px 30px -10px rgba(201, 162, 75, .5); }

/* бургер */
.burger {
  display: none;
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}
.burger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-1);
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(120% 90% at 50% 0%, #17171b 0%, var(--black) 55%);
  color: var(--white);
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__aura {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(120vw, 1100px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 162, 75, .22) 0%, rgba(201, 162, 75, .07) 32%, transparent 62%);
  filter: blur(2px);
  animation: auraBreath 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes auraBreath {
  0%, 100% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

.hero__content { position: relative; z-index: 2; padding: 140px 0 80px; }

.hero__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(244, 227, 178, .75);
  margin-bottom: 30px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(46px, 9vw, 108px);
  line-height: 1.02;
  letter-spacing: -.015em;
}
.hero__title span { display: block; }
.hero__title-gold {
  font-style: italic;
  background: linear-gradient(110deg, #F4E3B2 5%, #C9A24B 40%, #F4E3B2 60%, #8C6B23 95%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 7s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
.hero__title-sub {
  font-size: .62em;
  font-weight: 500;
  color: rgba(255, 255, 255, .86);
  margin-top: 8px;
}

.hero__lead {
  margin: 34px auto 0;
  font-size: 15px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .62);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px rgba(244, 227, 178, .4);
  z-index: 2;
}
.hero__scroll-dot {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-1);
  transform: translateX(-50%);
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  70%  { transform: translate(-50%, 16px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ---------- О ЦЕНТРЕ ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__phrase {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 27px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 26em;
  line-height: 1.4;
}
.about__stats {
  display: grid;
  gap: 18px;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 28px;
  border-radius: var(--r-md);
  background: var(--paper-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }
.stat__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 2ch;
}
.stat__label {
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- УСЛУГИ ---------- */
.services .h2 { margin-bottom: 26px; }

.services__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(44px, 6vw, 70px);
}
.services__nav a {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #c9c9cf;
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  transition: color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.services__nav a:hover {
  color: var(--black);
  background: var(--gold-grad-soft);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 30px);
}

.service {
  --mx: 50%;
  --my: 50%;
  position: relative;
  scroll-margin-top: 100px;
  padding: clamp(30px, 3.6vw, 46px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(520px circle at var(--mx) var(--my), rgba(201, 162, 75, .13), transparent 42%),
    linear-gradient(160deg, #1d1d20 0%, #141416 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 75, .45),
    0 30px 70px -30px rgba(201, 162, 75, .35);
}

.service__num {
  position: absolute;
  top: -14px;
  right: 6px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(96px, 11vw, 150px);
  line-height: 1;
  background: linear-gradient(180deg, rgba(244, 227, 178, .2), rgba(140, 107, 35, .02));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  transition: transform .5s var(--ease);
}
.service:hover .service__num { transform: translateY(-6px) scale(1.04); }

.service__medal {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--gold-2);
  background: radial-gradient(circle at 32% 28%, rgba(244, 227, 178, .16), rgba(201, 162, 75, .05) 65%);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, .4);
  margin-bottom: 24px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service:hover .service__medal {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: inset 0 0 0 1px rgba(244, 227, 178, .7), 0 10px 34px -10px rgba(201, 162, 75, .5);
}
.service__medal svg { width: 30px; height: 30px; }

.service__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 31px);
  color: var(--white);
  margin-bottom: 8px;
}
.service__essence {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17.5px;
  color: rgba(244, 227, 178, .8);
  margin-bottom: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.chips li {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #c6c6cc;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
  transition: color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.service:hover .chips li { box-shadow: inset 0 0 0 1px rgba(201, 162, 75, .25); }
.chips li:hover {
  color: var(--gold-1);
  background: rgba(201, 162, 75, .12);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, .55);
}

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service__cta span {
  -webkit-text-fill-color: var(--gold-2);
  transition: transform .35s var(--ease);
}
.service__cta:hover span { transform: translateX(6px); }

/* ---------- ДО / ПОСЛЕ ---------- */
.ba {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: clamp(440px, 120vw, 640px);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: var(--shadow-soft);
  outline-offset: 4px;
}
.ba:focus-visible { outline: 2px solid var(--gold-2); }

/* Плейсхолдеры: «до» — приглушённая кожа, «после» — сияние.
   TODO: заменить фоны на реальные фотографии клиентов (с согласия). */
.ba__before,
.ba__after {
  position: absolute;
  inset: 0;
}
.ba__before {
  background:
    radial-gradient(90% 70% at 68% 36%, #cdb9a4 0%, #b39c86 46%, #8e7a66 100%);
  filter: saturate(.72) brightness(.94);
}
.ba__before::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 48% at 40% 62%, rgba(84, 70, 58, .35), transparent 70%);
}
.ba__after {
  clip-path: inset(0 0 0 50%);
  background:
    radial-gradient(95% 75% at 62% 34%, #f5e2cd 0%, #e6c9a8 48%, #caa87f 100%);
}
.ba__after::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 36% at 64% 30%, rgba(255, 249, 235, .75), transparent 70%),
    radial-gradient(70% 55% at 46% 66%, rgba(244, 227, 178, .28), transparent 72%);
}

/* Реальные фото до/после — перекрывают плейсхолдеры */
.ba__before,
.ba__after {
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}
.ba__before { filter: none; }
.ba__before::after,
.ba__after::before { display: none; }

/* Переключатель процедур */
.ba__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.ba__tab {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 12, .16);
  background: transparent;
  color: #2a2a2e;
  cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ba__tab:hover { border-color: rgba(201, 162, 75, .6); }
.ba__tab.is-active {
  color: var(--black);
  border-color: transparent;
  background: var(--gold-grad-soft);
  box-shadow: var(--shadow-gold);
}
.ba__caption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  color: #2a2a2e;
}

.ba__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 11, 12, .5);
  backdrop-filter: blur(6px);
}
.ba__tag--after {
  left: auto;
  right: 22px;
  color: var(--black);
  background: rgba(244, 227, 178, .85);
}

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, .9);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 22px rgba(201, 162, 75, .55);
}
.ba__handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-grad-soft);
  box-shadow: var(--shadow-gold);
}
.results__hint {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- ЛИЦЕНЗИЯ ---------- */
.license__glow {
  position: absolute;
  left: -10%;
  top: 20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 162, 75, .13), transparent 65%);
  pointer-events: none;
}
.license__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.license__seal { display: grid; place-items: center; }
.seal {
  width: min(100%, 340px);
  filter: drop-shadow(0 18px 50px rgba(201, 162, 75, .28));
  animation: sealFloat 7s ease-in-out infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(1.2deg); }
}

.license__facts {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  max-width: 520px;
}
.license__facts div {
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.license__facts div:hover {
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, .45);
  transform: translateX(5px);
}
.license__facts dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.license__facts dd { font-size: 14.5px; color: #d9d9de; }

/* ---------- АКЦИИ ---------- */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.offer {
  position: relative;
  padding: 38px 32px 32px;
  border-radius: var(--r-lg);
  background: var(--paper-soft);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.offer:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.offer::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, .22), transparent 68%);
  transition: transform .5s var(--ease);
}
.offer:hover::after { transform: scale(1.35); }

.offer--dark { background: var(--graphite); color: #ececee; }
.offer--dark .offer__text { color: #a8a8b0; }

.offer__badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.offer__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
}
.offer__text {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-3);
}
.offer--dark .offer__cta { color: var(--gold-1); }
.offer__cta span { transition: transform .35s var(--ease); }
.offer__cta:hover span { transform: translateX(6px); }

/* ---------- ОТЗЫВЫ ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.review {
  position: relative;
  padding: 38px 34px 30px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.review:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, .4), 0 26px 60px -30px rgba(0, 0, 0, .7);
}
.review::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--font-serif);
  font-size: 84px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .8;
}
.review blockquote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  color: #e6e6ea;
  margin: 26px 0 20px;
}
.review figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review__name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.review__stars { color: var(--gold-2); letter-spacing: 3px; font-size: 14px; }
.review__meta { display: flex; flex-direction: column; gap: 4px; }
.review__date { font-size: 11px; letter-spacing: .04em; text-transform: none; color: rgba(255, 255, 255, .42); }
.offer__text s { opacity: .55; }

/* ---------- ЗАПИСЬ ---------- */
.booking__aura {
  position: absolute;
  right: -15%;
  bottom: -30%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 162, 75, .14), transparent 62%);
  pointer-events: none;
}
.booking__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.booking__phrase {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 23px);
  color: #a9a9b1;
  max-width: 24em;
}

.form {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 3.6vw, 46px);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #202024 0%, #151517 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07), 0 40px 90px -50px rgba(0, 0, 0, .9);
}
.form__field { display: grid; gap: 8px; }
.form__field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.form__field input,
.form__field select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
  appearance: none;
}
.form__field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A24B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.form__field select option { color: var(--ink); background: var(--white); }
.form__field input::placeholder { color: rgba(255, 255, 255, .35); }
.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: rgba(201, 162, 75, .8);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, .15);
  background: rgba(255, 255, 255, .07);
}
.form__field.has-error input,
.form__field.has-error select { border-color: rgba(214, 92, 92, .8); }
.form__error {
  display: none;
  font-size: 12.5px;
  color: #e08585;
}
.form__field.has-error .form__error { display: block; }
.form__submit { width: 100%; margin-top: 6px; }
.form__note {
  font-size: 12px;
  color: #77777f;
  text-align: center;
  line-height: 1.5;
}

/* ---------- КОНТАКТЫ ---------- */
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.contact {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 34px 30px;
  border-radius: var(--r-lg);
  background: var(--paper-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .45s var(--ease);
}
.contact:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  background: #fbf9f4;
}
.contact__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--gold-3);
  background: radial-gradient(circle at 32% 28%, rgba(201, 162, 75, .22), rgba(201, 162, 75, .06) 70%);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, .4);
  margin-bottom: 12px;
  transition: transform .4s var(--ease);
}
.contact:hover .contact__icon { transform: rotate(-8deg) scale(1.08); }
.contact__icon svg { width: 24px; height: 24px; }
.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.contact__value {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

/* ---------- ФУТЕР ---------- */
.footer {
  background: var(--black);
  color: #9a9aa2;
  padding: clamp(60px, 8vw, 90px) 0 46px;
}
.footer__inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}
.footer__logo { width: 130px; opacity: .95; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.footer__nav a {
  font-size: 13.5px;
  letter-spacing: .06em;
  color: #b9b9c1;
  transition: color .3s var(--ease);
}
.footer__nav a:hover { color: var(--gold-1); }
.footer__meta { font-size: 12.5px; line-height: 1.7; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--black);
  background: var(--gold-grad-soft);
  box-shadow: 0 16px 46px -12px rgba(201, 162, 75, .65);
  transform: translateY(0);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 60px -12px rgba(201, 162, 75, .8); }
.wa-float.is-hidden { opacity: 0; transform: translateY(24px); pointer-events: none; }

/* ---------- курсор-свечение ---------- */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, .07), transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
body.has-cursor-glow .cursor-glow { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- reveal-анимации ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .55s; }

/* ---------- адаптив ---------- */
@media (max-width: 1000px) {
  .services__list { grid-template-columns: 1fr; }
  .about__grid,
  .booking__grid,
  .license__grid { grid-template-columns: 1fr; }
  .license__seal { order: -1; }
  .seal { width: min(70%, 280px); }
  .offers__grid,
  .contacts__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(11, 11, 12, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__link { font-size: 22px; font-family: var(--font-serif); }
  .nav__cta { margin-top: 12px; padding: 15px 34px; font-size: 16px; }
  .burger { display: block; }

  /* ФИКС мобильного меню: backdrop-filter на шапке делал её containing block
     для fixed-меню — при прокрутке меню съезжало и не раскрывалось на весь экран.
     Убираем blur у шапки на мобиле (фон делаем плотнее). */
  .header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(11, 11, 12, .94);
  }

  .header__logo img { width: 124px; }

  .hero__actions .btn { width: min(100%, 320px); }

  .offers__grid,
  .contacts__grid,
  .reviews__grid { grid-template-columns: 1fr; }

  .service { padding: 28px 22px; }
  .service__num { font-size: 88px; top: -8px; }

  .wa-float span { display: inline; }
  .wa-float { right: 16px; bottom: 16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__aura, .seal { animation: none; }
}
