/* ============================================================
   ТЕХНОСТРОЙ — концепт сайта 2026
   Концепт от спецайти.рф
   Палитра: warm-charcoal #0e0d0c + brand-red #f44336 + beige #d7ccc8
   ============================================================ */

:root {
  --bg-night: #0e0d0c;
  --bg-panel: #171614;
  --bg-elevated: #221f1c;
  --bg-soft: #2b2723;
  --border-subtle: #2a2522;
  --border-strong: #3c3530;

  --text-primary: #ece8e3;
  --text-warm: #d7ccc8;
  --text-mute: #928b82;
  --text-faint: #666058;

  --brand-red: #f44336;
  --brand-red-deep: #c12d22;
  --brand-red-hot: #ff5747;
  --brand-black: #000000;
  --brand-beige: #d7ccc8;

  --pin-red: #f44336;
  --success: #4ade80;
  --warn: #f59e0b;
  --danger: #ef4444;

  --font-display: "Oswald", "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body:
    "Inter", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  --font-mono:
    "JetBrains Mono", "SF Mono", "Roboto Mono", "Consolas", monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --max-w: 1280px;
  --section-py: clamp(64px, 9vw, 128px);

  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-strong:
    0 2px 4px rgba(0, 0, 0, 0.4), 0 24px 48px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-night);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

/* Site-wide film grain — subtle tactile premium feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.hero {
  overflow-x: clip;
}

.cta {
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--brand-red);
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--brand-red);
  color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text-primary);
  text-transform: uppercase;
}

p {
  margin: 0 0 1em 0;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand-red);
  flex: none;
  box-shadow: 0 0 6px rgba(244, 67, 54, 0.7);
}

.eyebrow--mute {
  color: var(--text-mute);
}

.eyebrow--mute::before {
  background: var(--text-mute);
  box-shadow: none;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-warm);
  line-height: 1.55;
  max-width: 64ch;
}

.section__title {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  margin-bottom: 28px;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.section__title .accent {
  color: var(--brand-red);
}

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
  overflow-x: clip;
}

.section--panel {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section__head {
  margin-bottom: 56px;
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 24px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(14, 13, 12, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  padding: 4px;
}

.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.nav__brand-by {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.is-current {
  color: var(--text-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.18s ease;
}

.nav__cta:hover {
  color: #fff;
  background: var(--brand-red-deep);
}

@media (max-width: 880px) {
  .nav__links .nav__link {
    display: none;
  }
  .nav__links .nav__link[data-key="audit"],
  .nav__cta {
    display: inline-flex;
  }
  .nav__links {
    gap: 14px;
  }
  .nav__cta {
    padding: 8px 12px;
    font-size: 13px;
  }
  .nav__brand-by {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav__inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .nav__brand-name {
    font-size: 16px;
  }
  .nav__logo {
    width: 38px;
    height: 38px;
  }
  .nav__cta {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand-red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-red-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text-warm);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: var(--bg-panel);
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.btn__arrow {
  transform: translateY(-1px);
  font-size: 18px;
}

/* ============================================================
   HERO  (v2 — cinematic)
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow-x: clip;
  isolation: isolate;
  border-bottom: 1px solid var(--border-subtle);
}

.hero--cinematic {
  min-height: 100vh;
  padding: clamp(112px, 14vh, 160px) 0 clamp(140px, 18vh, 200px);
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(
      102deg,
      rgba(14, 13, 12, 0.96) 0%,
      rgba(14, 13, 12, 0.78) 38%,
      rgba(14, 13, 12, 0.32) 70%,
      rgba(14, 13, 12, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(14, 13, 12, 0.5) 0%,
      transparent 30%,
      transparent 60%,
      rgba(14, 13, 12, 0.92) 100%
    ),
    url("img/hero_worker_logo.jpg");
  background-size: cover, cover, cover;
  background-position:
    center,
    center,
    center 40%;
  filter: grayscale(0.05) brightness(1.02) contrast(1.06);
}

/* Film grain — premium tactile feel */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* Top scan line — slow industrial sweep */
.hero__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 6;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--brand-red) 35%,
    #fff 50%,
    var(--brand-red) 65%,
    transparent 100%
  );
  transform-origin: left center;
  animation: hero-scan 5.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  box-shadow: 0 0 12px rgba(244, 67, 54, 0.6);
  opacity: 0.85;
}

@keyframes hero-scan {
  0% {
    transform: translateX(-100%) scaleX(0.6);
    opacity: 0;
  }
  20% {
    opacity: 0.85;
  }
  80% {
    opacity: 0.85;
  }
  100% {
    transform: translateX(100%) scaleX(0.6);
    opacity: 0;
  }
}

/* Vertical rail — left edge mono ticker */
.hero__rail {
  position: absolute;
  left: clamp(14px, 2.4vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 8;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-mute);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.hero__rail span {
  white-space: nowrap;
}

.hero__rail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.7);
  flex: none;
}

@media (max-width: 1080px) {
  .hero__rail {
    display: none;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__top .eyebrow {
  margin-bottom: 0;
}

.hero__city {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  margin: 12px 0 28px;
  max-width: 18ch;
  line-height: 1.02;
}

.hero__title .accent {
  color: var(--brand-red);
}

.hero__title--mega {
  font-size: clamp(3.4rem, 9.4vw, 8.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.022em;
  margin: 0 0 clamp(28px, 4vw, 48px);
  max-width: 14ch;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vw, 8px);
}

.hero__title-line {
  display: block;
  line-height: 0.92;
}

.hero__title-em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.32em;
  letter-spacing: 0.04em;
  color: var(--text-warm);
  text-transform: none;
  margin: clamp(4px, 0.6vw, 10px) 0 clamp(6px, 0.8vw, 12px) 0.32em;
  opacity: 0.78;
  line-height: 1;
}

/* Top separator dot row */
.hero__top-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 6px rgba(244, 67, 54, 0.7);
  flex: none;
  align-self: center;
}

/* MEGA tonnage — the wow moment */
.hero__mega-stat {
  display: grid;
  grid-template-columns: auto auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: end;
  margin: 0 0 clamp(28px, 4vw, 44px);
  max-width: 920px;
}

.hero__mega-num {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 17vw, 14rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  padding-bottom: 0.06em;
  background: linear-gradient(
    178deg,
    #ffffff 0%,
    #f4ede7 35%,
    #d7ccc8 60%,
    var(--brand-red) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 28px rgba(244, 67, 54, 0.28));
  position: relative;
}

.hero__mega-num::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -10%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(244, 67, 54, 0.22) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}

.hero__mega-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: clamp(8px, 1.6vw, 22px);
  max-width: 220px;
}

.hero__mega-unit {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.05;
}

.hero__mega-bar {
  display: block;
  height: 2px;
  width: 64px;
  background: var(--brand-red);
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.8);
}

.hero__mega-source {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-warm);
  text-transform: uppercase;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.hero__lead {
  max-width: 56ch;
}

.hero__support-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-top: 32px;
  margin-top: 36px;
  border-top: 1px solid var(--border-subtle);
  max-width: 880px;
}

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

.hero__support-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.hero__support-stat-label {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.4;
}

.hero__support-stat-source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  position: relative;
}

.btn--lg {
  padding: 16px 26px;
  font-size: 16px;
  box-shadow: 0 10px 28px rgba(244, 67, 54, 0.35);
}

.btn--lg:hover {
  box-shadow: 0 14px 36px rgba(244, 67, 54, 0.5);
  transform: translateY(-1px);
}

/* Bottom marquee — running cities ribbon */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 0;
  background: linear-gradient(180deg, transparent, rgba(14, 13, 12, 0.95) 65%);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
  z-index: 5;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--text-warm);
  text-transform: uppercase;
  width: max-content;
  animation: hero-marquee 42s linear infinite;
  will-change: transform;
}

.hero__marquee-track .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-red);
  display: inline-block;
  flex: none;
  box-shadow: 0 0 6px rgba(244, 67, 54, 0.7);
}

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

/* Scroll cue — bottom right */
.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 44px);
  bottom: clamp(96px, 14vh, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-mute);
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10;
  transition: color 0.2s ease;
}

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

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--brand-red) 0%, transparent 100%);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -2px;
  width: 5px;
  height: 16px;
  border-radius: 3px;
  background: var(--brand-red);
  box-shadow: 0 0 12px rgba(244, 67, 54, 0.9);
  animation: hero-scroll-pulse 1.9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes hero-scroll-pulse {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(72px);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .hero__scroll {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero--cinematic {
    min-height: auto;
    padding: 110px 0 130px;
  }
  .hero__mega-stat {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__mega-meta {
    padding-bottom: 0;
  }
  .hero__title-em {
    font-size: 0.5em;
    margin-left: 0;
    vertical-align: baseline;
    display: block;
  }
}

@media (max-width: 720px) {
  .hero__support-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero__top {
    gap: 12px;
  }
  .hero__marquee {
    padding: 14px 0;
  }
  .hero__marquee-track {
    font-size: 12px;
    gap: 24px;
    animation-duration: 32s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scanline,
  .hero__marquee-track,
  .hero__scroll-line::after {
    animation: none;
  }
  .hero__scanline {
    opacity: 0.6;
  }
}

/* ============================================================
   PROFILE / QUOTE
   ============================================================ */
.profile__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 920px) {
  .profile__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.quote {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  position: relative;
}

.quote__mark {
  position: absolute;
  left: 24px;
  top: 8px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--brand-red);
  opacity: 0.5;
  line-height: 1;
}

.quote__body {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-warm);
  font-style: italic;
  margin: 24px 0 24px;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.quote__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  flex: none;
  padding: 6px;
  overflow: hidden;
}

.quote__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quote__author-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.quote__author-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

@media (max-width: 720px) {
  .advantages {
    grid-template-columns: 1fr;
  }
}

.advantage {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.advantage__num {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(244, 67, 54, 0.1);
  color: var(--brand-red);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.advantage__body {
  flex: 1;
  min-width: 0;
}

.advantage__title {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.advantage__text {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.45;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--brand-red);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(244, 67, 54, 0.1);
  display: grid;
  place-items: center;
  color: var(--brand-red);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__title {
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.5;
  margin-top: auto;
}

/* ============================================================
   PRODUCTION
   ============================================================ */
.production__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .production__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.workshops {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.workshop {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.workshop__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-red);
  letter-spacing: 0.1em;
  font-weight: 600;
  flex: none;
  width: 28px;
}

.workshop__name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.equipment {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.equipment__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.equipment__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.equipment__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-subtle);
}

.equipment__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.equipment__label {
  font-size: 14px;
  color: var(--text-warm);
  line-height: 1.4;
}

.equipment__value {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
}

.equipment__value .unit {
  color: var(--text-mute);
  font-weight: 400;
  font-size: 13px;
  margin-left: 2px;
}

.production__quote {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--brand-red);
  padding: 24px 28px;
  font-size: 1rem;
  color: var(--text-warm);
  line-height: 1.55;
  font-style: italic;
  margin-top: 32px;
  grid-column: 1 / -1;
}

.production__quote-source {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-top: 12px;
}

/* ============================================================
   OBJECTS
   ============================================================ */
.objects {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  grid-template-areas:
    "feature small1 small2"
    "feature small3 small4"
    "wide wide wide";
}

@media (max-width: 1024px) {
  .objects {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feature feature"
      "small1 small2"
      "small3 small4"
      "wide wide";
  }
}

@media (max-width: 600px) {
  .objects {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "small1"
      "small2"
      "small3"
      "small4"
      "wide";
  }
}

.object-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  isolation: isolate;
}

.object-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-card-img);
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: grayscale(0.2) brightness(0.65);
  transition:
    filter 0.4s ease,
    transform 0.5s ease;
}

.object-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 13, 12, 0) 0%,
    rgba(14, 13, 12, 0.85) 100%
  );
  z-index: -1;
}

.object-card:hover::before {
  filter: grayscale(0) brightness(0.8);
  transform: scale(1.04);
}

.object-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.object-card__num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  font-weight: 600;
}

.object-card--feature {
  grid-area: feature;
  min-height: 416px;
}

.object-card--feature .object-card__title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  max-width: 14ch;
}

.object-card--small1 {
  grid-area: small1;
}
.object-card--small2 {
  grid-area: small2;
}
.object-card--small3 {
  grid-area: small3;
}
.object-card--small4 {
  grid-area: small4;
}

.object-card--wide {
  grid-area: wide;
  min-height: 240px;
}

.object-card--wide .object-card__title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

/* ============================================================
   GEO TIMELINE
   ============================================================ */
.geo {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.geo__lead {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}

@media (max-width: 920px) {
  .geo__lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.geo__photo {
  position: relative;
  min-height: 220px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
}

.geo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.geo__photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(14, 13, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-warm);
}

.geo__photo-caption strong {
  color: var(--brand-red);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-red) 0%,
    var(--brand-red) 80%,
    var(--text-faint) 80%,
    var(--text-faint) 100%
  );
  z-index: 0;
}

.timeline__step {
  position: relative;
  padding-top: 36px;
}

.timeline__dot {
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-red);
  border: 2px solid var(--bg-panel);
  box-shadow: 0 0 0 1px var(--brand-red);
  z-index: 1;
}

.timeline__step--planned .timeline__dot {
  background: transparent;
  box-shadow: 0 0 0 1px var(--text-faint);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--brand-red);
  margin-bottom: 8px;
}

.timeline__step--planned .timeline__year {
  color: var(--text-mute);
}

.timeline__regions {
  font-size: 13px;
  color: var(--text-warm);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .timeline::before {
    display: none;
  }
  .timeline__step {
    border-left: 2px solid var(--border-subtle);
    padding-left: 16px;
    padding-top: 0;
  }
  .timeline__dot {
    left: -8px;
    top: 4px;
  }
  .timeline__step--planned {
    border-color: var(--text-faint);
  }
}

@media (max-width: 600px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

@media (max-width: 1024px) {
  .process {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .process {
    grid-template-columns: 1fr;
  }
}

.process__step {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.process__num {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--brand-red);
  font-weight: 700;
  line-height: 1;
}

.process__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.process__text {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}

.process__certs {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--brand-red);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-warm);
  line-height: 1.55;
}

.process__certs strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--brand-red);
  margin-right: 12px;
  text-transform: uppercase;
  font-size: 13px;
}

/* ============================================================
   STATS / FINANCE
   ============================================================ */
.finance__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 1024px) {
  .finance__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.finance__hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.finance__hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.finance__hero-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--text-primary);
  line-height: 1;
  margin: 12px 0;
}

.finance__hero-num .accent {
  color: var(--brand-red);
}

.finance__hero-text {
  font-size: 1rem;
  color: var(--text-warm);
  line-height: 1.55;
}

.finance__hero-source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-top: 12px;
}

.finance__series {
  display: flex;
  flex-direction: column;
}

.finance__series-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.finance__series-row:last-child {
  border-bottom: none;
}

.finance__series-row.is-current {
  background: linear-gradient(
    90deg,
    rgba(244, 67, 54, 0.08) 0%,
    transparent 100%
  );
  border-radius: var(--radius-md);
  padding-left: 16px;
  padding-right: 16px;
}

.finance__series-year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

.finance__series-bar {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.finance__series-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--brand-red) 0%,
    var(--brand-red-hot) 100%
  );
  border-radius: 4px;
  transform-origin: left center;
}

.finance__series-row.is-current .finance__series-year {
  color: var(--brand-red);
  font-weight: 600;
}

.finance__series-value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
  min-width: 96px;
}

.finance__support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.finance__support-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}

.finance__support-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.finance__support-num .accent {
  color: var(--brand-red);
}

.finance__support-label {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .finance__support {
    grid-template-columns: 1fr;
  }
  .finance__series-row {
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
  }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0;
  background: linear-gradient(135deg, #1c0a09 0%, #0e0d0c 60%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  isolation: isolate;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(244, 67, 54, 0.18) 0%,
    transparent 70%
  );
  z-index: -1;
}

.cta__final {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.cta__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin: 12px 0 18px;
  letter-spacing: -0.01em;
}

.cta__title .accent {
  color: var(--brand-red);
}

.cta__sub {
  font-size: 1.05rem;
  color: var(--text-warm);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto;
}

.cta__sub strong {
  color: var(--text-primary);
}

.cta__buttons {
  display: flex;
  gap: 16px;
  margin: 36px 0 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  border-top: 1px dashed var(--border-strong);
  padding-top: 36px;
}

@media (max-width: 720px) {
  .cta__contacts {
    grid-template-columns: 1fr;
  }
  .cta__buttons {
    margin: 28px 0 40px;
  }
}

.contact-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(14, 13, 12, 0.55);
  text-align: left;
  transition: border-color 0.2s ease;
}

.contact-cell:hover {
  border-color: var(--brand-red);
}

.contact-cell__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.contact-cell__value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

a.contact-cell__value:hover {
  color: var(--brand-red);
}

.contact-cell__sub {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.45;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-night);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 920px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  padding: 8px;
  flex: none;
  overflow: hidden;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.footer__brand-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col p,
.footer__col a {
  font-size: 14px;
  color: var(--text-warm);
  line-height: 1.6;
}

.footer__col a:hover {
  color: var(--brand-red);
}

.footer__col p {
  margin-bottom: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.footer__bottom-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.pin-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-warm);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  user-select: none;
  transition: all 0.22s ease;
}

.pin-toggle:hover {
  color: var(--text-primary);
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

.pin-toggle__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  transition: background 0.18s ease;
}

.pin-toggle.is-on {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

.pin-toggle.is-on .pin-toggle__dot {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  animation: pin-toggle-pulse 2s ease infinite;
}

@keyframes pin-toggle-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

@media (max-width: 720px) {
  .pin-toggle {
    bottom: 16px;
    right: 16px;
    padding: 10px 14px;
    font-size: 10px;
  }
}

/* ============================================================
   PIN ANNOTATIONS
   ============================================================ */
.pin {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pin-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  z-index: 30;
  border: 2px solid var(--bg-night);
  box-shadow:
    0 0 0 1px var(--pin-red),
    0 0 0 6px rgba(244, 67, 54, 0.16),
    0 8px 22px rgba(244, 67, 54, 0.42);
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease;
  user-select: none;
  display: none;
}

body.pins-on .pin {
  display: grid;
  animation: pin-pop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pin-pop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

body.pins-on .pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--pin-red);
  opacity: 0.5;
  animation: pin-ring 2.4s ease-out infinite;
}

@keyframes pin-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.pin:hover {
  transform: scale(1.14);
  box-shadow:
    0 0 0 1px var(--pin-red),
    0 0 0 10px rgba(244, 67, 54, 0.22),
    0 12px 28px rgba(244, 67, 54, 0.5);
}

.pin-tooltip {
  position: absolute;
  z-index: 40;
  width: 300px;
  max-width: calc(100vw - 32px);
  padding: 16px 18px;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--brand-red);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  font-size: 13px;
  line-height: 1.5;
  display: none;
  pointer-events: none;
}

.pin-tooltip::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--brand-red);
  border-left: 1px solid var(--brand-red);
  transform: rotate(45deg);
}

.pin-tooltip--end::before {
  left: auto;
  right: 18px;
}

.pin-tooltip--bottom::before {
  top: auto;
  bottom: -7px;
  transform: rotate(225deg);
}

body.pins-on .pin.is-active + .pin-tooltip {
  display: block;
  pointer-events: auto;
}

.pin-tooltip__head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pin-tooltip__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.pin-tooltip__text {
  color: var(--text-warm);
  font-size: 13px;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  body.pins-on .pin::after {
    animation: none;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  .nav,
  .pin,
  .pin-tooltip,
  .pin-toggle {
    display: none !important;
  }
}
