@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/golos-text-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/golos-text-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/unbounded-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/unbounded-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0b0d0f;
  --bg-raise: #101316;
  --panel: #14181c;
  --panel-2: #191e22;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --fg: #f2f4f5;
  --fg-dim: #b6bfc5;
  --fg-mute: #8e999f;
  --gold: #d0a95e;
  --gold-dim: #8d7440;
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.85), 0 4px 12px -6px rgba(0, 0, 0, 0.6);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


img { max-width: 100%; display: block; }

a { color: inherit; }

::selection {
  background: var(--gold);
  color: var(--bg);
}

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

* { scrollbar-color: #2b3339 var(--bg); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #262d33;
  border: 3px solid var(--bg);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: #364047; }

h1, h2, h3, h4 {
  font-family: 'Unbounded', 'Golos Text', sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--fg);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(11, 13, 15, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.header__in {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img { width: 152px; height: auto; }
.nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  margin-inline-start: auto;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--fg-dim);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { transform: scaleX(1); }
.header__phone {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: var(--fg);
  transition: color 0.25s var(--ease);
}
.header__phone:hover { color: var(--gold); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--fg);
  --btn-fg: #0b0d0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); background: #ffffff; }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 11px 18px; font-size: 15px; }
.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--fg-mute);
}
.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: #17120a;
}
.btn--gold:hover { background: #e0bc76; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(112px, 14vh, 160px);
  padding-bottom: clamp(48px, 7vh, 92px);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.15rem);
  letter-spacing: -0.045em;
}
h1 .accent { color: var(--gold); }
.hero__sub {
  margin-top: 24px;
  max-width: 34em;
  color: var(--fg-dim);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--fg-mute);
}
.hero__proof b { color: var(--fg); font-weight: 600; }
.hero__proof .award { color: var(--fg-dim); }
.hero__proof .award svg { color: var(--gold); }
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof svg { width: 16px; height: 16px; color: var(--gold-dim); flex: none; }

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 520px;
  margin-inline-start: auto;
  width: 100%;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(198deg, rgba(11, 13, 15, 0) 42%, rgba(11, 13, 15, 0.72) 100%);
  pointer-events: none;
}
.sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 34%, rgba(255, 255, 255, 0.16) 47%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.16) 53%, transparent 66%);
  transform: translate3d(-130%, 0, 0);
  mix-blend-mode: screen;
}
.sweep.is-live { animation: sweep 2.1s var(--ease) 0.45s both; }
@keyframes sweep {
  from { transform: translate3d(-130%, 0, 0); }
  to { transform: translate3d(130%, 0, 0); }
}
.hero__tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.01em;
}

.pricestrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 6vw, 76px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricestrip a {
  background: var(--bg-raise);
  padding: 22px 24px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background-color 0.35s var(--ease);
}
.pricestrip a:hover { background: var(--panel-2); }
.pricestrip .label {
  font-size: 15px;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
}
.pricestrip .value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---------- sections ---------- */

.section { padding-block: clamp(72px, 9vw, 132px); }
.section--tint { background: var(--bg-raise); border-block: 1px solid var(--line); }

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(34px, 4.4vw, 60px);
}
.section__head p {
  color: var(--fg-mute);
  font-size: 16px;
  max-width: 46ch;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.85rem);
}
h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  letter-spacing: -0.03em;
}

/* ---------- services ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, rgba(20, 24, 28, 0.4) 100%);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background-color 0.4s var(--ease);
}
.service:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.service__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.service__price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.service__price span {
  display: block;
  font-family: 'Golos Text', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--fg-mute);
  text-align: right;
  margin-bottom: 2px;
}
.service ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.5;
}
.service li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.service li svg { width: 18px; height: 18px; margin-top: 3px; color: var(--gold-dim); }
.service__foot {
  margin-top: auto;
  padding-top: 26px;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--fg);
  transition: gap 0.35s var(--ease), color 0.3s var(--ease);
}
.service__link svg { width: 17px; height: 17px; color: var(--gold); }
.service__link:hover { gap: 14px; color: var(--gold); }

.note {
  margin-top: clamp(22px, 2.4vw, 30px);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--fg-mute);
  font-size: 15px;
  max-width: 70ch;
}
.note svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--gold-dim); }

.extras {
  margin-top: clamp(38px, 4vw, 56px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.extras h3 { font-size: 1.05rem; letter-spacing: -0.02em; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.chips li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 15px;
  color: var(--fg-dim);
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}
.shot {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 3 / 4;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- about ---------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about p + p { margin-top: 18px; }
.about p { color: var(--fg-dim); }
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  background: var(--panel);
  padding: 24px 24px 22px;
}
.fact__k {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.fact__v {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.45;
}
.adv {
  list-style: none;
  margin: clamp(30px, 3.4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.adv li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--fg-dim);
  font-size: 16px;
}
.adv svg { width: 20px; height: 20px; margin-top: 3px; color: var(--gold); }

/* ---------- steps ---------- */

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 68px minmax(0, 30ch) minmax(0, 1fr);
  align-items: baseline;
  gap: 8px 28px;
  padding-block: clamp(20px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: clamp(1.12rem, 1.5vw, 1.4rem); letter-spacing: -0.03em; }
.steps p { color: var(--fg-mute); font-size: 15px; line-height: 1.5; }

/* ---------- reviews ---------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.review {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review p { color: var(--fg-dim); font-size: 15px; line-height: 1.55; }
.review__who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.review__ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  flex: none;
}
.review__name { font-weight: 600; font-size: 15px; }
.review__src { font-size: 13px; color: var(--fg-mute); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.review__src:hover { color: var(--gold); border-color: var(--gold-dim); }
.reviews__more { display: none; }
.reviews.is-open .reviews__more { display: flex; }
.reviews-foot {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}
.rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating__val {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: -0.045em;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; color: var(--gold); }
.rating__txt { font-size: 14px; color: var(--fg-mute); line-height: 1.35; }
.rating__txt a { color: var(--fg-dim); }

/* ---------- faq ---------- */

.faq {
  border-top: 1px solid var(--line);
  max-width: 900px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  letter-spacing: -0.03em;
  line-height: 1.35;
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary .ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: transform 0.45s var(--ease), border-color 0.3s var(--ease);
}
.faq summary .ico svg { width: 14px; height: 14px; }
.faq details[open] summary .ico { transform: rotate(45deg); border-color: var(--gold); }
.faq__body {
  padding-bottom: 26px;
  color: var(--fg-dim);
  max-width: 68ch;
  font-size: 16px;
}
.faq__body a { color: var(--gold); }

/* ---------- contacts ---------- */

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
}
.contact-list svg { width: 22px; height: 22px; color: var(--gold-dim); margin-top: 3px; }
.contact-list li > span:last-child { display: block; }
.contact-list .k { display: block; font-size: 13px; color: var(--fg-mute); letter-spacing: 0.01em; }
.contact-list .v { display: block; font-size: 17px; font-weight: 500; margin-top: 2px; }
.contact-list a.v { text-decoration: none; }
.contact-list a.v:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  color: var(--fg-dim);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.social svg { width: 17px; height: 17px; }
.social:hover { color: var(--fg); border-color: var(--line-strong); background: rgba(255, 255, 255, 0.04); }

.map {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  background: var(--panel);
}
.map iframe {
  order: 1;
  flex: 1 1 auto;
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.map__links {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}
.map__links a {
  font-size: 13px;
  color: var(--fg-mute);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.map__links a:hover { color: var(--fg); }

/* ---------- final cta ---------- */

.final {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
}
.final__in {
  position: relative;
  padding-block: clamp(64px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.final h2 { font-size: clamp(1.75rem, 3.5vw, 2.85rem); }
.final p { margin-top: 16px; color: var(--fg-dim); max-width: 48ch; }

/* ---------- footer ---------- */

.footer {
  padding-block: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.footer__in {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer img { width: 132px; }
.footer__col { display: grid; gap: 8px; font-size: 14px; color: var(--fg-mute); }
.footer__col a { text-decoration: none; }
.footer__col a:hover { color: var(--fg); }
.footer__legal {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

.footer__demo {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.footer__demo svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--gold); }

/* ---------- mobile action bar ---------- */

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 13, 15, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}
.dock.is-live { transform: translateY(0); }
.dock .btn { flex: 1; padding-inline: 12px; }
.dock .btn--ghost { flex: 0 0 54px; }

/* ---------- reveal ---------- */

.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .nav { display: none; }
  .section__head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contacts { grid-template-columns: minmax(0, 1fr); }
  .final__in { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .hero .wrap { display: flex; flex-direction: column; }
  .hero__grid { display: contents; }
  .hero__text { order: 1; }
  .pricestrip { order: 2; }
  .hero__media { order: 3; max-width: 460px; margin: clamp(28px, 6vw, 40px) auto 0; aspect-ratio: 4 / 3; }
  .hero__proof { gap: 8px 20px; }
  .about { grid-template-columns: minmax(0, 1fr); }
  .services { grid-template-columns: minmax(0, 1fr); }
  .pricestrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header__phone { display: none; }
  .header__actions .btn { display: none; }
  .dock { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 720px) {
  .pricestrip { grid-template-columns: minmax(0, 1fr); }
  .pricestrip a {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px 20px;
    padding: 15px 18px;
  }
  .pricestrip .label { flex: 1 1 auto; }
  .pricestrip .value { font-size: 1.15rem; }
  .steps li { grid-template-columns: 44px minmax(0, 1fr); }
  .steps li p { grid-column: 2; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header__in { height: 66px; }
  .brand img { width: 128px; }
  .hero { padding-top: 96px; }
  .reviews { grid-template-columns: minmax(0, 1fr); }
  .facts { grid-template-columns: minmax(0, 1fr); }
  .hero__cta .btn { width: 100%; }
  h1 { letter-spacing: -0.038em; }
}

@media (max-width: 370px) {
  .pricestrip a { padding: 14px; gap: 10px; }
  .pricestrip .label { font-size: 14px; }
  .pricestrip .value { font-size: 1.02rem; }
}
