/* ============================================================
   КАЛИБРИ — салон красоты. Светлый воздушный премиум.
   ============================================================ */

:root {
  /* Палитра */
  --cream:      #F7F3EC;
  --cream-deep: #EFE7DA;
  --emerald:    #1F4D3D;
  --emerald-dk: #163A2D;
  --gold:       #C9A24B;
  --gold-soft:  #DCC288;
  --ink:        #2B2A26;
  --ink-soft:   #6A655C;
  --line:       #E1D8C8;
  --white:      #FFFFFF;

  /* Шрифты */
  --display: "Playfair Display", Georgia, serif;
  --accent:  "Cormorant Garamond", Georgia, serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Раскладка */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --shadow: 0 24px 60px -28px rgba(31, 77, 61, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Базовое ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- Типографика-помощники ---------- */
.eyebrow {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 0 0 0.6rem;
  position: relative;
  padding-left: 46px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 34px; height: 1px;
  background: var(--gold);
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before { background: var(--gold-soft); }

.section { padding-block: clamp(72px, 11vw, 140px); }

.section__head {
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}
.section__head .eyebrow { padding-left: 0; display: inline-block; }
.section__head .eyebrow::before { display: none; }

.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--emerald);
  margin: 0;
}
.section__title--light { color: var(--cream); }

.section__sub {
  color: var(--ink-soft);
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 16px 34px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(201, 162, 75, 0.6);
}
.btn--gold:hover { background: #b88f3a; transform: translateY(-2px); }
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 236, 0.55);
}
.btn--ghost-light:hover { background: rgba(247, 243, 236, 0.12); transform: translateY(-2px); }

/* ---------- Логотип ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 34px; height: 34px; fill: var(--gold); flex: none; }
.logo__img { height: 42px; width: auto; flex: none; display: block; }
.header.is-scrolled .logo__img { height: 38px; transition: height .4s var(--ease); }
.logo__text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--emerald);
}
.logo--light .logo__text { color: var(--cream); }

/* ============================================================
   ШАПКА
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 18px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav { display: flex; gap: 20px; flex-wrap: nowrap; }
.nav__link {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  padding-block: 6px;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--emerald); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: none;                /* в шапке показываем только на широких мониторах (см. ниже) */
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.18;
}
.header__phone a {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.header__phone a:hover { color: var(--gold); }
/* Телефон в шапке — только на широких экранах, где точно есть место */
@media (min-width: 1500px) {
  .header__phone { display: flex; }
}
.header__cta { padding: 12px 26px; }

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--emerald);
  margin-inline: auto;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__media {
  /* запасной градиент-фон, если фото нет */
  background:
    radial-gradient(120% 120% at 75% 20%, rgba(201,162,75,0.18), transparent 55%),
    linear-gradient(160deg, var(--emerald) 0%, var(--emerald-dk) 55%, #0f261d 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16,38,29,0.78) 0%, rgba(16,38,29,0.5) 55%, rgba(16,38,29,0.32) 100%),
    linear-gradient(180deg, rgba(16,38,29,0.25) 0%, rgba(16,38,29,0.6) 100%);
}
.hero__content { position: relative; max-width: 760px; padding-top: 90px; }
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0.4rem 0 0;
}
.hero__title em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.hero__lead {
  max-width: 540px;
  margin: 1.6rem 0 0;
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(247, 243, 236, 0.9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2.4rem; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  translate: -50% 0;
  width: 26px; height: 42px;
  border: 1px solid rgba(247,243,236,0.5);
  border-radius: 100px;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  translate: -50% 0;
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--gold-soft);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ============================================================
   УСЛУГИ
   ============================================================ */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px 32px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
}
.service-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--emerald);
  margin: 0 0 10px;
}
.service-card__desc { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 24px; flex: 1; }
.service-card__price {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-card__cta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap .3s var(--ease);
}
.service-card:hover .service-card__cta { color: #b88f3a; }

/* ============================================================
   О САЛОНЕ
   ============================================================ */
.about { background: var(--cream-deep); }
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(201,162,75,0.22), transparent 60%),
    linear-gradient(150deg, var(--emerald), var(--emerald-dk));
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media--placeholder img { display: none; }
.about__badge {
  position: absolute;
  left: 24px; bottom: 24px;
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  background: rgba(22,58,45,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(247,243,236,0.25);
  padding: 8px 18px;
  border-radius: 100px;
}
.about__lead { color: var(--ink-soft); font-size: 1.08rem; margin: 1.2rem 0 2.4rem; }

.features { display: grid; gap: 26px; }
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature__num {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex: none;
}
.feature__title { font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--emerald); margin: 4px 0 4px; }
.feature__desc { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* ============================================================
   РАБОТЫ
   ============================================================ */
.works { background: var(--cream); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, var(--emerald), var(--emerald-dk));
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item.is-empty::after {
  content: "Фото";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--accent); font-style: italic;
  color: rgba(247,243,236,0.6);
  font-size: 1.2rem;
}
.gallery__item.is-empty::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(100% 100% at 70% 20%, rgba(201,162,75,0.25), transparent 60%);
}

/* ============================================================
   ОТЗЫВЫ
   ============================================================ */
.reviews { background: var(--cream-deep); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  position: relative;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 30px;
}
.review__quote {
  position: absolute;
  top: 6px; left: 26px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.5;
}
.review__text { position: relative; color: var(--ink); font-size: 1.04rem; margin: 18px 0 22px; }
.review__author {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--emerald);
}
.review__author::before { content: "— "; color: var(--gold); }

/* ============================================================
   ОНЛАЙН-ЗАПИСЬ
   ============================================================ */
.booking {
  position: relative;
  color: var(--cream);
  text-align: center;
  background:
    radial-gradient(110% 120% at 20% 0%, rgba(201,162,75,0.2), transparent 55%),
    linear-gradient(150deg, var(--emerald) 0%, var(--emerald-dk) 70%, #0f261d 100%);
}
.booking__inner { max-width: 720px; margin: 0 auto; }
.booking__inner .eyebrow { display: inline-block; padding-left: 0; }
.booking__inner .eyebrow::before { display: none; }
.booking__sub { color: rgba(247,243,236,0.82); font-size: 1.08rem; margin: 1rem 0 2.4rem; }
.booking__widget {
  background: rgba(247,243,236,0.06);
  border: 1px dashed rgba(247,243,236,0.3);
  border-radius: var(--radius);
  padding: 44px 24px;
  margin-bottom: 28px;
}
.booking__placeholder { margin: 0; color: rgba(247,243,236,0.7); font-family: var(--accent); font-style: italic; font-size: 1.15rem; }

/* ============================================================
   КОНТАКТЫ + ФОРМА
   ============================================================ */
.contacts { background: var(--cream); }
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contacts__list { display: grid; gap: 22px; margin: 2rem 0; }
.contacts__list li { display: grid; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contacts__label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.contacts__value { font-size: 1.12rem; color: var(--emerald); font-weight: 500; }
.contacts__messengers { display: flex; gap: 18px; }
.contacts__messengers a {
  font-size: 1.05rem; color: var(--emerald); font-weight: 500;
  border-bottom: 1px solid var(--gold-soft); padding-bottom: 1px;
  transition: color .3s var(--ease);
}
.contacts__messengers a:hover { color: var(--gold); }

.contacts__map {
  margin-top: 14px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}
.contacts__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contacts__form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form__title { font-family: var(--display); font-weight: 500; font-size: 1.7rem; color: var(--emerald); margin: 0 0 6px; }
.form__sub { color: var(--ink-soft); margin: 0 0 26px; }
.form { display: grid; gap: 18px; }
.form__field { display: grid; gap: 7px; }
.form__field label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form__field input,
.form__field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.form__field input.is-error,
.form__field textarea.is-error { border-color: #c0563f; }
.form__submit { margin-top: 6px; width: 100%; }
.form__status { margin: 0; font-size: 0.95rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--emerald); }
.form__status.is-bad { color: #c0563f; }
.form__note { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }
.form__note a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }

/* ============================================================
   ФУТЕР
   ============================================================ */
.footer { background: var(--emerald-dk); color: var(--cream); }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-block: 64px;
}
.footer__tagline { color: rgba(247,243,236,0.6); font-family: var(--accent); font-style: italic; font-size: 1.1rem; margin: 12px 0 0; }
.footer__phones { display: flex; flex-direction: column; gap: 3px; margin: 14px 0 0; }
.footer__phones a { color: rgba(247,243,236,0.85); font-size: 0.98rem; font-weight: 500; letter-spacing: 0.02em; transition: color .3s var(--ease); width: fit-content; }
.footer__phones a:hover { color: var(--gold-soft); }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__social a {
  font-size: 0.92rem;
  color: rgba(247,243,236,0.78);
  letter-spacing: 0.04em;
  transition: color .3s var(--ease);
  width: fit-content;
}
.footer__nav a:hover, .footer__social a:hover { color: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(247,243,236,0.12); }
.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  font-size: 0.84rem;
  color: rgba(247,243,236,0.55);
}
.footer__bottom a { color: rgba(247,243,236,0.55); border-bottom: 1px solid rgba(247,243,236,0.25); }

/* ============================================================
   REVEAL-АНИМАЦИИ
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* стаггер для соседних элементов */
.services__grid .reveal:nth-child(2) { transition-delay: .08s; }
.services__grid .reveal:nth-child(3) { transition-delay: .16s; }
.services__grid .reveal:nth-child(5) { transition-delay: .08s; }
.services__grid .reveal:nth-child(6) { transition-delay: .16s; }
.reviews__grid .reveal:nth-child(2) { transition-delay: .1s; }
.reviews__grid .reveal:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll span { animation: none; }
}

/* ============================================================
   МЕССЕНДЖЕРЫ В ШАПКЕ
   ============================================================ */
.header__msgs { display: none; }  /* в шапке скрыты, чтобы меню помещалось; есть в контактах и подвале */
.msg-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--emerald);
  background: var(--white);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.msg-ico svg { width: 18px; height: 18px; fill: currentColor; }
.msg-ico:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   АКЦИЯ В HERO
   ============================================================ */
.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.8rem;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(201, 162, 75, 0.18);
  border: 1px solid rgba(220, 194, 136, 0.5);
  backdrop-filter: blur(6px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__promo:hover { background: rgba(201, 162, 75, 0.3); transform: translateY(-2px); }
.hero__promo-gift { font-size: 1.2rem; }

.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(247, 243, 236, 0.9);
}
.hero__rating strong { color: var(--cream); font-weight: 600; }
.hero__stars { color: var(--gold-soft); letter-spacing: 1px; }
.hero__rating:hover { color: var(--cream); }

/* ============================================================
   ФОРМА БОНУСА ЗА ПЕРВЫЙ ВИЗИТ
   ============================================================ */
.bonus { background: var(--emerald); color: var(--cream); }
.bonus__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 80px);
}
.bonus .eyebrow { color: var(--gold-soft); }
.bonus .eyebrow::before { background: var(--gold-soft); }
.bonus__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin: 0;
}
.bonus__sub { color: rgba(247, 243, 236, 0.82); margin: 0.8rem 0 0; }
.bonus__row { display: flex; gap: 12px; flex-wrap: wrap; }
.bonus__row input {
  flex: 1 1 160px;
  font-family: var(--body);
  font-size: 1rem;
  padding: 15px 18px;
  border-radius: 100px;
  border: 1px solid rgba(247, 243, 236, 0.3);
  background: rgba(247, 243, 236, 0.1);
  color: var(--cream);
}
.bonus__row input::placeholder { color: rgba(247, 243, 236, 0.6); }
.bonus__row input:focus { outline: none; border-color: var(--gold-soft); background: rgba(247, 243, 236, 0.16); }
.bonus__row input.is-error { border-color: #e8a08c; }
.bonus__row .btn { flex: 0 0 auto; }
.bonus__status { margin: 12px 0 0; min-height: 1.2em; font-size: 0.95rem; }
.bonus__status.is-ok { color: var(--gold-soft); }
.bonus__status.is-bad { color: #f0b9a8; }
.bonus__consent { display: flex; align-items: center; gap: 9px; margin-top: 12px; font-size: 0.85rem; color: rgba(247, 243, 236, 0.72); }
.bonus__consent a { color: var(--gold-soft); border-bottom: 1px solid rgba(220, 194, 136, 0.5); }
.bonus__consent input { accent-color: var(--gold); width: 16px; height: 16px; }

/* ============================================================
   АКЦИИ
   ============================================================ */
.promo { background: var(--cream); }
.promo__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.promo-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.promo-card::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.18), transparent 70%);
}
.promo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.promo-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.promo-card__title { font-family: var(--display); font-weight: 500; font-size: 1.45rem; color: var(--emerald); margin: 0 0 10px; }
.promo-card__desc { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 22px; flex: 1; }
.promo-card__cta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ============================================================
   НАШИ МАСТЕРА
   ============================================================ */
/* ============================================================
   ПРАЙС-ЛИСТ
   ============================================================ */
.prices { background: var(--cream-deep); }
.prices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.price-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 42px);
}
.price-block__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--emerald);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.price-group { margin-top: 26px; }
.price-group:first-of-type { margin-top: 0; }
.price-group h4 {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.price-group__note { font-size: 0.86rem; color: var(--ink-soft); margin: -6px 0 14px; font-style: italic; }
.price-group ul { display: grid; gap: 9px; }
.price-group li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px dotted var(--line);
}
.price-group li span { color: var(--ink); }
.price-group li b { color: var(--emerald); font-weight: 600; white-space: nowrap; }
.price-note { margin: 22px 0 0; font-size: 0.84rem; color: var(--ink-soft); font-style: italic; }
.price-block__cta { margin-top: 26px; }
.price-group .reveal:nth-child(2) { transition-delay: .06s; }

/* ============================================================
   НАШИ МАСТЕРА
   ============================================================ */
.team { background: var(--cream); }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.master {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 26px;
  text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.master:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.master__photo {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(150deg, var(--emerald), var(--emerald-dk));
}
.master__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.master__photo.is-empty { position: relative; }
.master__photo.is-empty::after {
  content: "Фото";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--accent); font-style: italic;
  color: rgba(247, 243, 236, 0.6);
}
.master__name { font-family: var(--display); font-weight: 500; font-size: 1.25rem; color: var(--emerald); margin: 0 0 4px; }
.master__role { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.06em; margin: 0 0 14px; }
.master__toggle {
  font-family: var(--body);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: none;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.master__toggle:hover { border-color: var(--gold); color: var(--gold); }
.master__bio {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.master.is-open .master__bio { max-height: 260px; opacity: 1; margin-top: 16px; }
.master.is-open .master__toggle { background: var(--emerald); color: var(--cream); border-color: var(--emerald); }

/* Маршрут в контактах */
.contacts__route {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  width: fit-content;
  transition: color .3s var(--ease);
}
.contacts__route:hover { color: #b88f3a; }

/* Стаггер новых сеток */
.promo__grid .reveal:nth-child(2) { transition-delay: .08s; }
.promo__grid .reveal:nth-child(3) { transition-delay: .16s; }
.team__grid .reveal:nth-child(2) { transition-delay: .07s; }
.team__grid .reveal:nth-child(3) { transition-delay: .14s; }
.team__grid .reveal:nth-child(4) { transition-delay: .21s; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 980px) {
  .services__grid,
  .reviews__grid,
  .promo__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner,
  .contacts__inner,
  .bonus__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .header__phone { display: none; }
  .header__cta { display: none; }
  .header__msgs { display: none; }
  .burger { display: flex; }
  .prices__grid { grid-template-columns: 1fr; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    background: var(--cream);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1rem; }

  body.menu-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .services__grid,
  .reviews__grid,
  .promo__grid,
  .team__grid,
  .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 220px; }
  .gallery__item--tall { grid-row: span 1; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .bonus__row .btn { width: 100%; }
}
