/* ============ VANILLA — luxe blanc ============ */
:root {
  --white: #FFFFFF;
  --tint: #F7F5F1;
  --ink: #161513;
  --grey: #6E6A63;
  --taupe: #A8906C;
  --taupe-deep: #8C7452;
  --line: #E6E2D9;
  --font-caps: 'Jost', sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;
  --pad: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-caps);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, dl { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-caps); font-weight: 400;
  text-transform: uppercase; line-height: 1.2;
}
h2 { font-size: clamp(26px, 3.2vw, 42px); letter-spacing: .14em; }
h3 { font-size: 16px; letter-spacing: .1em; }

.script {
  font-family: var(--font-script); font-style: italic; font-weight: 500;
  color: var(--taupe); text-transform: none; letter-spacing: .01em;
}
.script--lg { font-size: clamp(22px, 2.4vw, 30px); }
.script--light { color: var(--taupe); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 38px; border: 1px solid var(--ink); border-radius: 999px;
  cursor: pointer; font-family: var(--font-caps); font-size: 13.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink); color: var(--white);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.btn:hover { background: var(--taupe-deep); border-color: var(--taupe-deep); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--taupe); border-color: var(--taupe); color: var(--white); }
.btn--gold { background: var(--ink); color: var(--white); }  /* alias для внутренних страниц */
.btn--sm { padding: 10px 24px; font-size: 12px; }

/* ---------- Промо-лента ---------- */
.ribbon {
  background: var(--ink); color: var(--white); text-align: center;
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  padding: 9px 16px;
}
.ribbon a { color: inherit; }
.ribbon a:hover { color: var(--taupe); }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px;
  padding: 18px var(--pad);
  max-width: 1360px; margin: 0 auto;
}
.header__nav { display: flex; gap: clamp(16px, 2.4vw, 34px); }
.header__nav--left { justify-content: flex-start; }
.header__nav--right { justify-content: flex-end; margin-right: 12px; }
.header__nav a {
  font-size: 12.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: 3px;
}
.header__nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--taupe); transition: width .3s ease, left .3s ease;
}
.header__nav a:hover::after { width: 100%; left: 0; }
.header__logo { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.header__logo-img { height: clamp(52px, 5.4vw, 68px); width: auto; }
.footer__logo-img { height: 92px; width: auto; }
.header__logo-name, .footer__logo-name {
  font-size: clamp(24px, 2.4vw, 32px); font-weight: 500; letter-spacing: .34em;
  text-indent: .34em; line-height: 1;
}
.header__logo-sub, .footer__logo-sub {
  display: flex; align-items: center; gap: 10px;
  font-size: 9.5px; font-weight: 500; letter-spacing: .38em; text-indent: .1em;
  text-transform: uppercase; color: var(--grey);
}
.header__logo-sub i, .footer__logo-sub i { width: 34px; height: 1px; background: var(--ink); opacity: .55; }
.header__phone {
  grid-column: 3; grid-row: 1; justify-self: end;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; white-space: nowrap;
  display: none;
}

.burger { display: none; background: none; border: none; cursor: pointer; width: 26px; height: 20px; position: relative; z-index: 120; grid-column: 3; justify-self: end; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: .3s; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
.mobilenav {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 110;
  flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mobilenav.is-open { display: flex; }
.mobilenav a { font-size: 17px; letter-spacing: .22em; text-transform: uppercase; }
.mobilenav__phone { color: var(--taupe-deep); font-weight: 600; }

/* ---------- Герой ---------- */
.hero {
  padding: clamp(36px, 4.5vw, 60px) var(--pad) 0;
  background:
    radial-gradient(900px 480px at 18% 88%, rgba(196, 174, 137, .16), transparent 65%),
    radial-gradient(700px 420px at 92% 8%, rgba(232, 224, 208, .5), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF7F1 100%);
}
.hero__split {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 5.5vw, 90px); align-items: end;
  max-width: 1280px; margin: 0 auto;
}
.hero__content { align-self: center; padding-bottom: clamp(24px, 3vw, 48px); }
.hero__script { animation: fade-up .8s ease .1s backwards; }
.hero__title {
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 400; letter-spacing: .18em; line-height: 1.16;
  margin: 12px 0 20px;
  animation: fade-up .8s ease .25s backwards;
}
.hero__sub {
  color: var(--grey); font-size: 15.5px; font-weight: 300; letter-spacing: .04em;
  max-width: 470px; animation: fade-up .8s ease .4s backwards;
}
.hero__actions { display: flex; gap: 14px; margin: 32px 0 0; flex-wrap: wrap; animation: fade-up .8s ease .55s backwards; }
.hero__promo {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13.5px; font-weight: 300; color: var(--grey); letter-spacing: .04em;
  max-width: 470px; animation: fade-up .8s ease .7s backwards;
}
.hero__promo b {
  font-family: var(--font-script); font-style: italic; font-weight: 600;
  font-size: 22px; color: var(--taupe-deep); margin-right: 6px;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero__figure {
  position: relative;
  height: clamp(480px, 50vw, 710px);
  animation: fade-up 1s ease .35s backwards;
}
.hero__arch {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(88%, 460px); height: 88%;
  background: linear-gradient(180deg, #F1ECE2 0%, #E9E1D1 100%);
  border-radius: 999px 999px 0 0;
}
.hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity 1s ease; pointer-events: none;
}
.hero__slide.is-active { opacity: 1; }
.hero__girl {
  position: relative; z-index: 2;
  height: clamp(430px, 46vw, 660px); width: auto; max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(22, 21, 19, .16));
}
.hero__ph {
  width: min(88%, 460px); height: 88%;
  object-fit: cover; object-position: center 30%;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 22px 40px -18px rgba(22, 21, 19, .22);
}
.hero__dots, .reviews__dots { display: flex; gap: 10px; justify-content: center; }
.hero__dots {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 5;
  justify-content: center;
}
.hero__dots button, .reviews__dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--ink);
  background: transparent; cursor: pointer; padding: 0; transition: background .3s, transform .3s;
}
.hero__dots button.is-active { background: var(--ink); transform: scale(1.25); }
.reviews__dots button.is-active { background: var(--ink); transform: scale(1.25); }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1360px; margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__stats > div {
  padding: 26px 16px; text-align: center;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.hero__stats > div:first-child { border-left: none; }
.hero__stats strong {
  font-family: var(--font-script); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px); color: var(--taupe-deep);
}
.hero__stats span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }

/* ---------- Секции ---------- */
.section { padding: clamp(64px, 8vw, 110px) var(--pad); }
.section--tint { background: var(--tint); }
.section__head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head h2 { margin-top: 6px; }
.section__head::after {
  content: ""; display: block; width: 52px; height: 1px;
  background: var(--taupe); margin: 22px auto 0;
}

/* ---------- Услуги: интерактивное меню процедур ---------- */
.menu { position: relative; max-width: 1120px; margin: 0 auto; }
.menu__row {
  display: grid;
  grid-template-columns: 52px 1.5fr auto 34px;
  align-items: center; gap: 18px;
  padding: 26px 10px; border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background .3s ease;
}
.menu__row:first-child { border-top: 1px solid var(--line); }
.menu__row:hover { padding-left: 26px; }
.menu__thumb { display: none; }
.menu__num {
  font-family: var(--font-script); font-style: italic; font-size: 17px;
  color: var(--taupe); transition: color .3s ease;
}
.menu__main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.menu__name {
  font-size: clamp(17px, 1.9vw, 24px); letter-spacing: .16em; text-transform: uppercase;
  transition: color .3s ease;
}
.menu__desc { font-size: 13px; font-weight: 300; color: var(--grey); letter-spacing: .03em; }
.menu__price {
  font-family: var(--font-script); font-style: italic; font-weight: 600;
  font-size: clamp(17px, 1.8vw, 22px); color: var(--taupe-deep); white-space: nowrap;
}
.menu__arrow {
  font-size: 18px; color: var(--taupe-deep);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.menu__row:hover .menu__arrow { opacity: 1; transform: none; }
.menu__row:hover .menu__name { color: var(--taupe-deep); }

.menu__preview {
  position: absolute; top: 0; left: 0; z-index: 20;
  width: 280px; height: 350px; overflow: hidden;
  pointer-events: none; opacity: 0;
  box-shadow: 0 30px 70px -25px rgba(22, 21, 19, .45);
  transition: opacity .35s ease;
  will-change: transform;
}
.menu__preview.is-on { opacity: 1; }
.menu__preview img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none) { .menu__preview { display: none; } }

/* ---------- Акции ---------- */
.price__note { text-align: center; color: var(--grey); font-size: 13px; font-weight: 300; letter-spacing: .05em; margin-top: 22px; }

.price__offers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1060px; margin: 0 auto;
}
.offer {
  border: 1px solid var(--line); padding: 34px 28px 30px; text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.offer:hover { border-color: var(--taupe); box-shadow: 0 18px 40px -24px rgba(22,21,19,.18); }
.offer__num {
  display: block; font-family: var(--font-script); font-style: italic; font-weight: 500;
  font-size: 44px; color: var(--taupe); line-height: 1; margin-bottom: 14px;
}
.offer h3 { font-size: 13.5px; letter-spacing: .2em; margin-bottom: 10px; }
.offer p { font-size: 13px; font-weight: 300; color: var(--grey); }

/* ---------- О студии ---------- */
.about__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 80px);
  max-width: 1360px; margin: 0 auto; align-items: center;
}
.about__photos { position: relative; padding: 0 0 56px 56px; }
.about__ph1 { overflow: hidden; }
.about__ph1 img { width: 100%; height: clamp(320px, 30vw, 470px); object-fit: cover; }
.about__ph2 {
  position: absolute; left: 0; bottom: 0; width: 52%;
  border: 8px solid var(--tint); overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(22, 21, 19, .3);
}
.about__ph2 img { width: 100%; height: clamp(180px, 17vw, 260px); object-fit: cover; }
.about__text h2 { margin: 10px 0 22px; }
.about__lead {
  font-family: var(--font-script); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2vw, 24px); line-height: 1.45; margin-bottom: 16px;
}
.about__text > p:not(.about__lead) { color: var(--grey); font-weight: 300; margin-bottom: 30px; }

/* ---------- Команда ---------- */
.team__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  max-width: 940px; margin: 0 auto;
}
.courses__until {
  font-size: 13px; font-weight: 300; letter-spacing: .08em; text-transform: uppercase;
  color: var(--taupe-deep); margin-top: 10px;
}
.member { text-align: center; }
.member figure {
  width: 100%; max-width: 210px; margin: 0 auto 18px;
  aspect-ratio: 4/4.8; overflow: hidden; background: var(--tint);
  border-radius: 999px 999px 0 0;
}
.member img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform .6s ease; }
.member:hover img { transform: scale(1.05); }
.member h3 { font-size: 14px; letter-spacing: .14em; }
.member__role {
  font-family: var(--font-script); font-style: italic; font-size: 17px;
  color: var(--taupe-deep); margin: 4px 0 9px;
}
.member__note { font-size: 12.5px; font-weight: 300; color: var(--grey); max-width: 240px; margin: 0 auto; }

/* ---------- Галерея ---------- */
.gallery__grid {
  columns: 4; column-gap: 16px;
  max-width: 1360px; margin: 0 auto;
}
.gallery__grid figure {
  margin: 0 0 16px; overflow: hidden; break-inside: avoid;
  background: var(--tint);
}
.gallery__grid img {
  width: 100%; display: block;
  transition: transform .6s ease, filter .6s ease;
}
.gallery__grid figure:hover img { transform: scale(1.045); }

/* ---------- Отзывы ---------- */
.reviews__slider { position: relative; max-width: 620px; margin: 0 auto; min-height: 260px; }
.quote {
  position: absolute; inset: 0; text-align: center;
  opacity: 0; transition: opacity .8s ease; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 22px;
}
.quote.is-active { opacity: 1; pointer-events: auto; }
.quote::before {
  content: "“"; font-family: var(--font-script); font-size: 74px; line-height: .4;
  color: var(--taupe); display: block; margin-top: 20px;
}
.quote p {
  font-family: var(--font-script); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.5; color: var(--ink);
}
.quote footer { font-size: 12px; font-weight: 500; letter-spacing: .3em; color: var(--grey); }
.reviews__dots { margin-top: 18px; position: relative; z-index: 5; }
.reviews__more { text-align: center; margin-top: 42px; }

/* ---------- Запись ---------- */
.booking { background: var(--ink); color: var(--white); text-align: center; }
.booking__inner { max-width: 760px; margin: 0 auto; }
.booking h2 { margin: 6px 0 14px; }
.booking .script--light, .script--light { color: var(--taupe); }
.booking__sub { color: rgba(255, 255, 255, .65); font-weight: 300; font-size: 15px; letter-spacing: .04em; }
.booking__form { margin-top: 40px; position: relative; }
.booking__fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; margin-bottom: 34px; }
.field { text-align: left; }
.field label {
  display: block; font-size: 10.5px; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-bottom: 8px;
}
.field input, .field select {
  width: 100%; padding: 12px 2px; background: transparent;
  border: none; border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-family: var(--font-caps); font-size: 16px; font-weight: 300; color: var(--white);
  outline: none; transition: border-color .3s ease; border-radius: 0;
  appearance: none;
}
.field input::placeholder { color: rgba(255, 255, 255, .35); }
.field input:focus, .field select:focus { border-color: var(--taupe); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
.field select option { color: var(--ink); background: var(--white); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.booking__agree { font-size: 11.5px; color: rgba(255, 255, 255, .45); margin-top: 16px; letter-spacing: .04em; }
.booking__agree a { text-decoration: underline; }
.booking__success {
  display: none; flex-direction: column; align-items: center; gap: 8px;
  padding-top: 10px;
}
.booking__success.is-visible { display: flex; }
.booking__form.is-sent .booking__fields, .booking__form.is-sent button[type="submit"],
.booking__form.is-sent .booking__agree,
.modal__form.is-sent .field, .modal__form.is-sent button[type="submit"],
.modal__form.is-sent .booking__agree { display: none; }
.booking__success strong { font-size: 18px; letter-spacing: .2em; text-transform: uppercase; }
.booking__success span { color: rgba(255, 255, 255, .55); font-weight: 300; }
.booking__alt {
  margin-top: 36px; display: flex; gap: 14px; justify-content: center; align-items: baseline;
  color: rgba(255, 255, 255, .55);
}
.booking__alt a { font-size: 14px; letter-spacing: .12em; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; }
.booking__alt a:hover { color: var(--taupe); border-color: var(--taupe); }

/* ---------- Контакты ---------- */
.contacts__grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px);
  max-width: 1360px; margin: 0 auto; align-items: start;
}
.contacts__list > div {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.contacts__list > div:first-child { border-top: 1px solid var(--line); }
.contacts__list dt { font-size: 10.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--grey); }
.contacts__list dd { font-size: 15.5px; font-weight: 400; letter-spacing: .02em; }
.contacts__list dd small { color: var(--grey); font-weight: 300; font-size: 12.5px; }
.contacts__list a:hover { color: var(--taupe-deep); }
.contacts__map { height: 400px; border: 1px solid var(--line); }
.contacts__map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Футер ---------- */
.footer { background: var(--ink); color: var(--white); padding: clamp(48px, 6vw, 70px) var(--pad) 0; }
.footer__logo { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 44px; }
.footer__logo-sub { color: rgba(255, 255, 255, .5); }
.footer__logo-sub i { background: rgba(255, 255, 255, .4); }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 980px; margin: 0 auto;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 11.5px; letter-spacing: .3em; color: var(--taupe); margin-bottom: 8px; }
.footer__col a, .footer__col p { font-size: 13.5px; font-weight: 300; color: rgba(255, 255, 255, .75); letter-spacing: .04em; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { text-align: center; padding: 22px 0 26px; }
.footer__bottom p { font-size: 11.5px; font-weight: 300; color: rgba(255, 255, 255, .35); letter-spacing: .06em; }
.footer__requisites { margin-top: 8px; line-height: 1.6; }

/* ---------- Модальное окно записи ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(22, 21, 19, .58);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: fade-in .3s ease;
}
.modal__dialog {
  position: relative; z-index: 2; background: var(--white);
  width: 100%; max-width: 460px; max-height: calc(100vh - 40px); overflow-y: auto;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 3.4vw, 42px) 34px;
  text-align: center; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
  animation: modal-in .35s cubic-bezier(.2, .9, .3, 1.1);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(26px) scale(.97); }
  to { opacity: 1; transform: none; }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: 1px solid var(--line); color: var(--ink);
  font-size: 14px; cursor: pointer; transition: background .25s, color .25s;
}
.modal__close:hover { background: var(--ink); color: var(--white); }
.modal__title { font-size: 17px; letter-spacing: .2em; margin: 6px 0 10px; }
.modal__sub { font-size: 13.5px; font-weight: 300; color: var(--grey); margin-bottom: 24px; }
.modal__form { position: relative; }
.modal__form .field { margin-bottom: 16px; }
.modal__form .field label { color: var(--grey); }
.modal__form .field input, .modal__form .field select {
  border: none; border-bottom: 1px solid var(--line); background: transparent;
  color: var(--ink); padding: 11px 2px; width: 100%;
  font-family: var(--font-caps); font-size: 15.5px; font-weight: 300;
  outline: none; border-radius: 0; appearance: none; transition: border-color .25s;
}
.modal__form .field input:focus, .modal__form .field select:focus { border-color: var(--taupe); }
.modal__form .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23161513' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
.modal__form .btn { margin-top: 8px; }
.booking__agree--dark { color: var(--grey); }
.modal__success {
  display: none; flex-direction: column; align-items: center; gap: 8px;
  padding-top: 6px;
}
.modal__success.is-visible { display: flex; }
.lottie-success { width: 108px; height: 108px; margin: 0 auto 4px; }
.modal__success strong { font-size: 15px; letter-spacing: .18em; text-transform: uppercase; }
.modal__success span { color: var(--grey); font-weight: 300; font-size: 13.5px; }

/* ---------- Чекбоксы согласий ---------- */
.agrees { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 20px; text-align: left; }
.agree {
  display: flex; gap: 11px; align-items: flex-start; cursor: pointer;
  font-size: 12.5px; font-weight: 300; letter-spacing: .03em; line-height: 1.5;
}
.agree a { text-decoration: underline; }
.agree input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  border: 1px solid; border-radius: 3px; cursor: pointer;
  position: relative; background: transparent;
  transition: background .2s ease, border-color .2s ease;
}
.agree input:checked { background: var(--taupe); border-color: var(--taupe) !important; }
.agree input:checked::after {
  content: ""; position: absolute; left: 5px; top: 1.5px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg);
}
.booking .agree { color: rgba(255, 255, 255, .75); }
.booking .agree a { color: var(--white); }
.booking .agree input { border-color: rgba(255, 255, 255, .45); }
.modal .agree { color: var(--grey); }
.modal .agree a { color: var(--ink); }
.modal .agree input { border-color: #BDB5A8; }

/* ---------- Уведомление о cookie ---------- */
.cookiebar {
  position: fixed; left: 18px; bottom: 18px; z-index: 95;
  max-width: 420px;
  background: var(--ink); color: var(--white);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 50px -18px rgba(22, 21, 19, .55);
  animation: fade-up .6s ease .8s backwards;
}
.cookiebar[hidden] { display: none; }
.cookiebar p { font-size: 12.5px; font-weight: 300; letter-spacing: .03em; line-height: 1.55; color: rgba(255, 255, 255, .8); }
.cookiebar a { text-decoration: underline; color: var(--white); }
.cookiebar a:hover { color: var(--taupe); }
.cookiebar .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .cookiebar { left: 8px; right: 8px; bottom: 8px; max-width: none; padding: 14px 16px; }
  .cookiebar p { font-size: 11.5px; }
}

/* ---------- Плавающие кнопки ---------- */
.float-bar {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  transition: opacity .35s ease, transform .35s ease;
}
.float-bar.is-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }
.float-call {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(22, 21, 19, .35);
  transition: background .3s, color .3s;
}
.float-call:hover { background: var(--taupe-deep); color: var(--white); }
.float-call svg { width: 21px; height: 21px; }
.float-cta {
  display: inline-flex; align-items: center;
  padding: 16px 28px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 14px 34px -10px rgba(22, 21, 19, .5);
  transition: background .3s, transform .3s;
  position: relative;
}
.float-cta:hover { background: var(--taupe-deep); transform: translateY(-2px); }
.float-cta::before {
  content: ""; position: absolute; inset: -5px; border-radius: 999px;
  border: 1px solid var(--ink); opacity: 0;
  animation: ring 2.6s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(.92); opacity: .5; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* ---------- Промо-баннер и курсы ---------- */
.promo-banner {
  max-width: 1060px; margin: clamp(36px, 5vw, 52px) auto 0;
  background: var(--tint); border: 1px solid var(--line);
  text-align: center; padding: 40px 30px 42px;
}
.promo-banner h3 { font-size: 17px; letter-spacing: .18em; margin: 8px 0 12px; }
.promo-banner > p:not(.script) { font-size: 14.5px; font-weight: 300; color: var(--grey); max-width: 560px; margin: 0 auto 22px; }
.promo-banner b { color: var(--taupe-deep); font-weight: 600; }
.courses { max-width: 1060px; margin: clamp(40px, 5vw, 60px) auto 0; }
.courses__head { text-align: center; margin-bottom: 30px; }
.courses__title { font-size: clamp(19px, 2.2vw, 26px); letter-spacing: .2em; margin-top: 4px; }
.courses__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.course {
  border: 1px solid var(--line); padding: 28px 24px 26px;
  display: flex; flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.course:hover { border-color: var(--taupe); box-shadow: 0 18px 40px -24px rgba(22, 21, 19, .18); }
.course h4 { font-size: 13px; letter-spacing: .14em; margin-bottom: 14px; min-height: 34px; }
.course ul { flex: 1; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.course li {
  font-size: 13px; font-weight: 300; color: var(--grey);
  padding-left: 16px; position: relative;
}
.course li::before { content: "·"; position: absolute; left: 2px; color: var(--taupe); font-weight: 700; }
.course__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.course__price s { color: #B4AEA3; font-size: 14px; font-weight: 300; }
.course__price b {
  font-family: var(--font-script); font-style: italic; font-weight: 600;
  font-size: 26px; color: var(--taupe-deep);
}
.course__link {
  font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 4px; width: fit-content;
  transition: color .25s, border-color .25s;
}
.course__link:hover { color: var(--taupe-deep); border-color: var(--taupe-deep); }

/* ---------- Появление ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Внутренние страницы ---------- */
.logo-flower { width: 30px; height: 30px; color: var(--taupe); }
.header__logo-text { font-size: 22px; letter-spacing: .2em; display: flex; flex-direction: column; }
.header__logo-text small { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--grey); }

/* ---------- Адаптив ---------- */
@media (max-width: 1020px) {
  .header__nav { display: none; }
  .burger { display: block; }
  .header__inner { grid-template-columns: 1fr auto 1fr; }
  .header__logo { grid-column: 2; }
  .hero__split { grid-template-columns: 1fr; gap: 34px; }
  .hero__media { order: 2; width: 100%; }
  .hero__girl { height: clamp(380px, 60vw, 520px); }
  .hero__figure { height: clamp(420px, 66vw, 580px); }
  .hero__content { padding-bottom: 0; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats > div:nth-child(3) { border-left: none; }
  .hero__stats > div { border-top: 1px solid var(--line); }
  .hero__stats > div:nth-child(-n+2) { border-top: none; }
  .about__grid, .contacts__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .booking__fields { grid-template-columns: 1fr; gap: 20px; }
  .price__offers { grid-template-columns: 1fr; max-width: 420px; }
  .courses__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 3; }
}
@media (max-width: 640px) {
  .ribbon { font-size: 10px; letter-spacing: .12em; }
  .hero__title { font-size: clamp(26px, 7.4vw, 40px); letter-spacing: .16em; text-indent: .16em; }
  .menu__row { grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 4px; }
  .menu__row:hover { padding-left: 4px; }
  .menu__num, .menu__arrow { display: none; }
  .menu__thumb { display: block; width: 64px; height: 64px; overflow: hidden; }
  .menu__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .menu__name { letter-spacing: .1em; }
  .hero__dots { left: 0; right: 0; bottom: 14px; justify-content: center; }
  .hero__stats > div { padding: 14px 8px 16px; }
  .hero__stats span { font-size: 10px; letter-spacing: .08em; }
  .price__table span { font-size: 12px; letter-spacing: .1em; }
  .price__table b { font-size: 17px; }
  .contacts__list > div { grid-template-columns: 1fr; gap: 4px; }
  .contacts__map { height: 300px; }
  .footer__cols { grid-template-columns: 1fr; text-align: center; }
  .reviews__slider { min-height: 340px; }
  .courses__grid { grid-template-columns: 1fr; }
  .course h4 { min-height: 0; }
  .gallery__grid { columns: 2; column-gap: 10px; }
  .gallery__grid figure { margin-bottom: 10px; }
  .float-bar { right: 12px; bottom: 12px; }
  .float-cta { padding: 14px 20px; font-size: 11px; letter-spacing: .14em; }
  .float-call { width: 48px; height: 48px; }
  .footer { padding-bottom: 74px; }
}
