/* Alta Pro — plain CSS, no build */

:root {
  --ink: #0b0b0d;
  --ink-soft: #121216;
  --ink-muted: #1a1a1f;
  --line: rgba(255, 255, 255, 0.06);
  --sand: #c9a56a;
  --sand-light: #e0c08a;
  --mist: #e8e4dc;
  --mist-muted: #a8a49c;
  --mist-dim: #6e6a64;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1200px;
  --glow: 0 0 40px rgba(201, 165, 106, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(201, 165, 106, 0.3);
  color: var(--mist);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Typography */
.eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
}

.heading-xl {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.heading-lg {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mist-muted);
}

.text-accent {
  color: var(--sand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: var(--sand);
  color: var(--ink);
  box-shadow: var(--glow);
}

.btn--primary:hover {
  background: var(--sand-light);
  box-shadow: 0 0 80px rgba(201, 165, 106, 0.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(201, 165, 106, 0.4);
  color: var(--sand);
}

.btn--ghost:hover {
  border-color: var(--sand);
  background: rgba(201, 165, 106, 0.1);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 10px;
}

.btn--block {
  width: 100%;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.site-header__bar {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 13, 0.8);
  backdrop-filter: blur(16px);
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.logo:hover .logo__img {
  transform: rotate(6deg);
}

.logo__img--sm {
  width: 36px;
  height: 36px;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 24px;
}

.site-header__phone {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.site-header__phone:hover {
  color: var(--sand);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.socials__btn:hover {
  border-color: rgba(201, 165, 106, 0.5);
  color: var(--sand);
}

.socials__max {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.icon-max,
.icon-telegram {
  display: block;
  flex-shrink: 0;
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--mist);
}

.site-nav {
  display: none;
  border-top: 1px solid var(--line);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist-muted);
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--sand);
}

@media (min-width: 1024px) {
  .site-header__actions {
    display: flex;
  }

  .burger {
    display: none;
  }

  .site-nav {
    display: block;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 96px 24px 40px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__list a {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__phone {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sand);
}

.mobile-menu__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.mobile-menu__socials .btn {
  flex: 1;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Sections */
.section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.section--soft {
  background: var(--ink-soft);
}

.section--page {
  padding-top: 140px;
}

@media (min-width: 768px) {
  .section {
    padding: 112px 0;
  }
}

.section__intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.section__blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(201, 165, 106, 0.05);
  filter: blur(100px);
}

.section__blob--tr {
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  transform: translate(33%, -33%);
}

.section__blob--left {
  top: 50%;
  left: 0;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 112px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__shade--side {
  background: linear-gradient(90deg, var(--ink) 0%, rgba(11, 11, 13, 0.85) 45%, rgba(11, 11, 13, 0.4) 100%);
}

.hero__shade--bottom {
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, transparent 35%, var(--ink) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.hero__spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(201, 165, 106, 0.22) 0%, transparent 70%);
  transition: opacity 0.5s ease;
}

.hero__beam {
  position: absolute;
  top: 0;
  width: 2px;
  pointer-events: none;
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(201, 165, 106, 0.2), transparent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35), 0 0 60px rgba(201, 165, 106, 0.25);
  animation: beam 8s ease-in-out infinite;
}

.hero__beam--1 { left: 18%; height: 70%; }
.hero__beam--2 { left: 42%; top: 8%; height: 55%; animation-delay: 1.5s; animation-duration: 9s; }
.hero__beam--3 { left: 68%; top: 4%; height: 65%; animation-delay: 3s; animation-duration: 7s; }

.hero__glow {
  position: absolute;
  top: 33%;
  left: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(201, 165, 106, 0.2);
  filter: blur(100px);
  pointer-events: none;
  animation: pulseSoft 3s ease-in-out infinite;
}

@keyframes beam {
  0%, 100% { opacity: 0.35; transform: translateX(-8%) skewX(-12deg); }
  50% { opacity: 0.85; transform: translateX(8%) skewX(-12deg); }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 112px);
  padding-bottom: 80px;
}

.hero__lead {
  max-width: 560px;
  margin-top: 24px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .hero__stats {
    gap: 56px;
  }
}

.hero__stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--sand);
}

.hero__stat-label {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--mist-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: var(--mist-muted);
  transition: color 0.3s ease;
}

.hero__scroll:hover {
  color: var(--sand);
}

.hero__scroll span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--sand), transparent);
  animation: pulseSoft 2s ease-in-out infinite;
}

/* Cards */
.cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ink);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  border-color: rgba(201, 165, 106, 0.3);
  box-shadow: var(--glow);
}

.card__num {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: rgba(201, 165, 106, 0.3);
  transition: color 0.4s ease;
}

.card:hover .card__num {
  color: rgba(201, 165, 106, 0.6);
}

.card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist-muted);
}

/* Project */
.project {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .project {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.project__desc {
  margin: 32px 0;
  display: grid;
  gap: 16px;
}

.project__desc p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mist-muted);
}

.project__media {
  position: relative;
}

.project__video-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow);
}

.project__video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(11, 11, 13, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.4s ease;
}

.project__play:hover {
  background: rgba(11, 11, 13, 0.2);
}

.project__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.project__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201, 165, 106, 0.5);
  border-radius: 50%;
  background: rgba(201, 165, 106, 0.9);
  color: var(--ink);
  box-shadow: var(--glow);
  transition: transform 0.3s ease;
}

.project__play:hover .project__play-icon {
  transform: scale(1.05);
}

/* Gallery */
.gallery__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .gallery__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gallery__note {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  color: var(--mist-muted);
}

@media (min-width: 768px) {
  .gallery__note {
    text-align: right;
  }
}

.gallery__marquee {
  overflow: hidden;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gallery__marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 14px 0;
  animation: galleryMarquee 36s linear infinite;
}

.gallery__marquee-track span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist-dim);
  white-space: nowrap;
}

.gallery__marquee-track span::before {
  content: "✦";
  margin-right: 40px;
  color: var(--sand);
  opacity: 0.7;
}

@keyframes galleryMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 170px;
    gap: 16px;
  }
}

.gallery__item {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  background: var(--ink);
  cursor: pointer;
  isolation: isolate;
}

.gallery__item--lg,
.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery__item {
    grid-column: span 2;
  }

  .gallery__item--md {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 4;
    grid-row: span 1;
  }

  .gallery__item--tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item--lg {
    grid-column: span 4;
    grid-row: span 2;
  }
}

@media (min-width: 1024px) {
  .gallery__item {
    grid-column: span 3;
  }

  .gallery__item--md {
    grid-column: span 3;
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 6;
    grid-row: span 1;
  }

  .gallery__item--tall {
    grid-column: span 3;
    grid-row: span 2;
  }

  .gallery__item--lg {
    grid-column: span 6;
    grid-row: span 2;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
  filter: saturate(0.92) contrast(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(11, 11, 13, 0.82) 100%),
    linear-gradient(45deg, rgba(201, 165, 106, 0.08), transparent 45%);
  opacity: 0.55;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.gallery__meta {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery__num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sand);
}

.gallery__tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}

.gallery__action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery__action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 165, 106, 0.55);
  border-radius: 50%;
  color: var(--sand);
  background: rgba(11, 11, 13, 0.45);
  backdrop-filter: blur(6px);
}

.gallery__label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.gallery__frame {
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(201, 165, 106, 0);
  pointer-events: none;
  transition: border-color 0.4s ease, inset 0.4s ease;
}

.gallery__frame::before,
.gallery__frame::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--sand);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.gallery__frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.gallery__item:hover,
.gallery__item:focus-visible {
  border-color: rgba(201, 165, 106, 0.35);
  outline: none;
  z-index: 3;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.12);
  filter: saturate(1.05) contrast(1.08);
}

.gallery__item:hover .gallery__overlay,
.gallery__item:focus-visible .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__meta,
.gallery__item:focus-visible .gallery__meta,
.gallery__item:hover .gallery__action,
.gallery__item:focus-visible .gallery__action {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item:hover .gallery__frame,
.gallery__item:focus-visible .gallery__frame {
  border-color: rgba(201, 165, 106, 0.25);
}

.gallery__item:hover .gallery__frame::before,
.gallery__item:hover .gallery__frame::after,
.gallery__item:focus-visible .gallery__frame::before,
.gallery__item:focus-visible .gallery__frame::after {
  opacity: 1;
}

.gallery__item--lg .gallery__tag,
.gallery__item--wide .gallery__tag {
  font-size: 11px;
}

/* Steps */
.steps {
  display: grid;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps__item {
  padding: 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.4s ease;
}

.steps__item:hover {
  background: rgba(26, 26, 31, 0.4);
}

.steps__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201, 165, 106, 0.2);
  transition: color 0.4s ease;
}

.steps__item:hover .steps__num {
  color: rgba(201, 165, 106, 0.4);
}

.steps__title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.steps__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist-muted);
}

/* FAQ */
.faq {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .faq {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
  }

  .faq__aside {
    position: sticky;
    top: 120px;
  }

  body.admin-bar .faq__aside {
    top: 152px;
  }
}

.faq__aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq__intro .lead {
  margin-top: 20px;
}

.faq__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(201, 165, 106, 0.2);
}

.faq__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.faq__visual:hover .faq__visual-img {
  transform: scale(1.1);
}

.faq__visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11, 11, 13, 0.15) 0%, rgba(11, 11, 13, 0.75) 100%),
    linear-gradient(0deg, rgba(201, 165, 106, 0.12), transparent 50%);
  pointer-events: none;
}

.faq__visual-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq__visual-beams span {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), rgba(201, 165, 106, 0.35), transparent);
  box-shadow: 0 0 18px rgba(201, 165, 106, 0.35);
  transform: skewX(-14deg);
  animation: faqBeam 7s ease-in-out infinite;
}

.faq__visual-beams span:nth-child(1) { left: 28%; animation-delay: 0s; }
.faq__visual-beams span:nth-child(2) { left: 52%; animation-delay: 1.4s; animation-duration: 8.5s; }
.faq__visual-beams span:nth-child(3) { left: 74%; animation-delay: 2.6s; animation-duration: 6.5s; }

@keyframes faqBeam {
  0%, 100% { opacity: 0.25; transform: skewX(-14deg) translateX(-6px); }
  50% { opacity: 0.9; transform: skewX(-14deg) translateX(8px); }
}

.faq__visual-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 165, 106, 0.35);
  pointer-events: none;
}

.faq__visual-frame::before,
.faq__visual-frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--sand);
  border-style: solid;
}

.faq__visual-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.faq__visual-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.faq__facts {
  display: grid;
  gap: 12px;
}

.faq__facts li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.faq__facts li:first-child {
  padding-top: 0;
}

.faq__facts strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.02em;
}

.faq__facts span {
  font-size: 13px;
  color: var(--mist-muted);
}

.faq__cta {
  align-self: flex-start;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--ink);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 165, 106, 0.2);
}

.faq-item__trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--mist);
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .faq-item__trigger span {
    font-size: 16px;
  }
}

.faq-item__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--sand);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist-muted);
}

/* Contacts */
.contacts {
  overflow: hidden;
}

.contacts__bg {
  position: absolute;
  inset: 0;
}

.contacts__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.contacts__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(11, 11, 13, 0.95) 50%, rgba(11, 11, 13, 0.8) 100%);
}

.contacts__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contacts__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contacts__lead {
  max-width: 420px;
  margin-top: 20px;
}

.contacts__info {
  margin-top: 40px;
}

.contacts__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  transition: color 0.3s ease;
}

.contacts__phone:hover {
  color: var(--sand);
}

.contacts__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 165, 106, 0.4);
  border-radius: 50%;
  color: var(--sand);
  transition: background 0.3s ease, color 0.3s ease;
}

.contacts__phone:hover .contacts__phone-icon {
  background: var(--sand);
  color: var(--ink);
}

.contacts__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.lead-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 13, 0.8);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .lead-form {
    padding: 40px;
  }
}

.lead-form__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form__note {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--mist-muted);
}

.lead-form__fields {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist-muted);
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-soft);
  color: var(--mist);
  outline: none;
  transition: border-color 0.3s ease;
}

.field input::placeholder {
  color: var(--mist-dim);
}

.field input:focus {
  border-color: rgba(201, 165, 106, 0.5);
}

.lead-form__legal {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--mist-dim);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.site-footer__phone {
  font-family: var(--font-display);
  font-size: 14px;
  transition: color 0.3s ease;
}

.site-footer__phone:hover {
  color: var(--sand);
}

.site-footer__messenger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.site-footer__messenger:hover {
  color: var(--sand);
}

.site-footer__copy {
  margin: 0;
  font-size: 14px;
  color: var(--mist-dim);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 2px;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--glow);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(201, 165, 106, 0.35);
}

.lightbox__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.lightbox__btn:hover {
  border-color: var(--sand);
  color: var(--sand);
}

.lightbox__btn--close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.lightbox__btn--prev,
.lightbox__btn--next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__btn--prev { left: 12px; }
.lightbox__btn--next { right: 12px; }

@media (min-width: 768px) {
  .lightbox__btn--prev { left: 32px; }
  .lightbox__btn--next { right: 32px; }
}

/* Services */
.services {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.services__item:hover {
  border-color: rgba(201, 165, 106, 0.35);
  box-shadow: var(--glow);
}

.services__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.services__item:hover .services__media img {
  transform: scale(1.08);
}

.services__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.services__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sand);
}

.services__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist-muted);
}

/* Guarantees */
.guarantees {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .guarantees {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
  }
}

.guarantees__grid {
  display: grid;
  gap: 0;
}

@media (min-width: 640px) {
  .guarantees__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.guarantees__item {
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.35s ease;
}

.guarantees__item:hover {
  background: rgba(201, 165, 106, 0.04);
}

.guarantees__index {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(201, 165, 106, 0.25);
  transition: color 0.35s ease;
}

.guarantees__item:hover .guarantees__index {
  color: rgba(201, 165, 106, 0.55);
}

.guarantees__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guarantees__item p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist-muted);
}

/* Reviews */
.reviews {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.reviews__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  transition: border-color 0.35s ease;
}

.reviews__item:hover {
  border-color: rgba(201, 165, 106, 0.3);
}

.reviews__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mist);
}

.reviews__text::before {
  content: "“";
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--sand);
}

.reviews__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.reviews__meta {
  font-size: 13px;
  color: var(--mist-dim);
}

/* Banner CTA */
.banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.banner__bg {
  position: absolute;
  inset: 0;
}

.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.banner__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.7) 55%, rgba(11, 11, 13, 0.55) 100%),
    linear-gradient(0deg, var(--ink), transparent 40%);
}

.banner__beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.banner__beams span {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), rgba(201, 165, 106, 0.25), transparent);
  transform: skewX(-12deg);
  animation: faqBeam 8s ease-in-out infinite;
}

.banner__beams span:nth-child(1) { left: 62%; }
.banner__beams span:nth-child(2) { left: 78%; animation-delay: 2s; }

.banner__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.banner__lead {
  margin-top: 20px;
  max-width: 480px;
}

.banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Content pages */
.content-page {
  max-width: 720px;
}

.content-page__body {
  margin-top: 32px;
  color: var(--mist-muted);
  line-height: 1.7;
}

.content-page__body p {
  margin: 0 0 1em;
}

/* WordPress admin bar — не наезжает на fixed-шапку */
body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .mobile-menu {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .mobile-menu {
    top: 46px;
  }
}

