/* ============================================================
   seoqt — style.css
   Dark, bold, kinetic. Manrope everywhere (latin + cyrillic).
   ============================================================ */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/Manrope-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/Manrope-var-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --bg: #0a0a0c;
  --bg-soft: rgba(16, 16, 22, 0.55);
  --ink: #f2f0ea;
  --muted: rgba(242, 240, 234, 0.6);
  --line: rgba(242, 240, 234, 0.14);
  --accent: #c8ff3e;
  --violet: #6c4dff;
  --teal: #23e6c8;
  --magenta: #ff4dc4;
  --radius: 20px;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-h: 76px;
  --btn-w: 250px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0a0a0c; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:where(:visited) { color: inherit; }
.office__tel:visited, .contact-email__link:visited { color: var(--accent); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 900px; }

/* ---------- Aurora background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
  animation: aurora-hue 26s ease-in-out infinite;
}
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.aurora__blob--1 {
  width: 60vmax; height: 60vmax;
  top: -22vmax; right: -18vmax;
  background: radial-gradient(circle at 35% 35%, var(--violet), transparent 62%);
  opacity: 0.55;
  animation: blob-a 21s ease-in-out infinite alternate;
}
.aurora__blob--2 {
  width: 46vmax; height: 46vmax;
  bottom: -20vmax; left: -14vmax;
  background: radial-gradient(circle at 60% 40%, var(--teal), transparent 62%);
  opacity: 0.34;
  animation: blob-b 26s ease-in-out infinite alternate;
}
.aurora__blob--3 {
  width: 38vmax; height: 38vmax;
  top: 30%; left: 28%;
  background: radial-gradient(circle at 50% 50%, var(--accent), transparent 62%);
  opacity: 0.2;
  animation: blob-c 18s ease-in-out infinite alternate;
}
.aurora__blob--4 {
  width: 42vmax; height: 42vmax;
  bottom: 8%; right: 4%;
  background: radial-gradient(circle at 45% 55%, var(--magenta), transparent 62%);
  opacity: 0.2;
  animation: blob-d 30s ease-in-out infinite alternate;
}
@keyframes aurora-hue {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(38deg); }
}
@keyframes blob-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-14vw, 16vh) scale(1.18); }
}
@keyframes blob-b {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(12vw, -14vh) scale(1.12); }
}
@keyframes blob-c {
  from { transform: translate(0, 0) scale(0.92); }
  to { transform: translate(10vw, 12vh) scale(1.15); }
}
@keyframes blob-d {
  from { transform: translate(0, 0) scale(1.05); }
  to { transform: translate(-12vw, -10vh) scale(0.9); }
}

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -1%); }
  60% { transform: translate(-1%, -2%); }
  80% { transform: translate(1%, 2%); }
}

/* ---------- Split-text helpers (added by main.js) ---------- */
.sw { display: inline-block; }
.line-mask { display: block; overflow: hidden; }
.line { display: block; will-change: transform; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.preloader__logo {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.preloader__logo em, .header__logo em, .footer__wordmark em { font-style: normal; color: var(--accent); }
.preloader__count {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s;
}
body.has-mouse .cursor { opacity: 1; }
.cursor--ring {
  width: 42px; height: 42px;
  background: transparent;
  border: 1.5px solid rgba(200, 255, 62, 0.7);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s, opacity 0.3s;
}
.cursor--ring.is-hover { width: 72px; height: 72px; border-color: rgba(200, 255, 62, 0.35); }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease), border-color 0.4s;
  will-change: transform;
  text-align: center;
}
.btn span { position: relative; z-index: 2; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 1;
}
.btn:hover::after { transform: translateY(0); }
.btn--primary { background: var(--accent); color: #0a0a0c; }
.btn--primary:hover { color: var(--bg); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { color: var(--bg); }
.btn--small { padding: 12px 24px; font-size: 14px; }
.btn--big { padding: 24px 48px; font-size: clamp(17px, 2vw, 22px); }

/* Paired action buttons share one width */
.hero__actions .btn { width: var(--btn-w); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta__actions .btn { width: min(100%, 320px); }

/* ---------- Language switcher ---------- */
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang__item { color: var(--muted); transition: color 0.3s; }
.lang__item:hover { color: var(--ink); }
.lang__item--active { color: var(--accent); pointer-events: none; }
.lang__sep { color: var(--line); }
.lang--menu { font-size: 18px; margin-bottom: 16px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.5s var(--ease), background 0.4s, backdrop-filter 0.4s;
}
.header.is-hidden { transform: translateY(-100%); }
.header.is-scrolled {
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.header__nav { display: flex; gap: 34px; }
.header__nav a {
  font-size: 15px;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.header__nav a:hover { color: var(--ink); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 24px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.header__burger span {
  width: 28px; height: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.header__burger.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.header__burger.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #101016;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__nav { display: flex; flex-direction: column; gap: 8px; }
.menu__link {
  font-size: clamp(38px, 8.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  transition: color 0.3s;
}
.menu__link:hover { color: var(--accent); }
.menu__footer { margin-top: 48px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(44px, 7.6vw, 116px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.hero__title em, .page-hero__title em, .cta__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}
.hero__sub {
  margin-top: 36px;
  max-width: 540px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scrollhint {
  position: absolute;
  bottom: 36px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero__scrollline {
  width: 1px; height: 56px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scrollline::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollline 1.8s var(--ease) infinite;
}
@keyframes scrollline {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(64px, 10vw, 140px)) 0 clamp(48px, 7vw, 100px);
}
.page-hero__title {
  font-size: clamp(40px, 7vw, 104px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.page-hero__intro {
  margin-top: 30px;
  max-width: 620px;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--muted);
}
.contact-email {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-email__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.contact-email__link {
  font-size: clamp(26px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  width: fit-content;
  transition: opacity 0.3s;
}
.contact-email__link:hover { opacity: 0.8; }

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(110px, 16vw, 220px) 0; }
.manifesto__text {
  font-size: clamp(26px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.manifesto__text .w { opacity: 0.15; }

/* ---------- Section head ---------- */
.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.section-head__label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-head__title {
  font-size: clamp(36px, 5.6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

/* ---------- Services (home list) ---------- */
.services { padding: clamp(90px, 12vw, 160px) 0; }
.service { border-top: 1px solid var(--line); }
.service:last-child { border-bottom: 1px solid var(--line); }
.service__link {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(28px, 4vw, 44px) 0;
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.service__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200, 255, 62, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.service__link:hover { padding-left: 18px; }
.service__link:hover::before { opacity: 1; }
.service__num {
  font-size: 15px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.service__title {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  transition: color 0.35s;
}
.service__link:hover .service__title { color: var(--accent); }
.service__desc {
  margin-top: 10px;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}
.service__arrow {
  font-size: 28px;
  justify-self: end;
  transform: translateX(-8px) rotate(45deg);
  opacity: 0.3;
  transition: transform 0.45s var(--ease), opacity 0.35s, color 0.35s;
}
.service__link:hover .service__arrow {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
  color: var(--accent);
}

/* ---------- Approach ---------- */
.approach {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--bg-soft);
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.approach__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  background: rgba(10, 10, 14, 0.45);
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}
.approach__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 62, 0.4);
  background: rgba(10, 10, 14, 0.7);
}
.approach__num {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}
.approach__card h3 {
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.approach__card p { color: var(--muted); font-size: 16px; }

/* ---------- Process ---------- */
.process { padding-top: clamp(90px, 12vw, 160px); overflow: hidden; }
.process__pin { position: relative; }
.process__track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
  width: max-content;
}
.process__step {
  width: min(72vw, 560px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  background: rgba(16, 16, 22, 0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}
.process__num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 255, 62, 0.6);
  line-height: 1;
}
.process__step h3 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.process__step p { color: var(--muted); font-size: 16px; max-width: 46ch; }

/* ---------- Includes (service pages) ---------- */
.includes { padding: clamp(40px, 6vw, 80px) 0; }
.includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.include {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  background: rgba(10, 10, 14, 0.45);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.include:hover { transform: translateY(-6px); border-color: rgba(200, 255, 62, 0.4); }
.include__num {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.include h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.include p { color: var(--muted); font-size: 15px; }

/* ---------- Outcomes (service pages) ---------- */
.outcomes { padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px); }
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.outcome {
  border-top: 2px solid var(--accent);
  padding: 26px 0 0;
}
.outcome h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.outcome p { color: var(--muted); font-size: 16px; }

/* ---------- Offices (contact page) ---------- */
.offices { padding: clamp(30px, 5vw, 70px) 0 clamp(90px, 12vw, 160px); }
.offices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.office {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  background: rgba(10, 10, 14, 0.45);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.office:hover { transform: translateY(-6px); border-color: rgba(200, 255, 62, 0.4); }
.office__country {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.office__address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.office__tel {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  transition: opacity 0.3s;
}
.office__tel:hover { opacity: 0.8; }
.office__company {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(90px, 12vw, 160px) 0; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px; height: 18px;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform 0.4s var(--ease);
}
.faq__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translateY(-50%) rotate(0deg); }
.faq__answer { overflow: hidden; }
.faq__answer p {
  color: var(--muted);
  padding-bottom: 28px;
  max-width: 60ch;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: clamp(120px, 16vw, 220px) 0;
  background: var(--bg-soft);
}
.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.cta__title {
  font-size: clamp(44px, 8.4vw, 130px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.cta__sub { color: var(--muted); max-width: 46ch; font-size: 18px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 110px) 0 32px;
  overflow: hidden;
  background: rgba(10, 10, 12, 0.35);
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer__col a { color: var(--ink); width: fit-content; transition: color 0.3s; }
.footer__col a:hover { color: var(--accent); }
.footer__wordmark {
  font-size: clamp(76px, 18vw, 280px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-align: center;
  user-select: none;
}
.footer__wordmark span {
  background: linear-gradient(180deg, var(--ink) 30%, rgba(242, 240, 234, 0.15));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__wordmark em {
  background: linear-gradient(180deg, var(--accent) 30%, rgba(200, 255, 62, 0.1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .includes__grid, .outcomes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .header__nav, .header__right { display: none; }
  .header__burger { display: flex; }
  .approach__grid, .offices__grid { grid-template-columns: 1fr; }
  .process__track {
    flex-direction: column;
    width: 100%;
  }
  .process__step { width: 100%; min-height: 0; }
  .service__link { grid-template-columns: 48px 1fr 40px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__scrollhint { display: none; }
  .hero__actions .btn { width: 100%; max-width: 360px; }
  .cta__actions .btn { width: 100%; max-width: 360px; }
}
@media (max-width: 640px) {
  .includes__grid, .outcomes__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scrollline::after,
  .aurora, .aurora__blob { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}
