:root {
  --paper: #f7f4ee;
  --paper-soft: #efebe3;
  --white: #ffffff;
  --ink: #141211;
  --muted: #6f6860;
  --line: rgba(20, 18, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.34);
  --champagne: #d8cbb8;
  --placeholder: #d7d7d7;
  --placeholder-dark: #bcbcbc;
  --serif: "Bodoni Moda", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Montserrat", Arial, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --page-pad: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  max-width: 100%;
  overflow-x: hidden;
}

/* Оптимизация скролла */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  cursor: none !important;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Скрываем системный курсор везде */
*,
*:hover,
*:active,
*:focus {
  cursor: none !important;
}

a,
button,
input,
select,
textarea {
  font: inherit;
  cursor: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.preloader__content {
  display: grid;
  width: min(520px, calc(100vw - 60px));
  gap: 26px;
}

.preloader__name {
  font-family: var(--script);
  font-size: clamp(42px, 8vw, 92px);
  line-height: 1;
}

.preloader__meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.preloader__meta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 400;
  line-height: 0.86;
}

.preloader__meta strong::after {
  content: "%";
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  margin-left: 4px;
}

.preloader__bar {
  height: 1px;
  overflow: hidden;
  background: rgba(20, 18, 17, 0.16);
}

.preloader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 400;
  pointer-events: none;
  mix-blend-mode: difference;
}

/* Оптимизация производительности */
.reveal,
.text-reveal,
.text-reveal__inner,
.placeholder-media,
.media-reveal-mask {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

/* Убираем will-change после анимации для экономии памяти */
.reveal.animated,
.text-reveal.animated {
  will-change: auto;
}

.cursor__dot,
.cursor__ring {
  position: fixed;
  left: 0;
  top: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--white);
}

.cursor__ring {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor.is-active .cursor__ring {
  width: 78px;
  height: 78px;
  opacity: 1;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: grid;
  width: 100%;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px var(--page-pad);
  color: var(--white);
  transition: padding 0.8s var(--ease), background 0.8s var(--ease), color 0.8s var(--ease),
    backdrop-filter 0.8s var(--ease), border-color 0.8s var(--ease);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(20, 18, 17, 0.08);
  background: rgba(247, 244, 238, 0.82);
  color: var(--ink);
  padding: 14px var(--page-pad);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 0.95;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.text-link::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: auto;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.65s var(--ease);
}

.desktop-nav a:hover::after,
.text-link:hover::after,
.site-footer a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.pill-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  text-transform: uppercase;
  transition: transform 0.8s var(--ease), background 0.8s var(--ease), color 0.8s var(--ease),
    border-color 0.8s var(--ease);
}

.pill-button:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.pill-button--light {
  border-color: var(--line-light);
  color: var(--white);
}

.pill-button--light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.pill-button--small {
  min-height: 42px;
  padding: 10px 22px;
}

.site-header:not(.is-scrolled) .pill-button--small {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.site-header:not(.is-scrolled) .pill-button--small:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.45s var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--paper);
  color: var(--ink);
  padding: 92px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.8s var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a:not(.pill-button) {
  font-family: var(--serif);
  font-size: clamp(38px, 12vw, 78px);
  line-height: 0.98;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-shell {
  width: 100%;
  margin: 0;
  padding: clamp(84px, 12vw, 100px) var(--page-pad);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px var(--page-pad) 54px;
}

.hero__media,
.gift-certificate__bg,
.booking__media {
  position: absolute;
  inset: 0;
}

.hero__bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__fg {
  position: absolute;
  right: 15%;
  bottom: 0%;
  z-index: 2;
  width: clamp(480px, 72vw, 1300px);
  pointer-events: none;
  will-change: transform;
}

.hero__fg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

.hero__media-img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.58));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.script-label {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(20px, 5vw, 36px);
  font-weight: 400;
  line-height: 1;
}
.script-label.text-reveal{
  padding-top: 10px;
  padding-bottom: 5px;
}
.hero__script {
  margin-bottom: 22px;
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 9vw, 98px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__title span {
  display: block;
  overflow-wrap: normal;
}

.hero__text {
  max-width: 520px;
  margin: 30px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--white);
}

.scroll-badge {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  text-transform: uppercase;
  animation: rotateBadge 12s linear infinite;
}

@keyframes rotateBadge {
  to {
    transform: rotate(360deg);
  }
}

.placeholder-media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(45deg, var(--placeholder), var(--placeholder-dark));
}

.media-reveal-mask {
  position: absolute;
  inset: -1px;
  z-index: 4;
  background: var(--reveal-mask, var(--paper));
  pointer-events: none;
  transform-origin: right center;
}

.section-dark .placeholder-media {
  --reveal-mask: var(--ink);
}

.placeholder-media span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  max-width: calc(100% - 44px);
  color: rgba(20, 18, 17, 0.62);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.text-reveal {
  display: block;
  overflow: hidden;
  /* Добавляем небольшой padding чтобы overflow не обрезал */
  padding-bottom: 2px;
}

.text-reveal__inner {
  display: block;
  
  will-change: transform;
  transform: translateY(0);
}
.advantage h3.text-reveal span{
  font-size: 26px;
}
.advantage p.text-reveal span{
  font-size: 16px;
}
/* Для label и inline элементов */
label.text-reveal,
span.text-reveal,
a.text-reveal {
  display: inline-block;
  vertical-align: top;
}

/* Для элементов в flexbox */
.hero__actions .text-reveal {
  display: inline-block;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 80px);
}

.intro__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 28vw);
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
}

.intro__text p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
}

.intro__text span {
  color: var(--muted);
}

.intro__media {
  position: relative;
  aspect-ratio: 3 / 4;
}

.intro__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.intro-card {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 30px);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 14px;
  align-content: start;
}

.intro-card:last-child {
  border-right: none;
}

.intro-card__num {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--muted);
  line-height: 1;
}

.intro-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.2;
}

.intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.parallax-ribbon {
  min-height: clamp(520px, 78svh, 820px);
  display: grid;
  align-items: center;
  padding: clamp(90px, 12vw, 150px) var(--page-pad);
  isolation: isolate;
}

.parallax-ribbon::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 18, 17, 0.86), rgba(20, 18, 17, 0.22) 52%, rgba(20, 18, 17, 0.72)),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.18), transparent 24%);
  content: "";
}

.parallax-ribbon__back,
.parallax-ribbon__front {
  position: absolute;
  will-change: transform;
}

.parallax-ribbon__back {
  inset: -10% 0 -16%;
  opacity: 0.74;
  transform: scale(1.08);
}

.parallax-ribbon__front {
  right: var(--page-pad);
  bottom: 8%;
  z-index: 2;
  width: min(42vw, 560px);
  min-width: 300px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.parallax-ribbon__text {
  position: relative;
  z-index: 3;
  max-width: min(760px, calc(100vw - 60px));
}

.parallax-ribbon__text h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 90px);
  font-weight: 400;
  line-height: 0.9;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(34px, 6vw, 66px);
}

.section-heading h2,
.about h2,
.soft-cta h2,
.booking h2,
.gift-certificate h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 7vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  padding-bottom: 10px;
}

.booking h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* ── Services Tabs ── */
.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.services-tabs__nav::-webkit-scrollbar { display: none; }

.stab {
  position: relative;
  flex-shrink: 0;
  padding: 18px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: none;
  transition: color 0.4s var(--ease);
  margin-bottom: -1px;
}

.stab.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.stab__num {
  font-family: var(--serif);
  font-size: 11px;
  margin-right: 8px;
  opacity: 0.5;
}

.services-tabs__body {
  position: relative;
}

.spanel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-top: none;
  overflow: hidden;
}

.spanel.is-active {
  display: grid;
}

.spanel__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.spanel__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease);
}

.spanel.is-active .spanel__image img {
  transform: scale(1);
}

.spanel__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
}

.spanel__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.spanel__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.spanel__groups {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spanel__group-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spanel__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.spanel__item strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}

.spanel__item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  grid-column: 1;
}

.spanel__price {
  text-align: right;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  align-self: start;
}

.spanel__price del {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.spanel__cta {
  margin-top: auto;
  padding-top: 4px;
}
/* ── End Services Tabs ── */

.service-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: space-between;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  overflow: hidden;
  transition: transform 0.9s var(--ease), background 0.9s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.7);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 7;
}

.service-card__body {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.service-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card__groups {
  display: grid;
  gap: 14px;
}

.service-group {
  display: grid;
  gap: 8px;
}

.service-group h4 {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.service-item strong {
  display: block;
  font-weight: 500;
  line-height: 1.3;
}

.service-item small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.service-item__price {
  min-width: 102px;
  text-align: right;
  font-weight: 600;
}

.service-item__price del {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.result-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.before-after {
  position: relative;
  overflow: hidden;
  height: 80vh;
  max-width: 1000px;
  border: 1px solid var(--line);
  user-select: none;
}

.before-after__image {
  position: absolute;
  inset: 0;
}

.before-after__image--after {
  clip-path: inset(0 0 0 50%);
}

.before-after__image span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  padding: 8px 16px;

 
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(20, 18, 17, 0.85);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.before-after__image--before span {
  left: 20px;
  right: auto;
}

.before-after__image--after span {
  left: auto;
  right: 20px;
}

.before-after__range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  background: var(--ink);
}

.before-after__divider::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.88);
  content: "↔";
  transform: translate(-50%, -50%);
}

.result-showcase__content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.result-showcase__content p:not(.eyebrow) {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.case-controls,
.reviews__toolbar {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.case-controls button,
.reviews__toolbar button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  transition: background 0.6s var(--ease), color 0.6s var(--ease), transform 0.6s var(--ease);
}

.case-controls button:hover,
.reviews__toolbar button:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.gift-certificate {
  position: relative;
  min-height: 100svh;
  padding: 120px var(--page-pad) 100px;
  overflow: hidden;
  isolation: isolate;
}

.gift-certificate__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gift-certificate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.gift-certificate__content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.gift-certificate__text h2 {
  margin: 18px 0 24px;
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.15;
}

.gift-certificate__lead {
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 50px;
}

.gift-certificate__features {
  display: grid;
  gap: 32px;
}

.gift-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.gift-feature__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
}

.gift-feature h3 {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--paper);
}

.gift-feature p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.gift-certificate__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.certificate-preview {
  position: relative;
  background: linear-gradient(135deg, #f5f1eb 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.certificate-preview__ornament {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  color: #c9b8a3;
  opacity: 0.3;
  pointer-events: none;
}

.certificate-preview__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.certificate-preview__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.certificate-preview__logo {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
}

.certificate-preview__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}

.certificate-preview__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.certificate-preview__value {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.certificate-preview__currency {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  color: var(--accent);
  font-weight: 400;
}

.certificate-preview__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.certificate-preview__footer p {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

.certificate-preview__validity {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 968px) {
  .gift-certificate__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .gift-certificate {
    padding: 80px var(--page-pad) 70px;
  }
  
  .certificate-preview {
    padding: 40px 30px;
  }
}

@media (max-width: 640px) {
  .gift-feature {
    gap: 16px;
  }
  
  .gift-feature__icon {
    width: 32px;
    height: 32px;
  }
}



.about {
  display: grid;
  grid-template-columns: minmax(320px, 38vw) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.about__media {
  position: relative;
  min-height: 690px;
}

.about__content {
  display: grid;
  gap: 22px;
}

.about__content p {
  margin: 0;
  color: var(--muted);
}

.about__lead {
  color: var(--ink) !important;
  font-size: clamp(20px, 2vw, 28px);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.about__stats div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.about__stats strong {
  display: block;
  font-family: var(--serif);
  
  font-weight: 400;
  line-height: 1;
}
.about__stats .stast-name{
font-size: 26px !important;
}
.about__stats span {
  color: var(--muted);
  
   font-size: clamp(16px, 4vw, 24px);
  text-transform: uppercase;
}
.about__stats .sats-number .text-reveal__inner{
  font-size: clamp(28px, 5vw, 62px);
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.advantage {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    var(--paper);
  padding: clamp(24px, 3vw, 36px);
  transition: background 0.9s var(--ease), color 0.9s var(--ease);
}

.advantage::before {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 74%;
  background: radial-gradient(circle at 50% 50%, rgba(216, 203, 184, 0.58), transparent 62%);
  content: "";
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.advantage:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.advantage__icon {
  position: relative;
  z-index: 1;
  width: clamp(74px, 8vw, 118px);
  height: clamp(74px, 8vw, 118px);
  margin-bottom: clamp(26px, 7vw, 42px);
  color: var(--ink);
}

.advantage__icon path,
.advantage__icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.advantage span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  color: var(--muted);
}

.advantage h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  max-width: 270px;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.advantage p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 0;
  color: var(--muted);
}

.soft-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 620px);
  gap: clamp(30px, 7vw, 80px);
  align-items: center;
}

.soft-cta__media {
  position: relative;
  min-height: 470px;
}

.soft-cta__content p:not(.script-label) {
  color: var(--muted);
}

.reviews__toolbar {
  justify-content: flex-end;
  margin-top: -96px;
  margin-bottom: 34px;
}

.reviews__track {
  display: grid;
  grid-auto-columns: minmax(380px, 36%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  min-height: 278px;
  align-content: space-between;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  padding: 28px;
  scroll-snap-align: start;
}

.review-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}

.review-card footer {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  border: 0;
  background: transparent;
  padding: 26px 0;
  text-align: left;
}

.faq-item strong {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
}

.faq-item button > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: transform 0.55s var(--ease);
}

.faq-item.is-open button > span {
  transform: rotate(45deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.8s var(--ease);
}

.faq-item__content p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 26px;
}

.booking {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 100svh;
}

.booking__media {
  position: relative;
  overflow: hidden;
}

.booking__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: clamp(30px, 8vw, 100px) clamp(0px, 5vw, 60px);
  background: var(--ink);
}

.booking__content,
.booking-form {
  position: relative;
  z-index: 2;
}

.booking__content {
  max-width: 100%;
}

.booking__content p:not(.script-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.booking__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 18, 17, 0.32);
  padding: clamp(22px, 4vw, 34px);
  backdrop-filter: blur(12px);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 10px 0 12px;
  outline: 0;
}

.booking-form select option {
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  padding: 44px 34px 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: grid;
  gap: 4px;
}

.site-footer__brand strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.site-footer__brand span,
.site-footer__contacts,
.site-footer__bottom {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  height: fit-content;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer__contacts {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

/* ── Drawer ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 18, 17, 0.46);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease);
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  width: min(560px, 100vw);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.65s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 44px 40px 52px;
  min-height: 100%;
}

.drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.drawer__script {
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 6px;
}

.drawer__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.drawer__close {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  margin-top: 4px;
}

.drawer__close:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.drawer__sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.drawer__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.drawer__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.drawer__label input,
.drawer__label select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 10px 0 12px;
  outline: 0;
  transition: border-color 0.3s var(--ease);
}

.drawer__label input:focus,
.drawer__label select:focus {
  border-bottom-color: var(--ink);
}

.drawer__label input::placeholder {
  color: var(--placeholder-dark);
}

.drawer__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: none;
}

.drawer__checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.drawer__checkbox a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.drawer__submit {
  width: 100%;
  margin-top: 8px;
}

.drawer__status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
/* ── End Drawer ── */

@media (max-width: 1024px) {
  body,
  button {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 18px var(--page-pad);
  }

  .site-header.is-scrolled {
    padding: 12px var(--page-pad);
  }

  .desktop-nav {
    display: none;
  }

  /* Адаптив для parallax-ribbon */
  .parallax-ribbon {
    min-height: auto;
    padding: 60px var(--page-pad);
    display: flex;
    flex-direction: column;
  }

  .parallax-ribbon__front {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    order: -1; /* Показываем фото сверху */
    aspect-ratio: 4 / 5;
  }

  .parallax-ribbon__back {
    opacity: 0.4;
    inset: 0;
  }

  .parallax-ribbon::after {
    background: linear-gradient(180deg, rgba(20, 18, 17, 0.88) 0%, rgba(20, 18, 17, 0.75) 100%);
  }

  .parallax-ribbon__text {
    text-align: center;
    max-width: 100%;
    order: 0;
  }

  .parallax-ribbon__text .script-label {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 12px;
  }

  .parallax-ribbon__text h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.15;
  }

  .menu-toggle {
    display: block;
  }

  .intro,
  .result-showcase,
  .about,
  .soft-cta,
  .booking {
    grid-template-columns: 1fr;
    
  }
  section{
    padding-left: 15px;
    padding-right: 15px;
  }
  .spanel {
    grid-template-columns: 1fr;
  }

  .spanel__image {
    min-height: 280px;
  }

  .spanel__content {
    max-height: none;
  }

  .intro__top {
    grid-template-columns: 1fr;
  }

  .intro__cards {
    grid-template-columns: 1fr;
  }

  .intro-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .intro-card:last-child {
    border-bottom: none;
  }

  .booking__media {
    min-height: 340px;
  }

  .about__media {
    min-height: 520px;
  }

  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews__toolbar {
    margin-top: 0;
    justify-content: flex-start;
  }

  .reviews__track {
    grid-auto-columns: minmax(280px, 52%);
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 30px;
  }

  .site-header {
    gap: 10px;
  }

  .site-header .pill-button--small {
    display: none;
  }
  .hero__fg {
    right: -15%;
    width: clamp(680px, 72vw, 1300px);
  }
  .logo {
    font-size: 16px;
  }

  .hero {
    min-height: 65svh;
    padding-top: 112px;
  }

  .hero__title {
    font-size: clamp(32px, 9vw, 52px);
    line-height: 0.98;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-badge {
    display: none;
  }

  .section-shell {
    padding: 56px 15px;
  }

  .intro__media,
  .soft-cta__media {
    min-height: 360px;
  }

  .parallax-ribbon {
    min-height: 660px;
  }

  .parallax-ribbon__front {
    right: var(--page-pad);
    bottom: 7%;
    width: calc(100vw - 60px);
    min-width: 0;
    opacity: 0.92;
  }

  .parallax-ribbon__text {
    align-self: start;
  }

  .services__grid,
  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-item__price {
    min-width: 0;
    text-align: left;
  }

  .before-after {
    height: 50vh;
  }

  .about__media {
    min-height: 430px;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .advantage {
    min-height: 240px;
  }

  .advantage__icon {
    margin-bottom: 38px;
  }

  .reviews__track {
    grid-auto-columns: 88%;
  }

  .booking-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 18px 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer__contacts {
    justify-items: start;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Анимация для сертификата */
.certificate-preview {
  animation: certificate-float 6s ease-in-out infinite;
}

@keyframes certificate-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.certificate-preview__ornament svg {
  animation: ornament-rotate 20s linear infinite;
}

@keyframes ornament-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
