/* ============================================================
   AURORA(R) — style.css
   Near-black / off-white / electric lime. Archivo Black + Space Grotesk.
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --ink: #F2F0EA;
  --lime: #C6FF3F;
  --muted: rgba(242, 240, 234, 0.55);
  --line: rgba(242, 240, 234, 0.14);
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

/* ---------------- Reset / base ---------------- */

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

html {
  scrollbar-gutter: stable;
}

html.is-loading { overflow: hidden; }

/* Lenis recommended styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--lime); color: #0A0A0A; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #2B2B28; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; }
em { font-style: italic; color: var(--lime); }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

/* ---------------- WebGL aurora backdrop ---------------- */

.aurora-gl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;          /* behind everything; body bg propagates to root canvas */
  pointer-events: none;
}

/* ---------------- Film grain (inline SVG feTurbulence) ---------------- */

.grain {
  position: fixed;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  pointer-events: none;
  z-index: 150;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.4s steps(7) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  15%  { transform: translate(-2%, -3%); }
  30%  { transform: translate(3%, -1%); }
  45%  { transform: translate(-1%, 3%); }
  60%  { transform: translate(2%, 2%); }
  75%  { transform: translate(-3%, 1%); }
  90%  { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ---------------- Custom cursor ---------------- */

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 400;
  display: none;
  will-change: transform;
}

html.has-cursor .cursor-dot,
html.has-cursor .cursor-ring { display: block; }

html.has-cursor body,
html.has-cursor a,
html.has-cursor button { cursor: none; }

.cursor-dot i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.cursor-ring i {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(242, 240, 234, 0.55);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

html.cursor-hot .cursor-ring i {
  transform: translate(-50%, -50%) scale(1.75);
  border-color: var(--lime);
}

html.cursor-hot .cursor-dot i {
  transform: translate(-50%, -50%) scale(0.45);
}

/* ---------------- Preloader ---------------- */

.preloader { position: fixed; inset: 0; z-index: 200; }

.preloader-panel { position: absolute; inset: 0; will-change: transform; }
.panel-lime { background: var(--lime); z-index: 1; }
.panel-dark { background: var(--bg); z-index: 2; }

.preloader-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--pad);
}

.preloader-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preloader-brand sup { color: var(--lime); font-size: 0.6em; }

.preloader-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.preloader-status {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  line-height: 1.7;
}

.preloader-count {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.preloader-count i {
  font-style: normal;
  font-size: 0.22em;
  color: var(--lime);
  margin-left: 0.2em;
}

/* ---------------- Fixed nav (mix-blend-mode: difference) ---------------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem var(--pad);
  mix-blend-mode: difference;
  color: #fff;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}

.nav-logo sup { font-size: 0.6em; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35em;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.55em 1.25em;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover { background: #fff; color: #000; }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--pad) * 2.4) var(--pad) var(--pad);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -22%;
  right: -12%;
  width: 64vw;
  height: 64vw;
  background: radial-gradient(closest-side, rgba(198, 255, 63, 0.15), transparent 70%);
  pointer-events: none;
  will-change: transform;
}

.hero-badge {
  position: absolute;
  right: calc(var(--pad) * 1.4);
  top: 17vh;
  width: clamp(110px, 15vw, 190px);
  height: auto;
}

.badge-ring {
  fill: none;
  stroke: var(--lime);
  stroke-opacity: 0.45;
  stroke-width: 1.2;
}

.badge-text {
  fill: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 13.5vw, 12rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.hero-line { display: block; overflow: hidden; padding: 0.025em 0; }
.hero-line-inner { display: inline-block; will-change: transform; }

/* after the intro mask reveal, unclip so chars can drift with depth */
html.intro-done .hero-line { overflow: visible; }

.hero-line:nth-child(2) { margin-left: clamp(1.5rem, 9vw, 10rem); }
.hero-line:nth-child(3) { margin-left: clamp(0.5rem, 3vw, 3.5rem); }

.hero-line--outline .hero-line-inner {
  -webkit-text-stroke: 0.022em var(--ink);
  color: transparent;
}

.accent { color: var(--lime); -webkit-text-stroke: 0; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hero-scroll { color: var(--ink); }

.hero-scroll .arrow {
  display: inline-block;
  color: var(--lime);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.3em); }
}

/* ---------------- Shared section furniture ---------------- */

.section-head { padding: 0 var(--pad); margin-bottom: clamp(2rem, 5vh, 3.5rem); }

.section-tag {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

.tag-num { color: var(--lime); }
.tag-line { flex: 1; height: 1px; background: var(--line); will-change: transform; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 6.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* ---------------- Section dividers (DrawSVG strokes) ---------------- */

.divider {
  padding: 0 var(--pad);
  margin: clamp(1rem, 4vh, 2.5rem) 0;
}

.divider svg {
  width: 100%;
  height: clamp(30px, 6vh, 60px);
  overflow: visible;
}

.divider-path {
  fill: none;
  stroke: rgba(242, 240, 234, 0.28);
  stroke-width: 1.2;
  stroke-linecap: round;
}

/* ---------------- Services: stacking cards ---------------- */

.services { padding-top: clamp(5rem, 14vh, 10rem); }

.services-stage {
  position: relative;
  height: 100vh;
  height: 100svh;
}

.service-card {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: calc(8vh + var(--i) * 2.4rem);
  height: 72vh;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transform-origin: 50% 0;
  will-change: transform;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45);
}

.service-card:nth-child(1) { --i: 0; background: #0F0F0E; }
.service-card:nth-child(2) { --i: 1; background: #111110; }
.service-card:nth-child(3) { --i: 2; background: #131312; }
.service-card:nth-child(4) { --i: 3; background: #151514; }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.card-num {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--lime);
}

.card-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 14ch;
}

.card-desc {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 46ch;
}

.card-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.card-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45em 1em;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ---------------- Work: horizontal gallery ---------------- */

.work {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.work-head {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  margin-bottom: 0;
}

.work-track {
  display: flex;
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 4rem);
  height: 100%;
  padding: 24vh 8vw 8vh;
  width: max-content;
  will-change: transform;
}

.poster { flex: none; width: clamp(320px, 55vw, 620px); }

.poster-media {
  position: relative;
  height: min(54vh, 32rem);
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(242, 240, 234, 0.08);
}

.poster-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  width: 130%;
  will-change: transform;
}

.g1 {
  background:
    radial-gradient(80% 60% at 70% 18%, #7A5CFF 0%, rgba(122, 92, 255, 0) 60%),
    radial-gradient(70% 50% at 18% 92%, #2E1BD4 0%, rgba(46, 27, 212, 0) 55%),
    linear-gradient(180deg, #14102A 0%, #06050E 100%);
}

.g2 {
  background:
    radial-gradient(55% 42% at 50% 76%, #FFB347 0%, rgba(255, 179, 71, 0) 62%),
    radial-gradient(95% 75% at 50% 112%, #FF5E1F 0%, rgba(255, 94, 31, 0) 55%),
    linear-gradient(180deg, #1A0E06 0%, #0A0A0A 100%);
}

.g3 {
  background:
    radial-gradient(120% 120% at 50% 50%, rgba(10, 10, 10, 0) 30%, rgba(10, 10, 10, 0.6) 100%),
    conic-gradient(from 210deg at 50% 50%, #FF3FA4, #7A5CFF, #3FD8FF, #FF3FA4);
}

.g4 {
  background:
    radial-gradient(70% 55% at 78% 14%, #2FE6C8 0%, rgba(47, 230, 200, 0) 58%),
    linear-gradient(200deg, #0E3B3B 0%, #041414 65%, #020A0A 100%);
}

.g5 {
  background:
    radial-gradient(60% 45% at 12% 8%, rgba(198, 255, 63, 0.22) 0%, rgba(198, 255, 63, 0) 55%),
    linear-gradient(135deg, #262626 0%, #0C0C0C 45%, #1C1C1C 58%, #050505 100%);
}

.poster-word {
  position: absolute;
  left: 4%;
  bottom: 3%;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 234, 0.65);
}

.poster-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.poster-meta h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.poster-num { color: var(--lime); }

html:not(.reduced) .poster { cursor: pointer; }

.poster-word { transition: opacity 0.45s ease; }

/* ---------------- Work detail overlay (Flip) ---------------- */

.work-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;               /* above nav (100), below grain (150) */
  visibility: hidden;
  pointer-events: none;
}

.work-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.overlay-media-slot {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
}

.poster-media.is-overlay {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  border-color: transparent;
}

.poster-media.is-overlay .poster-word { opacity: 0; }

.overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--pad) * 1.1) var(--pad) var(--pad);
  background: linear-gradient(180deg,
    rgba(5, 5, 5, 0.3) 0%,
    rgba(5, 5, 5, 0) 26%,
    rgba(5, 5, 5, 0) 52%,
    rgba(5, 5, 5, 0.62) 100%);
  opacity: 0;
}

.overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.overlay-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--lime);
}

.overlay-close {
  flex: none;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(242, 240, 234, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  background: rgba(10, 10, 10, 0.35);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.overlay-close:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #0A0A0A;
}

.overlay-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.overlay-desc {
  margin-top: 1rem;
  max-width: 54ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(242, 240, 234, 0.82);
}

.overlay-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242, 240, 234, 0.28);
}

.overlay-meta li {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.overlay-meta span { color: rgba(242, 240, 234, 0.55); }
.overlay-meta b { font-weight: 600; color: var(--ink); }

/* ---------------- Marquee ---------------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 6vh, 4rem) 0;
  overflow: hidden;
}

.marquee-row { overflow: hidden; padding: 0.4rem 0; }

.marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-chunk {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

.marquee-chunk span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-row--outline .marquee-chunk span {
  -webkit-text-stroke: 0.02em var(--ink);
  color: transparent;
}

.dot-sep {
  flex: none;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--lime);
}

/* ---------------- Manifesto ---------------- */

.manifesto {
  padding: clamp(6rem, 16vh, 11rem) 0;
}

.manifesto-text {
  padding: 0 var(--pad);
  max-width: 72rem;
  font-size: clamp(1.45rem, 3.1vw, 2.6rem);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------------- Stats ---------------- */

.stats { padding-bottom: clamp(6rem, 16vh, 11rem); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 var(--pad);
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  max-width: 18ch;
}

/* ---------------- Footer ---------------- */

.footer { padding: clamp(5rem, 14vh, 9rem) var(--pad) 2rem; }

.footer-kicker {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--muted);
  max-width: 34ch;
}

.footer-cta-wrap { margin: 2.5rem 0 5rem; }

.footer-cta {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9.5vw, 9.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
  will-change: transform;
}

.footer-cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.06em;
  width: 100%;
  height: 0.075em;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
}

.footer-cta:hover { color: var(--lime); }
.footer-cta:hover::after { transform: scaleX(1); transform-origin: left; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.footer-col ul { display: grid; gap: 0.55rem; }

.footer-col a { transition: color 0.3s ease; }
.footer-col a:hover { color: var(--lime); }

#local-time {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-variant-numeric: tabular-nums;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-credit { color: var(--lime); }

.to-top {
  flex: none;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.to-top:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #0A0A0A;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 860px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .hero-meta-cities { display: none; }
  .overlay-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.5rem; }
}

@media (max-width: 720px) {
  .hero-badge { top: 12vh; width: 96px; }
  .poster { width: 82vw; }
  .service-card { height: 74vh; top: calc(7vh + var(--i) * 1.6rem); }
}

/* ---------------- Reduced motion / no-JS fallbacks ---------------- */

html.reduced .preloader { display: none; }

html.reduced .services-stage {
  height: auto;
  display: grid;
  gap: 1.25rem;
  padding: 0 var(--pad) 4rem;
}

html.reduced .service-card {
  position: static;
  height: auto;
  min-height: 0;
  gap: 1.6rem;
}

html.reduced .work { height: auto; padding-bottom: 4rem; }
html.reduced .work-head { position: static; margin-bottom: 2rem; pointer-events: auto; }

html.reduced .work-track {
  overflow-x: auto;
  padding: 0 var(--pad) 2rem;
  align-items: flex-start;
  width: auto;
}

html.reduced .hero-scroll .arrow { animation: none; }
html.reduced .grain { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero-scroll .arrow { animation: none; }
  .preloader { display: none; }
  html.is-loading { overflow: auto; }
}
