/* ═══════════════════════════════════════════════════════════
   ВИКТОРИЯ — студия волос · концепция «Атлас и мёд»
   Эспрессо-фон, шёлковое золото, мотив пряди
   ═══════════════════════════════════════════════════════════ */

:root {
  --espresso: #1B120C;
  --espresso-2: #241811;
  --panel: #2B1D14;
  --panel-2: #33221854;
  --line: #E8C58426;
  --line-strong: #E8C58445;
  --honey-1: #E8C584;
  --honey-2: #D4A76A;
  --honey-3: #B98A4E;
  --bone: #F6EDE0;
  --cream: #FCE9CD;
  --muted: #C7B6A3;
  --dim: #97867A;
  --danger: #E0704F;
  --grad-honey: linear-gradient(135deg, #E8C584 0%, #D4A76A 45%, #B98A4E 100%);
  --grad-title: linear-gradient(160deg, #FDF6E8 0%, #F6EDE0 52%, #D9B98A 100%);
  --font-d: "Cormorant", "Times New Roman", serif;
  --font-b: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --font-l: "Marcellus", "Cormorant", serif;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-1: 0 10px 40px #00000055;
  --shadow-2: 0 24px 70px #00000066;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html, body { overflow-x: clip; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bone);
  background: var(--espresso);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

/* Зерно плёнки поверх всего — очень тонкое */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

::selection { background: var(--honey-2); color: var(--espresso); }

:focus-visible {
  outline: 2px solid var(--honey-1);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.container--narrow { width: min(860px, 100% - 40px); }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section--alt {
  background:
    radial-gradient(90% 60% at 50% 0%, #2C1D1233 0%, transparent 70%),
    var(--espresso-2);
}

/* ── Заголовки ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey-2);
  margin-bottom: 18px;
}
.eyebrow-dash {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey-2));
}
.eyebrow-dash:last-child { background: linear-gradient(90deg, var(--honey-2), transparent); }

.section-title, .h2 {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: .01em;
}
.section-title em, .h2 em, .hero__title em, .cta-band__title em {
  font-style: italic;
  background: var(--grad-honey);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead {
  margin-top: 16px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}
.section-lead a { color: var(--honey-1); border-bottom: 1px solid var(--line-strong); }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.lead { color: var(--bone); font-size: 1.06rem; margin-bottom: 16px; }
.text { color: var(--muted); }

/* ── Кнопки ────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-position .6s ease, border-color .3s ease, color .3s ease;
  will-change: transform;
}
.btn--primary {
  color: #22150B;
  background: linear-gradient(135deg, #EFCF94 0%, #D4A76A 38%, #B98A4E 78%, #D4A76A 100%);
  background-size: 220% 220%;
  animation: btnShift 6s ease-in-out infinite;
  box-shadow: 0 8px 26px #B98A4E40, inset 0 1px 0 #FFFFFF66;
}
@keyframes btnShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px #D4A76A59, inset 0 1px 0 #FFFFFF88;
}
.btn--glow::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: radial-gradient(60% 120% at 50% 50%, #E8C58455, transparent 70%);
  filter: blur(10px);
  z-index: -1;
  animation: glowPulse 3.2s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.btn--ghost {
  color: var(--bone);
  border: 1px solid var(--line-strong);
  background: #FFFFFF08;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--honey-1);
  color: var(--honey-1);
  transform: translateY(-2px);
}
.btn--small { padding: 11px 20px; font-size: .85rem; }

/* ── Появление при скролле ─────────────────── */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }

/* ── Прелоадер ─────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--espresso);
  transition: opacity .7s ease, visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader { display: grid; place-items: center; gap: 22px; }
.preloader__mark { animation: preloaderBreath 2s ease-in-out infinite; }
@keyframes preloaderBreath { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }
.preloader__line {
  width: 150px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__line span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--grad-honey);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}
@keyframes preloaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(380%); } }

/* ── Шапка ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.header.is-scrolled {
  background: #1B120CD9;
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px #0000004D;
}
.header__inner {
  width: min(1320px, 100% - 32px);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: grid; line-height: 1.1; }
.brand__name {
  font-family: var(--font-l);
  font-size: 1.42rem;
  letter-spacing: .1em;
  background: linear-gradient(160deg, #FDF6E8 0%, var(--bone) 55%, #C9AE83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--honey-2);
}
.header__nav { display: none; align-items: center; gap: 30px; }
.header__nav a {
  position: relative;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  transition: color .3s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--grad-honey);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.header__nav a:hover { color: var(--bone); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--honey-1);
  transition: opacity .3s;
}
.header__phone:hover { opacity: .75; }
.burger {
  display: grid;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}
.burger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--bone);
  transition: transform .4s var(--ease-out), opacity .3s;
}
.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); }

/* ── Мобильное меню ────────────────────────── */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 90px 32px 40px;
  background:
    radial-gradient(120% 80% at 80% -10%, #3A261466 0%, transparent 60%),
    #17100AFA;
  clip-path: circle(0% at calc(100% - 44px) 36px);
  transition: clip-path .7s var(--ease-out);
  visibility: hidden;
}
.mmenu.is-open { clip-path: circle(150% at calc(100% - 44px) 36px); visibility: visible; }
.mmenu__nav { display: grid; gap: 8px; }
.mmenu__nav a {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  padding: 6px 0;
  color: var(--bone);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s var(--ease-out), color .3s;
  transition-delay: calc(var(--i) * 70ms);
}
.mmenu.is-open .mmenu__nav a { opacity: 1; transform: none; }
.mmenu__nav a:hover { color: var(--honey-1); }
.mmenu__foot { opacity: 0; transition: opacity .5s ease .5s; }
.mmenu.is-open .mmenu__foot { opacity: 1; }
.mmenu__orn {
  position: absolute;
  bottom: 34px;
  right: 30px;
  display: flex;
  gap: 10px;
  color: var(--honey-3);
  opacity: .6;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -4% 0;
  z-index: -3;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 30%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, #1B120C99 0%, #1B120C73 34%, #1B120C 96%),
    radial-gradient(90% 70% at 22% 62%, #1B120CD9 0%, transparent 68%);
}
.hero__dust {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__content {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
  max-width: 760px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--honey-1);
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(2.9rem, 9.4vw, 6rem);
  line-height: 1.04;
  letter-spacing: .005em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.hero__lead {
  max-width: 520px;
  font-size: 1.08rem;
  color: var(--cream);
  opacity: .92;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__micro {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 34px;
}
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: #241811B3;
  backdrop-filter: blur(8px);
  font-size: .86rem;
  color: var(--muted);
  transition: border-color .3s, transform .3s;
}
.rating-chip:hover { border-color: var(--honey-1); transform: translateY(-2px); }
.rating-chip strong { color: var(--honey-1); font-size: 1.02rem; }
.rating-chip__stars { color: var(--honey-1); display: inline-flex; }
.hero__proof-sep { width: 1px; height: 26px; background: var(--line-strong); }
.hero__proof-item { font-size: .86rem; color: var(--muted); }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1.5px solid var(--line-strong);
  border-radius: 20px;
  display: none;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--honey-1);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ── Маркиза ───────────────────────────────── */
.marquee {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1E130D;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 36s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
  font-family: var(--font-d);
  font-size: 1.14rem;
  letter-spacing: .06em;
  color: var(--muted);
}
.marquee__group i {
  font-style: normal;
  color: var(--honey-2);
  font-size: .8rem;
}
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ── Плывущее фоновое слово и блобы ────────── */
.bg-word {
  position: absolute;
  top: 4%;
  right: -4%;
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(7rem, 22vw, 19rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #E8C58414;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.glow-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #B98A4E21 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: blobBreath 9s ease-in-out infinite;
}
.glow-blob--a { top: -120px; left: -140px; }
@keyframes blobBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }

/* ── О студии ──────────────────────────────── */
.about { overflow: clip; }
.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
  align-items: center;
}
.about__frame {
  position: relative;
  aspect-ratio: 3.4 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.about__frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid #E8C58438;
  border-radius: calc(var(--r-lg) - 8px);
  z-index: 2;
  pointer-events: none;
}
.about__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: #1B120CD9;
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.about__badge svg { flex: none; }
.about__badge strong { display: block; font-size: .92rem; line-height: 1.2; }
.about__badge span { font-size: .76rem; color: var(--honey-2); letter-spacing: .08em; }
.about__facts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about__facts li {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}
.about__facts strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  background: var(--grad-honey);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.about__facts span { font-size: .8rem; color: var(--dim); line-height: 1.45; display: block; }

/* ── Разделитель-прядь ─────────────────────── */
.strand-divider {
  color: var(--honey-2);
  opacity: .8;
  padding: 6px 0;
}
.strand-divider svg {
  width: min(600px, 82%);
  margin-inline: auto;
  height: auto;
}
.strand-divider__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
html:not(.js) .strand-divider__path { stroke-dashoffset: 0 !important; }

/* ── Доверие ───────────────────────────────── */
.trust__grid {
  display: grid;
  gap: 18px;
}
.trust-card {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, #2C1D12CC, #22160ECC);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .45s;
}
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 180px at var(--mx, 50%) var(--my, 0%), #E8C58414, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.trust-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.trust-card:hover::before { opacity: 1; }
.trust-card__icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--honey-1);
  margin-bottom: 20px;
  background: #E8C5840D;
}
.trust-card__icon svg { width: 34px; height: 34px; }
.trust-card h3 {
  font-family: var(--font-d);
  font-size: 1.42rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.trust-card p { font-size: .92rem; color: var(--muted); }

/* Прорисовка иконок (JS выставляет stroke-dashoffset: 0) */
.draw-icon path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
html:not(.js) .draw-icon path { stroke-dashoffset: 0 !important; }

/* ── Услуги ────────────────────────────────── */
.services { overflow: clip; }
.services__bg-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(6rem, 18vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #E8C58410;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.services__grid {
  position: relative;
  display: grid;
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .45s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-2);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 24px 24px 26px; }
.service-card__body h3 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card__body p { font-size: .92rem; color: var(--muted); margin-bottom: 20px; min-height: 3.2em; }
.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--grad-honey);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.service-card__link {
  position: relative;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--honey-1);
  padding: 4px 0;
}
.service-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-card__link:hover::after { transform: scaleX(1); }

/* Прайс-полоса */
.price-strip {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.price-strip__item, .price-strip__pay {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: #2C1D12B3;
}
.price-strip__item span, .price-strip__pay-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}
.price-strip__item strong {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--honey-1);
}
.price-strip__pay { background: linear-gradient(135deg, #B98A4E, #8F683B); }
.price-strip__pay-label { color: #FFE9C4B3; }
.price-strip__pay strong { font-size: 1rem; color: #FFF3DC; font-weight: 700; }

/* ── Галерея ───────────────────────────────── */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.chip {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
  transition: all .35s var(--ease-out);
}
.chip:hover { color: var(--bone); border-color: var(--honey-1); }
.chip.is-active {
  color: #22150B;
  background: var(--grad-honey);
  border-color: transparent;
  box-shadow: 0 6px 18px #B98A4E4D;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.work {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: opacity .5s ease, transform .5s var(--ease-out);
}
.work.is-hidden { display: none; }
.work__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  text-align: left;
}
.work__btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s;
}
.work__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #1B120C99 100%);
  opacity: .85;
  transition: opacity .5s;
}
.work__btn:hover img { transform: scale(1.06); }
.work__btn:hover::after { opacity: .6; }
.work__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 100px;
  background: #1B120CB8;
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--honey-1);
}

/* ── Квиз ──────────────────────────────────── */
.quiz__box {
  position: relative;
  padding: 34px 26px 30px;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, #2C1D12E0, #20140DE0);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.quiz__box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #E8C5841A, transparent 70%);
  pointer-events: none;
}
.quiz__progress {
  height: 3px;
  border-radius: 3px;
  background: #E8C5841F;
  margin-bottom: 28px;
  overflow: hidden;
}
.quiz__progress-bar {
  display: block;
  height: 100%;
  width: 33.3%;
  border-radius: inherit;
  background: var(--grad-honey);
  transition: width .6s var(--ease-out);
}
.quiz__step { display: none; border: 0; }
.quiz__step.is-active { display: block; animation: quizIn .5s var(--ease-out); }
@keyframes quizIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.quiz__step legend {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.quiz__options { display: grid; gap: 12px; }
.qopt {
  position: relative;
  padding: 17px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: #FFFFFF05;
  text-align: left;
  font-size: .98rem;
  font-weight: 600;
  color: var(--bone);
  transition: all .3s var(--ease-out);
}
.qopt::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  color: var(--honey-1);
  opacity: 0;
  transition: all .3s var(--ease-out);
}
.qopt:hover { border-color: var(--honey-1); background: #E8C5840F; padding-right: 46px; }
.qopt:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.quiz__result { text-align: center; padding: 10px 0 4px; animation: quizIn .5s var(--ease-out); }
.quiz__result-title {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.quiz__result-text { color: var(--muted); max-width: 420px; margin: 0 auto 26px; }
.quiz__send svg { flex: none; }
.quiz__restart {
  display: block;
  margin: 18px auto 0;
  font-size: .84rem;
  color: var(--dim);
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 2px;
  transition: color .3s;
}
.quiz__restart:hover { color: var(--honey-1); }

/* ── Процесс ───────────────────────────────── */
.process__list { display: grid; gap: 30px; }
.process-step {
  display: grid;
  gap: 22px;
  align-items: center;
}
.process-step__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.process-step__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-step__body { position: relative; padding-left: 8px; }
.process-step__num {
  display: block;
  font-family: var(--font-d);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--honey-3);
  margin-bottom: 12px;
}
.process-step__body h3 {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step__body p { color: var(--muted); font-size: .96rem; max-width: 440px; }

/* ── CTA-полоса ────────────────────────────── */
.cta-band {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  isolation: isolate;
  overflow: clip;
  text-align: center;
}
.cta-band__bg { position: absolute; inset: -4% 0; z-index: -2; }
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--espresso) 0%, #1B120CB8 30%, #1B120CB8 70%, var(--espresso) 100%);
}
.cta-band__dust { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.cta-band__title {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  line-height: 1.14;
  margin-bottom: 18px;
}
.cta-band__lead { max-width: 520px; margin: 0 auto 34px; color: var(--cream); opacity: .9; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ── Отзывы ────────────────────────────────── */
.reviews__nav { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.reviews__source {
  font-size: .86rem;
  font-weight: 600;
  color: var(--honey-1);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: opacity .3s;
}
.reviews__source:hover { opacity: .75; }
.reviews__arrows { display: flex; gap: 10px; }
.reviews__arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  transition: all .3s var(--ease-out);
}
.reviews__arrow:hover { border-color: var(--honey-1); color: var(--honey-1); transform: translateY(-2px); }
.reviews__track-wrap { position: relative; }
.reviews__track {
  display: flex;
  gap: 18px;
  padding: 10px max(20px, calc((100vw - 1200px) / 2)) 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.review-card {
  flex: 0 0 min(340px, 84vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, #2C1D12E6, #22160EE6);
  border: 1px solid var(--line);
  user-select: none;
}
.review-card__stars { color: var(--honey-1); letter-spacing: 3px; font-size: .95rem; }
.review-card__text { font-size: .95rem; color: var(--cream); line-height: 1.7; flex: 1; }
.review-card__foot {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
}
.review-card__foot strong { font-size: .95rem; }
.review-card__foot span { font-size: .78rem; color: var(--honey-2); letter-spacing: .06em; }
.reviews__progress {
  width: min(1200px, 100% - 40px);
  margin: 6px auto 0;
  height: 2px;
  background: #E8C5841F;
  border-radius: 2px;
  overflow: hidden;
}
.reviews__progress-bar {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--grad-honey);
  border-radius: inherit;
  transition: width .3s ease;
}

/* ── FAQ ───────────────────────────────────── */
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #2C1D1259;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq__item[open] { border-color: var(--line-strong); background: #2C1D12A6; }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--honey-1); }
.faq__chev {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: transform .4s var(--ease-out), border-color .3s;
}
.faq__chev::before, .faq__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.6px;
  background: var(--honey-1);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out);
}
.faq__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chev { transform: rotate(45deg); border-color: var(--honey-1); }
.faq__body { padding: 0 22px 22px; }
.faq__body p { color: var(--muted); font-size: .94rem; max-width: 640px; }
.faq__body a { color: var(--honey-1); border-bottom: 1px solid var(--line-strong); }

/* ── Контакты ──────────────────────────────── */
.contacts__grid { display: grid; gap: 40px; align-items: center; }
.contacts__list { display: grid; gap: 22px; margin: 30px 0 34px; }
.contacts__list li {
  display: grid;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid var(--line-strong);
}
.contacts__label {
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
.contacts__list strong { font-weight: 600; line-height: 1.5; }
.contacts__tg { color: var(--honey-1); }
.contacts__tg:hover { text-decoration: underline; }
.contacts__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contacts__photo {
  position: relative;
  aspect-ratio: 3.4 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.contacts__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts__photo-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: #1B120CD9;
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  display: grid;
  gap: 2px;
}
.contacts__photo-card strong { font-family: var(--font-d); font-size: 1.3rem; }
.contacts__photo-card span { font-size: .8rem; color: var(--honey-2); }

/* ── Футер ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  background: #150D08;
  padding: 54px 0 28px;
}
.footer__grid {
  display: grid;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { flex: none; }
.footer__brand strong { font-family: var(--font-l); font-size: 1.3rem; letter-spacing: .08em; display: block; }
.footer__brand span { font-size: .78rem; color: var(--dim); }
.footer__nav { display: grid; gap: 10px; align-content: start; }
.footer__nav a { font-size: .92rem; color: var(--muted); transition: color .3s; width: fit-content; }
.footer__nav a:hover { color: var(--honey-1); }
.footer__contacts { display: grid; gap: 10px; align-content: start; font-size: .92rem; color: var(--muted); }
.footer__contacts a { color: var(--honey-1); width: fit-content; }
.footer__contacts a:hover { text-decoration: underline; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  font-size: .78rem;
  color: var(--dim);
}

/* ── Липкая CTA ────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 800;
  transform: translateY(140%);
  transition: transform .5s var(--ease-out);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: .95rem;
  color: #22150B;
  background: var(--grad-honey);
  box-shadow: 0 12px 34px #00000073, 0 4px 16px #B98A4E59;
  border: 1px solid #FFFFFF3B;
}

/* ── Кнопка наверх ─────────────────────────── */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 810;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #241811E0;
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--honey-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .45s var(--ease-out);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--honey-1); }
.to-top svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top svg path { transform: rotate(90deg); transform-origin: center; }
.to-top__ring-bg { stroke: #E8C58422; }
.to-top__ring {
  stroke: var(--honey-1);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
}

/* ── Лайтбокс ──────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  background: #120B06F2;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .4s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__stage {
  max-width: min(1000px, 92vw);
  max-height: 84svh;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 76svh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  object-fit: contain;
}
.lightbox__caption { font-size: .9rem; color: var(--muted); letter-spacing: .04em; }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  transition: all .3s;
}
.lightbox__close:hover { border-color: var(--honey-1); color: var(--honey-1); transform: rotate(90deg); }
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  transition: all .3s;
}
.lightbox__arrow:hover { border-color: var(--honey-1); color: var(--honey-1); }
.lightbox__arrow--prev { left: 14px; }
.lightbox__arrow--next { right: 14px; }

/* ── Адаптив ───────────────────────────────── */
@media (min-width: 640px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .quiz__options { grid-template-columns: repeat(2, 1fr); }
  .quiz__box { padding: 44px 44px 40px; }
  .hero__scroll { display: block; }
}

@media (min-width: 960px) {
  .header__nav { display: flex; }
  .header__phone { display: inline-flex; }
  .burger { display: none; }
  .about__grid { grid-template-columns: 1fr 1.1fr; gap: 70px; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .process-step { grid-template-columns: 1fr 1fr; gap: 54px; }
  .process-step--rev .process-step__media { order: 2; }
  .contacts__grid { grid-template-columns: 1.1fr .9fr; gap: 70px; }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .sticky-cta { display: none; }
  .to-top { bottom: 24px; }
}

@media (min-width: 1200px) {
  .gallery__grid { gap: 18px; }
}

/* ── Reduced motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .strand-divider__path, .draw-icon path { stroke-dashoffset: 0 !important; }
}
