:root {
  --bg: #0A0B0A;
  --bg-2: #111311;
  --surface: #161916;
  --line: rgba(255, 255, 255, .09);
  --text: #F2F4F1;
  --muted: #9BA39A;
  --green: #6CC04A;
  --green-hi: #84D65F;
  --green-deep: #2E5A1F;
  --radius: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --head: "Unbounded", "Arial Black", system-ui, sans-serif;
  --body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--head); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
svg { flex: none; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
::selection { background: var(--green); color: var(--bg); }

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--green); color: var(--bg); padding: 8px 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  font: 600 13px/1 var(--body); letter-spacing: .16em; text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.accent { color: var(--green); }
.h2 { font-size: clamp(26px, 4vw, 52px); margin-bottom: 24px; max-width: 18ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 28px;
  font: 700 15px/1 var(--body); letter-spacing: .02em;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--green); color: #0A0B0A; }
.btn--primary:hover { background: var(--green-hi); }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .28); color: var(--text); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* Header */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { background: rgba(10, 11, 10, .88); backdrop-filter: blur(14px); border-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font: 800 17px/1 var(--head); letter-spacing: .02em; }
.brand img { width: 40px; height: auto; }
.brand--lg { font-size: 22px; }
.brand--lg img { width: 52px; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s; position: relative; }
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--green); }
.header__cta { display: flex; align-items: center; gap: 20px; }
.header__phone { font-weight: 700; font-size: 15px; white-space: nowrap; }
.header__phone:hover { color: var(--green); }
.burger { display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); transition: transform .25s var(--ease), top .25s var(--ease); }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 140px 0 72px; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 14s var(--ease) forwards; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,11,10,.94) 0%, rgba(10,11,10,.72) 45%, rgba(10,11,10,.25) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 35%);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bars { position: absolute; right: var(--gutter); top: 50%; translate: 0 -50%; display: flex; align-items: center; gap: 14px; opacity: .9; z-index: -1; }
.hero__bars i { display: block; width: 14px; background: var(--green); animation: barGrow 1.2s var(--ease) both; }
.hero__bars i:nth-child(1), .hero__bars i:nth-child(5) { height: 140px; }
.hero__bars i:nth-child(2), .hero__bars i:nth-child(4) { height: 190px; }
.hero__bars i:nth-child(3) { width: 72px; height: 240px; background: none; border: 16px solid var(--green); }
.hero__bars i:nth-child(2) { animation-delay: .1s; } .hero__bars i:nth-child(3) { animation-delay: .2s; }
.hero__bars i:nth-child(4) { animation-delay: .3s; } .hero__bars i:nth-child(5) { animation-delay: .4s; }
@keyframes barGrow { from { transform: scaleY(0); opacity: 0; } }
.hero__content { position: relative; }
.hero__title { font-size: clamp(30px, 7.4vw, 104px); font-weight: 800; line-height: .98; letter-spacing: -.035em; margin-bottom: 28px; }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: #C9CFC7; max-width: 560px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); max-width: 780px; }
.hero__facts li { flex: 1 1 200px; padding: 22px 24px 0 0; }
.hero__facts b { display: block; font: 700 22px/1.2 var(--head); color: var(--green); margin-bottom: 4px; }
.hero__facts span { font-size: 14px; color: var(--muted); }
.hero__scroll { position: absolute; right: var(--gutter); bottom: 40px; width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--green); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

/* Preloader: логотип по центру, затем шторка уезжает вверх */
.preloader { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: var(--bg); animation: plOut .9s cubic-bezier(.76, 0, .24, 1) 1.6s forwards; }
.preloader::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--green); }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; animation: plInner .9s cubic-bezier(.76, 0, .24, 1) 1.6s forwards; }
.preloader__logo { width: clamp(96px, 14vw, 150px); height: auto; overflow: visible; }
.preloader__logo > * { transform-box: fill-box; transform-origin: 50% 100%; animation: plBar .7s cubic-bezier(.2, .7, .2, 1) both; }
.preloader__logo > :nth-child(1) { animation-delay: .05s; }
.preloader__logo > :nth-child(2) { animation-delay: .15s; }
.preloader__logo > :nth-child(3) { animation-delay: .25s; }
.preloader__logo > :nth-child(4) { animation-delay: .35s; }
.preloader__logo > :nth-child(5) { animation-delay: .45s; }
.preloader__name { font: 800 clamp(20px, 2.6vw, 30px)/1 var(--head); letter-spacing: .18em; color: var(--text); animation: plName .8s var(--ease) .55s both; }
.preloader__line { width: clamp(120px, 16vw, 180px); height: 2px; background: rgba(255,255,255,.12); position: relative; overflow: hidden; }
.preloader__line::after { content: ""; position: absolute; inset: 0; background: var(--green); transform-origin: left; animation: plLine 1.1s cubic-bezier(.65, 0, .35, 1) .3s both; }
@keyframes plBar { from { transform: scaleY(0); opacity: 0; } }
@keyframes plName { from { opacity: 0; letter-spacing: .5em; } }
@keyframes plLine { from { transform: scaleX(0); } }
@keyframes plInner { to { transform: translateY(-40px); opacity: 0; } }
@keyframes plOut { to { transform: translateY(-100%); visibility: hidden; } }

/* Hero стартует, когда шторка уходит */
.hero__media img { animation-delay: 1.6s; }
.hero__bars i:nth-child(1) { animation-delay: 1.9s; }
.hero__bars i:nth-child(2) { animation-delay: 2s; }
.hero__bars i:nth-child(3) { animation-delay: 2.1s; }
.hero__bars i:nth-child(4) { animation-delay: 2.2s; }
.hero__bars i:nth-child(5) { animation-delay: 2.3s; }
.hero .reveal { transition-duration: 1s; }
.hero .reveal:nth-child(1) { transition-delay: 1.9s; }
.hero .reveal:nth-child(2) { transition-delay: 2s; }
.hero .reveal:nth-child(3) { transition-delay: 2.1s; }
.hero .reveal:nth-child(4) { transition-delay: 2.2s; }
.hero .reveal:nth-child(5) { transition-delay: 2.3s; }

/* Sections */
.section { padding-block: clamp(80px, 11vw, 150px); }
.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section__head--row .h2 { margin-bottom: 0; }
.section__lead { color: var(--muted); max-width: 620px; font-size: 18px; }

/* About */
.about__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.about .h2 { max-width: none; }
.about__text > p { color: #C4CAC2; max-width: 620px; }
.about__points { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--line); }
.about__points div { display: flex; gap: 24px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.about__points b { font: 700 14px/1 var(--head); color: var(--green); }
.about__points span { font-weight: 600; }
.about__media { padding: 0 24px 24px 0; }
.about__frame { position: relative; isolation: isolate; }
.about__frame::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 2px solid var(--green); z-index: -1; pointer-events: none; }
.about__frame img { width: 100%; aspect-ratio: 845 / 626; object-fit: cover; }

/* Products */
.products { background: var(--bg-2); }
.cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card { position: relative; overflow: hidden; min-height: 420px; grid-column: span 2; display: flex; align-items: flex-end; background: var(--surface); isolation: isolate; }
.card--xl { grid-column: span 4; grid-row: span 2; min-height: 600px; }
.card:nth-child(4), .card:nth-child(5) { grid-column: span 3; min-height: 360px; }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease), filter .5s var(--ease); filter: grayscale(.35) brightness(.8); }
.card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,11,10,.95) 0%, rgba(10,11,10,.55) 45%, rgba(10,11,10,.05) 100%); }
.card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--green); transition: width .5s var(--ease); }
.card:hover img { transform: scale(1.06); filter: grayscale(0) brightness(.9); }
.card:hover::after { width: 100%; }
.card__body { padding: clamp(22px, 2.6vw, 36px); }
.card__num { display: block; font: 700 13px/1 var(--head); color: var(--green); margin-bottom: 14px; }
.card h3 { font-size: clamp(20px, 1.9vw, 26px); margin-bottom: 12px; }
.card--xl h3 { font-size: clamp(26px, 3vw, 40px); }
.card p { color: #C4CAC2; font-size: 15px; max-width: 460px; margin-bottom: 18px; }
.card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--green); }
.card__link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; align-items: center; }
.tags::before { content: "Также:"; color: var(--muted); font-size: 14px; margin-right: 6px; }
.tags li { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 600; }

/* Prices */
.prices__note { color: var(--muted); max-width: 420px; margin: 0; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tab { min-height: 44px; padding: 0 20px; font: 600 14px/1 var(--body); color: var(--text); background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.tab:hover { border-color: var(--green); }
.tab.is-active { background: var(--green); border-color: var(--green); color: #0A0B0A; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.pcard { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.pcard:hover { border-color: rgba(108,192,74,.5); transform: translateY(-3px); }
.pcard[hidden] { display: none; }
.pcard__badge { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 10px; background: var(--green); color: #0A0B0A; font: 700 11px/1 var(--body); letter-spacing: .08em; text-transform: uppercase; }
.pcard__draw { background: #F1F3F1; padding: 18px 14px 8px; }
.pcard__draw svg { display: block; width: 100%; height: auto; }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.pcard h3 { font-size: 17px; line-height: 1.3; margin-bottom: 6px; }
.pcard__size { color: var(--green); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.pcard__specs { display: grid; gap: 4px; margin-bottom: 20px; }
.pcard__specs li { color: var(--muted); font-size: 14px; padding-left: 14px; position: relative; }
.pcard__specs li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 2px; background: var(--green); }
.pcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--line); }
.pcard__price { font: 700 20px/1.1 var(--head); }
.pcard__price.is-request { font-size: 15px; color: var(--muted); font-family: var(--body); }

/* Audience */
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aud { background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.aud img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.aud__body { padding: clamp(24px, 3vw, 44px); }
.aud h3 { font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 24px; }
.checks { display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 32px; color: #C4CAC2; }
.checks li::before { content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; background: var(--green-deep); border-radius: 2px; }
.checks li::after { content: ""; position: absolute; left: 5px; top: calc(.35em + 4px); width: 8px; height: 5px; border-left: 2px solid var(--green-hi); border-bottom: 2px solid var(--green-hi); transform: rotate(-45deg); }

/* Advantages */
.advantages { background: var(--bg-2); }
.adv { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.adv__item { padding: clamp(28px, 3vw, 44px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s var(--ease); }
.adv__item:hover { background: var(--surface); }
.adv__item svg { width: 40px; height: 40px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 32px; }
.adv__item h3 { font-size: 19px; margin-bottom: 14px; }
.adv__item p { color: var(--muted); font-size: 15px; margin: 0; }

/* Process */
.process__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 110px); }
.process__intro { position: sticky; top: 110px; align-self: start; }
.process__media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; filter: grayscale(.4); }
.steps { counter-reset: s; }
.steps li { display: grid; grid-template-columns: 88px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { border-top: 1px solid var(--line); }
.steps span { font: 800 40px/1 var(--head); color: transparent; -webkit-text-stroke: 1px var(--green); }
.steps h3 { font-size: 22px; margin-bottom: 8px; }
.steps p { color: var(--muted); margin: 0; }

/* Works */
.gallery { columns: 3; column-gap: 16px; }
.g { break-inside: avoid; margin-bottom: 16px; overflow: hidden; background: var(--surface); }
.g[hidden] { display: none; }
.g__btn { position: relative; display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden; }
.g img { width: 100%; height: auto; transition: transform .8s var(--ease), filter .5s var(--ease); }
.g figcaption { position: absolute; left: 12px; bottom: 12px; padding: 7px 12px; background: rgba(10,11,10,.82); color: var(--text); font: 600 12px/1 var(--body); letter-spacing: .06em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.g__btn:hover img { transform: scale(1.04); }
.g__btn:hover figcaption, .g__btn:focus-visible figcaption { opacity: 1; transform: none; }
.gallery__more { display: flex; justify-content: center; margin-top: 24px; }
.gallery__more[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; gap: 12px; padding: calc(56px + env(safe-area-inset-top, 0px)) 16px calc(24px + env(safe-area-inset-bottom, 0px)); background: rgba(5,6,5,.94); }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1100px, 100%); display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-height: 80vh; width: auto; max-width: 100%; object-fit: contain; }
.lightbox figcaption { margin-top: 14px; color: var(--muted); font-size: 14px; text-align: center; }
.lightbox__close { position: absolute; top: calc(12px + env(safe-area-inset-top, 0px)); right: 16px; width: 44px; height: 44px; font-size: 32px; line-height: 1; color: var(--text); background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.lightbox__nav { flex: none; width: 48px; height: 48px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.lightbox__nav:hover, .lightbox__close:hover { border-color: var(--green); }
.lightbox__nav svg { width: 22px; height: 22px; fill: none; stroke: var(--text); stroke-width: 2; }

/* Request */
.request { background: radial-gradient(1000px 500px at 85% 20%, rgba(108,192,74,.14), transparent 70%), var(--bg-2); border-top: 1px solid var(--line); }
.request__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.request__text > p { color: #C4CAC2; font-size: 18px; max-width: 520px; }
.request__text .checks { margin-top: 28px; }
.form { position: relative; background: var(--surface); border: 1px solid var(--line); padding: clamp(24px, 3.4vw, 48px); display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.field input, .field select {
  width: 100%; min-height: 54px; padding: 0 16px;
  font: 500 16px/1 var(--body); color: var(--text);
  background: var(--bg); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  transition: border-color .2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; cursor: pointer; }
.field input::placeholder { color: #5E665D; }
.field input:hover, .field select:hover { border-color: rgba(255,255,255,.28); }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); }
.field input[aria-invalid="true"] { border-color: #E5484D; }
.field__error { color: #FF7A7E; font-size: 13px; }
.form__note { font-size: 12px; color: #8A928A; margin: 0; }
.form__note a { color: var(--muted); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn:disabled { opacity: .6; cursor: progress; }
.footer__bottom a:hover { color: var(--green); }
.form__success { position: absolute; inset: 0; background: var(--surface); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: inherit; }
.form__success svg { width: 56px; height: 56px; padding: 12px; border-radius: 50%; background: var(--green); fill: none; stroke: var(--bg); stroke-width: 2.6; margin-bottom: 20px; }
.form__success h3 { font-size: 26px; margin-bottom: 12px; }
.form__success p { color: var(--muted); }
.form__success[hidden] { display: none; }

/* Contacts */
.contacts__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.contacts__list { margin: 8px 0 32px; border-top: 1px solid var(--line); }
.contacts__list > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contacts__list dt { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contacts__list dd { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; font-size: 18px; font-weight: 600; }
.contacts__phone { font: 700 clamp(20px, 2.2vw, 26px)/1.2 var(--head); }
.contacts__phone:hover { color: var(--green); }
.contacts__wa { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border-radius: 999px; background: rgba(108,192,74,.14); color: var(--green); font-size: 14px; font-weight: 700; }
.contacts__wa:hover { background: rgba(108,192,74,.24); }
.contacts__wa svg { width: 18px; height: 18px; fill: currentColor; }
.contacts__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contacts__hours { gap: 6px 20px !important; }
.contacts__off { color: var(--muted); font-weight: 500; }
.contacts__ig { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s; }
.contacts__ig:hover { border-color: var(--green); }
.contacts__ig svg { width: 20px; height: 20px; color: var(--green); fill: var(--green); }
.contacts__ig span { display: grid; gap: 2px; }
.contacts__ig b { font-weight: 700; }
.contacts__ig small { color: var(--muted); font-size: 13px; }
.footer__legal { padding-top: 12px; font-size: 12px; color: #8A928A; }
.contacts__map { min-height: 420px; border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.contacts__map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.2); }

/* Footer */
.footer { padding: 72px 0 calc(28px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { color: var(--muted); max-width: 340px; margin-top: 20px; }
.footer h3 { font: 600 13px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__grid a:hover { color: var(--green); }
.footer__wa { color: var(--green); font-weight: 600; }
.footer__grid p { margin-bottom: 10px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: #8A928A; }

/* Служебные страницы: политика, 404 */
.doc, .notfound { padding-block: 48px 96px; }
.doc__inner { max-width: 820px; }
.doc .brand, .notfound .brand { margin-bottom: 56px; }
.doc h2 { font-size: 20px; margin: 40px 0 14px; }
.doc p { color: #C4CAC2; }
.doc__meta { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.doc a:not(.btn), .notfound__text a { color: var(--green); }
.notfound { min-height: 100svh; display: flex; align-items: center; }
.notfound__code { font: 800 clamp(96px, 18vw, 200px)/1 var(--head); color: transparent; -webkit-text-stroke: 2px var(--green); margin: 0 0 12px; }
.notfound__text { color: var(--muted); max-width: 520px; margin-bottom: 32px; }

/* WhatsApp float */
.wa-float { position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(108,192,74,.35); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #0A0B0A; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1100px) {
  .nav { gap: 20px; }
  .header__phone { display: none; }
  .hero__bars { opacity: .25; }
  .adv { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto; margin: 0;
    flex-direction: column; gap: 0; padding: 8px var(--gutter) 24px;
    background: rgba(10,11,10,.97); border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav a { padding: 16px 0; font-size: 18px; color: var(--text); border-bottom: 1px solid var(--line); }
  .nav a.is-active::after { display: none; }
  .header__cta { margin-left: auto; }
  .about__grid, .process__grid, .request__grid, .audience__grid, .contacts__grid { grid-template-columns: minmax(0, 1fr); }
  .contacts__map, .contacts__map iframe { min-height: 340px; }
  .about__media { max-width: 480px; }
  .process__intro { position: static; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card, .card--xl, .card:nth-child(4), .card:nth-child(5) { grid-column: span 1; grid-row: auto; min-height: 380px; }
  .card--xl { grid-column: span 2; min-height: 460px; }
  .gallery { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__title { font-size: 9vw; }
  .h2 { font-size: 6.6vw; overflow-wrap: break-word; hyphens: auto; }
  .header__inner { height: 64px; gap: 12px; }
  .nav { inset: 64px 0 auto; }
  .brand { font-size: 15px; }
  .brand img { width: 34px; }
  .header__cta .btn--sm { display: none; }
  .hero { padding: 110px 0 56px; }
  .hero::before { background: linear-gradient(0deg, rgba(10,11,10,.97) 20%, rgba(10,11,10,.55) 100%); }
  .hero__bars, .hero__scroll { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__facts li { flex-basis: 100%; padding-top: 16px; }
  .cards { grid-template-columns: 1fr; }
  .card, .card--xl { grid-column: auto; min-height: 340px; }
  .adv { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 56px 1fr; gap: 14px; padding: 24px 0; }
  .steps span { font-size: 28px; }
  .gallery { columns: 1; }
  .lightbox__nav { position: absolute; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .lightbox__nav--prev { left: calc(50% - 60px); }
  .lightbox__nav--next { right: calc(50% - 60px); }
  .lightbox img { max-height: 68vh; }
  .about__media { padding: 0 14px 14px 0; }
  .about__frame::before { inset: 14px -14px -14px 14px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { transform: none; }
}
