@font-face{font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;src:url(/assets/fonts/inter-cyrillic.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;src:url(/assets/fonts/inter-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:'Oswald';font-style:normal;font-weight:400 700;font-display:swap;src:url(/assets/fonts/oswald-cyrillic.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
@font-face{font-family:'Oswald';font-style:normal;font-weight:400 700;font-display:swap;src:url(/assets/fonts/oswald-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 {
  --ink: #0c0f14;
  --ink-2: #131a24;
  --navy: #0f1c2b;
  --cream: #f5eee4;
  --cream-2: #ece2d3;
  --paper: #fffaf3;
  --red: #d8231a;
  --sun: #ff8a3d;
  --coral: #ff5d4a;
  --gold: #ffc46b;
  --text: #1d1813;
  --muted: #6b6055;
  --line: rgba(29, 24, 19, 0.12);
  --on-dark: #f5eee4;
  --on-dark-muted: rgba(245, 238, 228, 0.68);
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --gutter: clamp(20px, 5vw, 48px);
  --maxw: 1200px;
  --header-h: 76px;
}


*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 6px; }
.ico { width: 24px; height: 24px; flex: none; }
.skip { position: absolute; left: 12px; top: -80px; z-index: 200; padding: 10px 16px; border-radius: 10px; background: #fff; color: #000; text-decoration: none; }
.skip:focus { top: 12px; }
[id] { scroll-margin-top: calc(var(--header-h) + 4px); }
.container { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.container--narrow { max-width: 820px; }


.h1, .h2, .h3, .hero__h1, .nf__h { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.06; }
.h1 { font-size: clamp(2.5rem, 6.4vw, 5rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.h3 { font-size: 1.5rem; }
.h2 + .lead, .h1 + .lead { margin-top: 16px; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55; max-width: 62ch; color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.head { display: grid; gap: 14px; margin-bottom: clamp(36px, 5vw, 60px); }
.head .lead { margin-top: 4px; }


.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6em; padding: 0.85em 1.4em; border: 1.5px solid transparent; border-radius: 999px; font-size: 15px; font-weight: 600; line-height: 1.1; text-decoration: none; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s; }
.btn .ico { width: 1.15em; height: 1.15em; transition: transform 0.25s var(--ease); }
.btn:hover .ico:last-child { transform: translateX(4px); }
.btn--primary { background: linear-gradient(135deg, var(--sun), var(--coral)); color: #1c0d07; box-shadow: 0 12px 32px -12px rgba(255, 93, 74, 0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(255, 93, 74, 0.85); }
.btn--ghost { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); color: #fff; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }
.btn--text { padding-inline: 0.4em; color: inherit; text-decoration: underline; text-underline-offset: 0.3em; text-decoration-color: rgba(255, 255, 255, 0.4); }
.btn--lg { padding: 1.05em 1.7em; font-size: 16px; }
.btn--sm { padding: 0.65em 1.1em; font-size: 14px; }
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }


.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h); color: #fff; transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.site-header[data-scrolled], .page-doc .site-header { background: rgba(12, 15, 20, 0.93); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08); }
.site-header__in { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.brand img { width: 30px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav a:not(.btn) { position: relative; padding: 6px 0; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: rgba(255, 255, 255, 0.82); transition: color 0.2s; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--sun); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav a:not(.btn):hover, .nav a[aria-current] { color: #fff; }
.nav a:not(.btn):hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.header-phone .ico { width: 18px; height: 18px; color: var(--sun); }
.burger { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 12px; background: rgba(255, 255, 255, 0.1); color: #fff; cursor: pointer; place-items: center; }
.burger .ico:last-child, .nav-open .burger .ico:first-child { display: none; }
.nav-open .burger .ico:last-child { display: block; }


.hero { position: relative; isolation: isolate; display: flex; align-items: center; min-height: 100vh; min-height: 100svh; padding: calc(var(--header-h) + 36px) 0 88px; overflow: hidden; color: #fff; background: #080a1f; }
.hero__sky { position: absolute; inset: 0; z-index: -4; background: linear-gradient(180deg, #080a1f 0%, #22124a 24%, #7a2568 48%, #ee5f4a 70%, #ffb35e 87%, #ffd89a 100%); }
.hero__svg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8, 10, 31, 0.78) 0%, rgba(8, 10, 31, 0.38) 46%, rgba(8, 10, 31, 0) 78%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 20vh; z-index: -1; background: linear-gradient(180deg, transparent, rgba(12, 15, 20, 0.9)); }
.parallax { will-change: transform; }
.hero__video { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__video.is-on { opacity: 1; }
.hero.has-video::before { background: linear-gradient(90deg, rgba(8, 10, 31, 0.86) 0%, rgba(8, 10, 31, 0.56) 52%, rgba(8, 10, 31, 0.3) 100%), linear-gradient(180deg, rgba(8, 10, 31, 0.5) 0%, transparent 30%); }
.grain { position: absolute; inset: -12%; z-index: 0; pointer-events: none; opacity: 0.17; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain 1.2s steps(6) infinite; }
@keyframes grain { 0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); } 60% { transform: translate(-2%, -2%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); } }
.hero__in { position: relative; z-index: 2; }
.hero__tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 8px 16px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px; background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(6px); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 93, 74, 0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(255, 93, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 93, 74, 0); } }
.hero__h1 { font-size: clamp(3.4rem, min(12vw, 15vh), 9.5rem); line-height: 0.9; letter-spacing: -0.005em; filter: drop-shadow(0 6px 30px rgba(8, 10, 31, 0.4)); }
.hero__h1 .line { display: block; overflow: hidden; padding-bottom: 0.07em; }
.hero__h1 .line > span { display: inline-block; transform: translateY(108%); animation: rise 1.1s var(--ease) forwards; }
.hero__h1 .line:nth-child(1) > span { animation-delay: 0.1s; }
.hero__h1 .line:nth-child(2) > span { animation-delay: 0.25s; }
.hero__h1 .line:nth-child(3) > span { animation-delay: 0.4s; }
.line--grad > span { background: linear-gradient(90deg, #ffd08a, #ff8a3d 48%, #ff5d4a); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes rise { to { transform: none; } }
.hero__lead, .hero__cta, .hero__chips, .hero__tag { opacity: 0; transform: translateY(16px); animation: fadeup 0.9s var(--ease) forwards; }
.hero__tag { animation-delay: 0.05s; }
.hero__lead { max-width: 34em; margin-top: 20px; font-size: clamp(1.05rem, 1.9vw, 1.35rem); line-height: 1.5; color: rgba(255, 255, 255, 0.92); animation-delay: 0.7s; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; animation-delay: 0.85s; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; animation-delay: 1s; }
.hero__chips li { padding: 7px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
@keyframes fadeup { to { opacity: 1; transform: none; } }
.scroll-hint { position: absolute; left: 50%; bottom: 28px; z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.55); border-radius: 14px; transform: translateX(-50%); }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: scrollhint 1.8s infinite; }
@keyframes scrollhint { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }


.vf { position: absolute; inset: calc(var(--header-h) + 14px) 26px 26px; z-index: 1; pointer-events: none; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); font-variant-numeric: tabular-nums; }
.vf__c { position: absolute; width: 28px; height: 28px; border: 0 solid rgba(255, 255, 255, 0.7); }
.vf__c--tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.vf__c--tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.vf__c--bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.vf__c--br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.vf__rec { position: absolute; top: 14px; right: 44px; display: flex; align-items: center; gap: 10px; }
.vf__rec b { width: 10px; height: 10px; border-radius: 50%; background: #ff3b30; animation: blink 1.2s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.vf__meta { position: absolute; bottom: 14px; right: 44px; }


.marquee { overflow: hidden; background: var(--red); color: #fff; white-space: nowrap; }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; padding: 18px 0; animation: marquee 44s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.marquee__track i { width: 9px; height: 9px; border-radius: 2px; background: rgba(255, 255, 255, 0.65); }
@keyframes marquee { to { transform: translateX(-50%); } }


.section { position: relative; padding: clamp(72px, 10vw, 140px) 0; }
.section--tight { padding-top: 0; }
.section--cream { background: var(--cream); }
.section--split { background: var(--cream-2); }
.section--dark { background: radial-gradient(900px 480px at 85% 0%, rgba(34, 167, 160, 0.16), transparent 60%), var(--navy); color: var(--on-dark); }
.section--ink { background: radial-gradient(900px 420px at 10% 0%, rgba(255, 138, 61, 0.13), transparent 60%), var(--ink); color: var(--on-dark); }
.section--dark .lead, .section--ink .lead { color: var(--on-dark-muted); }
.section--dark .eyebrow, .section--ink .eyebrow { color: var(--gold); }
.section--people { background: linear-gradient(120deg, #4d1c66 0%, #b32d5a 55%, #ff7a3d 100%); color: #fff; overflow: hidden; }
.section--people .lead { color: rgba(255, 255, 255, 0.88); }
.section--people .eyebrow { color: #ffe2b0; }
.section--people .btn--primary { background: #fff; color: #2a0f2c; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.5); }
.section--brief { background: radial-gradient(1000px 520px at 85% 0%, rgba(255, 138, 61, 0.2), transparent 62%), radial-gradient(800px 500px at 0% 100%, rgba(184, 40, 107, 0.16), transparent 60%), var(--ink); color: var(--on-dark); }
.section--brief .lead { color: var(--on-dark-muted); }
.section--brief .eyebrow { color: var(--gold); }
.section__cta { margin-top: 44px; }
.section--doc { padding-top: calc(var(--header-h) + 60px); background: var(--cream); min-height: 80vh; }


.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 34px 30px 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); text-decoration: none; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s; }
a.pillar:hover { transform: translateY(-6px); border-color: rgba(216, 35, 26, 0.35); box-shadow: 0 28px 60px -30px rgba(120, 40, 20, 0.45); }
.pillar__ico { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(135deg, var(--sun), var(--coral)); color: #1c0d07; }
.pillar__ico .ico { width: 30px; height: 30px; }
.pillar h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; text-transform: uppercase; line-height: 1.05; }
.pillar p { color: var(--muted); }
.pillar__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px; font-weight: 600; color: var(--red); }
.pillar__more .ico { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.pillar:hover .pillar__more .ico { transform: translateX(5px); }


.who { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.who__card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px; min-height: 340px; padding: clamp(28px, 4vw, 44px); border-radius: 28px; color: #fff; text-decoration: none; isolation: isolate; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.who__card::before { content: ""; position: absolute; inset: 0; z-index: -1; transition: transform 0.8s var(--ease); }
.who__card--a::before { background: radial-gradient(500px 300px at 90% 0%, rgba(34, 167, 160, 0.5), transparent 65%), linear-gradient(150deg, #1e2f52, #0d1526); }
.who__card--b::before { background: radial-gradient(500px 300px at 90% 0%, rgba(255, 138, 61, 0.45), transparent 65%), linear-gradient(150deg, #57204a, #1c0e1c); }
.who__card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -34px rgba(20, 10, 30, 0.7); }
.who__card:hover::before { transform: scale(1.06); }
.who__k { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.who__card h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.08; text-transform: uppercase; }
.who__card p:not(.who__k) { color: rgba(255, 255, 255, 0.78); }
.who__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-weight: 600; }
.who__more .ico { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.who__card:hover .who__more .ico { transform: translateX(5px); }


.explorer > *, .brief > *, .people > *, .pillars > *, .who > *, .steps > *, .grid-caravan > *, .loc-grid > *, .checks > *, .footer__grid > * { min-width: 0; }


.explorer { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.explorer__stage { position: relative; aspect-ratio: 8 / 5.4; overflow: hidden; border-radius: 28px; background: #0a1220; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8); }
.explorer__stage::after, .loc-card__img::after, .phero__bg::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.explorer__stage::after { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 -80px 100px -60px rgba(0, 0, 0, 0.5); border-radius: inherit; }
.explorer__stage .scene { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity 0.8s var(--ease), transform 1.4s var(--ease); }
.explorer__stage .scene.is-active { opacity: 1; transform: none; }
.scene__svg { width: 100%; height: 100%; }
.explorer__stage .scene img, .loc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tabs { display: flex; gap: 8px; margin-bottom: 26px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: none; padding: 10px 18px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; background: transparent; color: var(--on-dark-muted); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s var(--ease); }
.tab:hover { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.tab.is-active { border-color: transparent; background: linear-gradient(135deg, var(--sun), var(--coral)); color: #1c0d07; }
.panel h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; text-transform: uppercase; line-height: 1.05; }
.panel p { color: var(--on-dark-muted); }
.panel + .panel { margin-top: 28px; }
.js .panel { display: none; }
.js .panel.is-active { display: block; animation: fadeup 0.6s var(--ease); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags li { padding: 6px 13px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; font-size: 13px; color: rgba(255, 255, 255, 0.85); }
.note { margin-top: 26px; padding: 16px 18px; border-left: 3px solid var(--sun); border-radius: 0 12px 12px 0; background: rgba(255, 255, 255, 0.05); font-size: 14.5px; color: var(--on-dark-muted); }
.explorer__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }


.grid-caravan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cv { display: flex; flex-direction: column; gap: 10px; padding: 28px 26px; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 22px; background: rgba(255, 255, 255, 0.04); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.cv:hover { transform: translateY(-5px); border-color: rgba(255, 138, 61, 0.6); background: rgba(255, 138, 61, 0.07); }
.cv__ico { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 6px; border-radius: 16px; background: rgba(255, 138, 61, 0.14); color: var(--sun); }
.cv__ico .ico { width: 30px; height: 30px; }
.cv h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
.cv p { font-size: 15.5px; color: var(--on-dark-muted); }
.cv:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; column-gap: 26px; row-gap: 6px; align-items: center; }
.cv:last-child .cv__ico { grid-row: 1 / 3; margin: 0; }
.cv:last-child p { max-width: 80ch; }


.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: s; }
.step { position: relative; padding-top: 22px; border-top: 2px solid var(--line); }
.step::before { content: ""; position: absolute; left: 0; top: -2px; width: 56px; height: 2px; background: var(--red); }
.step__n { display: block; margin-bottom: 8px; font-family: var(--font-display); font-size: 4.4rem; font-weight: 600; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--red); }
.step h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; }
.step p { color: var(--muted); font-size: 16px; }
.steps--dark .step, .section--ink .step { border-top-color: rgba(255, 255, 255, 0.16); }
.section--ink .step p { color: var(--on-dark-muted); }
.section--ink .step__n { -webkit-text-stroke-color: var(--sun); }
.section--ink .step::before { background: var(--sun); }


.people { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.people .lead { margin: 16px 0 28px; }
.chips-big { display: flex; flex-wrap: wrap; gap: 12px; }
.chips-big li { padding: 12px 22px; border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 999px; background: rgba(255, 255, 255, 0.13); backdrop-filter: blur(6px); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }


.reel { position: relative; aspect-ratio: 16 / 9; margin-bottom: 36px; overflow: hidden; border-radius: 24px; background: #000; }
.reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.works { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: 22px; }
.work { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.work:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -34px rgba(60, 30, 10, 0.5); }
.work--feature { grid-row: span 2; grid-template-rows: 1fr auto; }
.work:not(.work--feature) { grid-column: 2; grid-template-columns: 1.1fr 1fr; }
.work__m { position: relative; overflow: hidden; background: #0c0f14; min-height: 220px; }
.work__m img, .work__m video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work--feature .work__m { min-height: 0; aspect-ratio: 3 / 4; }
.work__play { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 76px; height: 76px; margin: -38px 0 0 -38px; padding: 0; border: 0; border-radius: 50%; background: linear-gradient(135deg, var(--sun), var(--coral)); color: #1c0d07; cursor: pointer; box-shadow: 0 14px 40px -8px rgba(255, 93, 74, 0.7); transition: transform 0.3s var(--ease); }
.work__play:hover { transform: scale(1.08); }
.work__play .ico { width: 30px; height: 30px; margin-left: 3px; }
.work__b { align-self: center; padding: 24px 26px; }
.work__k { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.work h3 { margin: 6px 0 8px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; line-height: 1.1; text-transform: uppercase; }
.work__b p:last-child { color: var(--muted); font-size: 16px; }
.gallery { columns: 3; column-gap: 14px; }
.shot { position: relative; display: block; width: 100%; margin: 0 0 14px; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: #111; cursor: zoom-in; break-inside: avoid; }
.shot img { width: 100%; height: auto; transition: transform 0.9s var(--ease), filter 0.4s; }
.shot:hover img { transform: scale(1.05); filter: brightness(1.08); }
.lightbox { display: none; width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox[open] { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 24px; }
.lightbox::backdrop { background: rgba(6, 8, 12, 0.94); }
.lightbox img { justify-self: center; max-width: 100%; max-height: calc(100vh - 48px); width: auto; height: auto; border-radius: 12px; object-fit: contain; }
.lightbox__close, .lightbox__nav { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff; cursor: pointer; transition: background 0.2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.lightbox__nav--prev .ico { transform: rotate(180deg); }
body:has(dialog[open]) { overflow: hidden; }
.figs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fig img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; border-radius: 20px; }
.fig figcaption { margin-top: 10px; font-size: 14.5px; color: var(--muted); }


.section--tight-y { padding: clamp(40px, 6vw, 72px) 0; }
.member { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); max-width: 900px; margin-inline: auto; padding: clamp(20px, 3vw, 32px); border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 24px 60px -40px rgba(60, 30, 10, 0.45); }
.member__logo { flex: none; width: clamp(96px, 16vw, 140px); }
.member__logo img { width: 100%; height: auto; border-radius: 50%; }
.member__k { margin-bottom: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.member h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 600; line-height: 1.15; text-transform: uppercase; }
.member__b p:not(.member__k) { margin-bottom: 14px; color: var(--muted); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(12, 15, 20, 0.7); }
.footer__member { margin-top: 12px; font-size: 14px; }
.footer__member a { text-decoration: underline; text-underline-offset: 3px; }
.footer__member a:hover { color: var(--sun); }


.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-size: 1.15rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); transition: background 0.3s, transform 0.4s var(--ease); }
.faq__item summary i::before, .faq__item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--text); transition: transform 0.4s var(--ease); }
.faq__item summary i::after { transform: rotate(90deg); }
.faq__item[open] summary i { background: var(--sun); transform: rotate(180deg); }
.faq__item[open] summary i::after { transform: rotate(0); }
.faq__a { padding: 0 60px 24px 0; color: var(--muted); animation: fadeup 0.4s var(--ease); }


.brief { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 84px); align-items: start; }
.brief__intro .lead { margin: 16px 0 34px; }
.contact-list { display: grid; gap: 18px; }
.contact-list a, .contact-list__static { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.contact-list .ico { box-sizing: content-box; padding: 13px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: var(--sun); transition: background 0.3s, color 0.3s; }
.contact-list a:hover .ico { background: var(--sun); color: #1c0d07; }
.contact-list b { display: block; font-size: 1.1rem; }
.contact-list small { display: block; color: var(--on-dark-muted); font-size: 14px; }
.brief__card { padding: clamp(24px, 3.4vw, 40px); border-radius: 28px; background: var(--paper); color: var(--text); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.7); }
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; }
.field > span { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--muted); }
.field i { color: var(--red); font-style: normal; }
.field input, .field select, .field textarea { width: 100%; padding: 0.9em 1em; border: 1.5px solid #ddd2c3; border-radius: 12px; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sun); box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.22); }
.field .is-invalid, .check .is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(216, 35, 26, 0.12); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); cursor: pointer; }
.check input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); }
.check a { color: var(--text); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { justify-self: start; }
.form__status { min-height: 1.5em; font-size: 15px; font-weight: 500; }
.form__status.is-ok { color: #157a3e; }
.form__status.is-err { color: var(--red); }
.form__status a { color: inherit; font-weight: 700; }


.site-footer { background: #080a0e; color: var(--on-dark-muted); font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.footer__brand p { max-width: 36ch; margin-top: 16px; }
.footer__h { margin-bottom: 14px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.footer__list { display: grid; gap: 8px; }
.footer__list a { text-decoration: none; transition: color 0.2s; }
.footer__list a:hover { color: var(--sun); }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 13.5px; }
.footer__bar a { text-decoration: underline; text-underline-offset: 3px; }


.dock { display: none; }
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; max-width: 760px; margin-inline: auto; padding: 16px 20px; border-radius: 18px; background: rgba(12, 15, 20, 0.96); color: var(--on-dark); font-size: 14px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.consent[hidden] { display: none; }
.consent p { flex: 1 1 320px; }
.consent a { color: var(--gold); }
.consent div { display: flex; gap: 8px; }


.phero { position: relative; isolation: isolate; overflow: hidden; padding: calc(var(--header-h) + 64px) 0 84px; min-height: 58vh; color: #fff; display: flex; align-items: flex-end; background: #0c0f14; }
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero__bg::after { background: linear-gradient(90deg, rgba(8, 10, 25, 0.86), rgba(8, 10, 25, 0.4) 62%, rgba(8, 10, 25, 0.2)), linear-gradient(180deg, transparent 55%, #0c0f14); }
.phero .grain { z-index: -1; }
.phero__in { position: relative; }
.phero .lead { margin-top: 20px; color: rgba(255, 255, 255, 0.88); }
.phero .eyebrow { color: var(--gold); }
.crumbs { display: flex; gap: 10px; margin-bottom: 26px; font-size: 13px; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.7); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checks li { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.checks .ico { margin-top: 1px; color: var(--red); }
.section--dark .checks li, .section--ink .checks li { border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05); }
.section--dark .checks .ico, .section--ink .checks .ico { color: var(--sun); }
.callout { display: flex; align-items: center; gap: 24px; padding: clamp(24px, 3.4vw, 40px); border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, #fff, #fff2df); }
.callout__ico { display: grid; flex: none; place-items: center; width: 68px; height: 68px; border-radius: 20px; background: linear-gradient(135deg, var(--sun), var(--coral)); color: #1c0d07; }
.callout__ico .ico { width: 32px; height: 32px; }
.callout p { margin-top: 6px; color: var(--muted); max-width: 60ch; }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.loc-card { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 24px; background: rgba(255, 255, 255, 0.04); }
.loc-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.loc-card__b { padding: 24px; }
.loc-card h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; }
.loc-card p { font-size: 15.5px; color: var(--on-dark-muted); }
.doc { color: var(--text); }
.h1--doc { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.doc__date { margin: 12px 0 30px; color: var(--muted); }
.doc h2 { margin: 34px 0 10px; font-size: 1.35rem; font-weight: 700; }
.doc p { margin-bottom: 12px; max-width: 70ch; }
.nf { position: relative; isolation: isolate; display: grid; place-items: center; min-height: 100svh; padding: 120px 0; overflow: hidden; color: #fff; text-align: center; background: radial-gradient(800px 500px at 50% 100%, rgba(255, 138, 61, 0.35), transparent 65%), linear-gradient(180deg, #0a0d22, #1a0f3a 60%, #4a1a5a); }
.nf__in { display: grid; justify-items: center; gap: 18px; }
.nf__h { font-size: clamp(3.4rem, 12vw, 9rem); line-height: 0.95; }
.nf .lead { color: rgba(255, 255, 255, 0.85); }
.nf .eyebrow { color: var(--gold); }
.nf .hero__cta { justify-content: center; opacity: 1; transform: none; animation: none; }


.wave { animation: drift 9s linear infinite; }
.wave.w2 { animation-duration: 13s; animation-direction: reverse; }
.wave.w3 { animation-duration: 17s; }
@keyframes drift { to { transform: translateX(-100px); } }
.mist { animation: mist 22s ease-in-out infinite alternate; }
.mist.m2 { animation-duration: 30s; animation-direction: alternate-reverse; }
@keyframes mist { from { transform: translateX(-30px); } to { transform: translateX(50px); } }
.trail { animation: trail 5s linear infinite; }
.trail.t2 { animation-duration: 7.5s; animation-delay: -2s; }
@keyframes trail { to { transform: translateX(1100px); } }
.dust { animation: floaty 8s ease-in-out infinite; }
.dust.d1 { animation-delay: -2s; } .dust.d2 { animation-delay: -4s; } .dust.d3 { animation-delay: -6s; }
@keyframes floaty { 50% { transform: translate(8px, -14px); } }
.fall { animation: fall 1.4s linear infinite; }
.fall.f1 { animation-duration: 1.1s; } .fall.f2 { animation-duration: 1.7s; }
@keyframes fall { to { stroke-dashoffset: -52; } }
.ripple { transform-box: fill-box; transform-origin: center; animation: ripple 3.2s ease-out infinite; }
.ripple.r2 { animation-delay: -1.6s; }
@keyframes ripple { from { transform: scale(0.4); opacity: 0.9; } to { transform: scale(2.4); opacity: 0; } }
.star { animation: twinkle 4s ease-in-out infinite; }
.star.s1 { animation-delay: -1.3s; } .star.s2 { animation-delay: -2.6s; }
@keyframes twinkle { 50% { opacity: 0.12; } }


.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js [data-reveal].is-in, .nojs [data-reveal] { opacity: 1; transform: none; }
.js [data-reveal-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal-delay="3"] { transition-delay: 0.24s; }


@media (max-width: 1180px) { .header-phone { display: none; } }
@media (max-width: 960px) {
  .burger { display: grid; margin-left: auto; }
  .nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; margin: 0; padding: 96px var(--gutter) 40px; background: rgba(10, 12, 18, 0.98); visibility: hidden; transform: translateY(-8%); opacity: 0; transition: opacity 0.35s var(--ease), transform 0.5s var(--ease), visibility 0s 0.5s; }
  .nav-open .nav { visibility: visible; transform: none; opacity: 1; transition-delay: 0s; }
  .nav a:not(.btn) { font-family: var(--font-display); font-size: 2.3rem; font-weight: 500; letter-spacing: 0.03em; }
  .nav__cta { margin-top: 22px; }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
  .explorer, .brief, .people { grid-template-columns: 1fr; }
  .pillars, .who, .loc-grid, .works, .figs { grid-template-columns: 1fr; }
  .work--feature { grid-row: auto; }
  .work:not(.work--feature) { grid-column: 1; }
  .gallery { columns: 2; }
  .grid-caravan { grid-template-columns: repeat(2, 1fr); }
  .cv:last-child { grid-column: auto; display: flex; }
  .cv:last-child .cv__ico { margin-bottom: 6px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .who__card { min-height: 280px; }
}
@media (max-width: 860px) {
  body { padding-bottom: 76px; }
  .dock { position: fixed; inset: auto 0 0 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(12, 15, 20, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .dock__btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 8px; border-radius: 14px; background: rgba(255, 255, 255, 0.09); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; }
  .dock__btn .ico { width: 20px; height: 20px; }
  .dock__btn--primary { background: linear-gradient(135deg, var(--sun), var(--coral)); color: #1c0d07; }
  .consent { bottom: 92px; }
  .vf__meta, .vf__rec { right: 32px; }
  .checks { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .member { flex-direction: column; align-items: flex-start; }
  .work:not(.work--feature) { grid-template-columns: 1fr; }
  .work__m { min-height: 0; aspect-ratio: 16 / 10; }
  .work--feature .work__m { aspect-ratio: 3 / 4; }
  .gallery { column-gap: 10px; }
  .shot { margin-bottom: 10px; border-radius: 14px; }
  .lightbox[open] { grid-template-columns: 1fr; padding: 12px; }
  .lightbox__nav { position: absolute; bottom: 18px; z-index: 2; }
  .lightbox__nav--prev { left: 16px; }
  .lightbox__nav:not(.lightbox__nav--prev) { right: 16px; }
  .hero { padding-bottom: 96px; }
  .vf { inset: calc(var(--header-h) + 8px) 14px 14px; }
  .vf__meta { display: none; }
  .vf__rec { right: 30px; }
  .scroll-hint { display: none; }
  .hero__cta .btn { width: 100%; }
  .grid-caravan, .steps, .form__row { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
  .faq__a { padding-right: 0; }
  .brief__card { border-radius: 22px; }
  .form .btn { justify-self: stretch; }
  .footer__grid { grid-template-columns: 1fr; }
  .marquee__track span { font-size: 1.2rem; }
}

@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; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__h1 .line > span, .hero__lead, .hero__cta, .hero__chips, .hero__tag { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
