/* ==========================================================================
   CEREPROG — Confident minimalism
   Inter Tight mastered. No serif. No cards. No chrome.
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-soft: #0f0f0f;
  --bg-elev: #141414;
  --line: #202020;
  --line-strong: #333333;
  --text: #ffffff;
  --text-soft: #c5c5c5;
  --text-mute: #7e7e7e;
  --text-dim: #4c4c4c;
  --red: #e63946;
  --red-hot: #ff4d59;
  --red-deep: #b82832;
  --cream: #f4efe5;

  --font: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1360px;
  --container-wide: 1520px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-py: clamp(80px, 11vh, 140px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.22s;
  --t-med: 0.45s;
  --t-slow: 0.8s;
}

/* ---------- Type baseline ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

h1 { font-size: clamp(3rem, 9vw, 9.5rem); font-weight: 800; letter-spacing: -0.055em; line-height: 0.92; }
h2 { font-size: clamp(2.2rem, 5.4vw, 5rem); font-weight: 700; letter-spacing: -0.048em; line-height: 0.96; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.03em; }

p {
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 62ch;
}

.lead {
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 56ch;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }

section { position: relative; padding-block: var(--section-py); }

/* Noise */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NAV — simple, large logo, 5 items, no dropdown clutter
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 20px;
  transition: background var(--t-fast) var(--ease), padding var(--t-fast), border-color var(--t-fast);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 14px;
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
  justify-self: start;
}

.nav__logo img {
  height: 60px;
  width: auto;
  transition: height var(--t-fast) var(--ease);
}

.nav.is-scrolled .nav__logo img { height: 46px; }

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

.nav__menu a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--t-fast);
  padding: 4px 0;
}

.nav__menu a > span { display: none; }

.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease);
}

.nav__menu a:hover { color: var(--text); }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__menu a.is-active { color: var(--text); }

.nav__has-sub { position: relative; }

.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 260px;
  padding: 10px;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t-fast) var(--ease);
}

.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub a {
  display: block;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__sub a::after { display: none; }
.nav__sub a:hover { background: var(--bg-elev); color: var(--red); }

.nav__utils {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  justify-self: end;
}

.nav__menu {
  justify-self: center;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}

.nav__phone svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

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

.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.nav__social svg { width: 15px; height: 15px; }

.nav__social:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.nav__divider {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}

.nav__cta::after { content: '→'; transition: transform var(--t-fast); }
.nav__cta:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.nav__cta:hover::after { transform: translateX(3px); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.nav__toggle span {
  position: relative;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: background var(--t-fast);
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--t-fast) var(--ease);
}

.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { background: var(--red-hot); transform: translateY(-2px); }

.btn--light { background: var(--text); color: var(--bg); }
.btn--light:hover { background: var(--cream); }

.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: transparent; border-color: var(--text); color: var(--text); }

.btn--large { padding: 20px 32px; font-size: 1.02rem; }
.btn__arrow { transition: transform var(--t-fast); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ==========================================================================
   HERO — structure preserved (user approved)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 160px 70px;
  overflow: hidden;
  background: #000;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.12) 32%, rgba(10,10,10,0.98) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.75) 0%, transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: end;
}

.hero__title {
  font-size: clamp(3rem, 9vw, 10rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
  max-width: 14ch;
  color: var(--text);
}

.hero__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--red);
}

.hero__title .split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.hero__title .split-line > span {
  display: inline-block;
  transform: translateY(110%);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.hero__kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero__meta p {
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 32ch;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  z-index: 2;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--text-mute), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   COMMON COMPONENTS — split, telemetry, timeline, services, pricing, stats
   ========================================================================== */

/* Manifesto */
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.manifesto__lead {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 18ch;
}

.manifesto__lead em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

.manifesto__body p {
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 56ch;
}
.manifesto__body p + p { margin-top: 22px; }

/* Telemetry section wrapper */
.telemetry { padding-block: var(--section-py, clamp(90px,13vh,160px)); }

.telemetry--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.telemetry__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vh, 80px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.telemetry__head h2 { max-width: 16ch; }
.telemetry__head p { max-width: 40ch; margin-left: auto; font-size: 1.02rem; }

.telemetry__table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.telemetry__row { display: contents; }

.telemetry__row > * {
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.telemetry__row:last-child > * { border-bottom: 0; }

.telemetry__head-row > * {
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-block: 14px;
}

.telemetry__cell--model { font-size: 1.02rem; font-weight: 500; color: var(--text); }
.telemetry__cell--orig { color: var(--text-mute); font-family: var(--font-mono); font-size: 0.94rem; }
.telemetry__cell--new { color: var(--text); font-family: var(--font-mono); font-size: 0.98rem; font-weight: 500; }
.telemetry__cell--gain { color: var(--red); font-family: var(--font-mono); font-size: 1rem; font-weight: 500; }
.telemetry__cell--stage { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-soft); }

.telemetry__note {
  margin-top: 26px;
  font-size: 0.86rem;
  color: var(--text-mute);
  font-family: var(--font);
  letter-spacing: -0.005em;
}

/* 3-column comparison table variant (Stage 1 vs Stage 2) */
.telemetry__table--compare {
  grid-template-columns: 1.4fr 1fr 1fr !important;
}

@media (max-width: 620px) {
  .telemetry__table--compare {
    grid-template-columns: 1fr !important;
  }
  .telemetry__table--compare .telemetry__row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .telemetry__table--compare .telemetry__row > * {
    padding: 8px 18px;
    border-bottom: 0;
  }
  .telemetry__table--compare .telemetry__head-row { display: none; }
}

/* Generic services modifier — 2 columns instead of 3 */
.services--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .services--2col { grid-template-columns: 1fr; } }

/* Split feature block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: stretch;
}

.split--reverse .split__media { order: 2; }

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 100%;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.split__media img,
.elementor .split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  filter: brightness(0.92) contrast(1.05);
  transition: transform var(--t-slow) var(--ease), filter var(--t-med);
}

.split:hover .split__media img { transform: scale(1.03); filter: brightness(1); }

.split__media-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split__body h2 { margin-top: 22px; }
.split__body p { margin-top: 22px; }

.split__list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.split__list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--text-soft);
}

.split__list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: rgba(230, 57, 70, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e63946' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline.is-visible { padding-bottom: 28px; }

.timeline__step {
  padding: 32px 26px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transition: border-color var(--t-med), background var(--t-med);
}

.timeline__step:hover {
  border-color: var(--line-strong);
  background: var(--bg-card);
}

.timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  background: rgba(230, 57, 70, 0.12);
  color: var(--red);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
}

.timeline__step h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  margin-bottom: 10px;
}

.timeline__step p {
  color: var(--text-mute);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Services (generic) */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transition: background var(--t-med), border-color var(--t-med), transform var(--t-med) var(--ease);
}

.service-card:hover {
  background: var(--bg-card);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

/* Pricing grid / price cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transition: border-color var(--t-med), transform var(--t-med) var(--ease);
}

.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.price-card__tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.94rem;
  color: var(--text-soft);
}

.price-card__list li strong {
  font-family: var(--font-mono);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Stats (editorial) */
.stats-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-editorial__item {
  padding: 44px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats-editorial__item:last-child { border-right: 0; }

.stats-editorial__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
}

.stats-editorial__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--text);
}

.stats-editorial__num small {
  font-size: 1.3rem;
  color: var(--red);
  font-weight: 700;
}

.stats-editorial__desc {
  font-size: 0.94rem;
  color: var(--text-mute);
  line-height: 1.5;
  max-width: 28ch;
}

/* Principles — 4 cards + image */
.principles {
  padding-block: var(--section-py);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vh, 70px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.principles__head > div h2 { margin-top: 22px; max-width: 14ch; }
.principles__head > div h2 em { font-style: italic; color: var(--red); font-weight: 700; }
.principles__head p { max-width: 40ch; margin-left: auto; font-size: 1rem; }

.principles__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.principle {
  padding: 28px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transition: border-color var(--t-med), background var(--t-med), transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}

.principle:hover {
  border-color: var(--line-strong);
  background: var(--bg-card);
  transform: translateY(-3px);
}

.principle__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  background: rgba(230, 57, 70, 0.12);
  color: var(--red);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
}

.principle h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.principle p {
  color: var(--text-mute);
  font-size: 0.9rem;
  line-height: 1.55;
}

.principles__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  align-self: stretch;
}

.principles__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.05);
  transition: transform var(--t-slow) var(--ease);
}

.principles__media:hover img { transform: scale(1.04); }

.principles__media-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .principles__layout { grid-template-columns: 1fr; gap: 24px; }
  .principles__media { aspect-ratio: 16 / 9; }
}

@media (max-width: 860px) {
  .principles__head { grid-template-columns: 1fr; gap: 18px; }
  .principles__head p { margin-left: 0; }
}

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

@media (max-width: 1080px) {
  .telemetry__table { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .telemetry__cell--stage,
  .telemetry__head-row > *:last-child { display: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-editorial { grid-template-columns: repeat(2, 1fr); }
  .stats-editorial__item:nth-child(2) { border-right: 0; }
  .stats-editorial__item:nth-child(1),
  .stats-editorial__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .split,
  .manifesto__grid,
  .telemetry__head { grid-template-columns: 1fr; gap: 30px; }
  .telemetry__head p { margin-left: 0; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 620px) {
  .timeline,
  .services { grid-template-columns: 1fr; }
  .stats-editorial { grid-template-columns: 1fr; }
  .stats-editorial__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-editorial__item:last-child { border-bottom: 0; }
  .telemetry__table { grid-template-columns: 1.4fr 1fr 1fr; }
  .telemetry__cell--orig,
  .telemetry__head-row > *:nth-child(2) { display: none; }
}

/* ==========================================================================
   WELCOME — "Bienvenue chez Cereprog"
   ========================================================================== */
.welcome {
  padding-block: clamp(110px, 16vh, 180px);
  border-bottom: 1px solid var(--line);
}

.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.welcome__title h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 10ch;
  font-weight: 700;
}

.welcome__title h2 em { font-style: italic; font-weight: 700; color: var(--red); }

.welcome__title-mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.welcome__title-mono::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

.welcome__body p {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 56ch;
}

.welcome__body p + p { margin-top: 22px; }

.welcome__body-signature {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.welcome__body-signature span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

.welcome__body-signature strong {
  display: block;
  font-family: var(--font);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* ==========================================================================
   BINARY — "1000011... = Cereprog"
   ========================================================================== */
.binary {
  position: relative;
  padding-block: clamp(60px, 8vh, 100px);
  background: var(--bg-soft);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Software-themed — cursor spotlight + grid reveal (Vercel/Linear pattern) */
.binary {
  --mx: 50%;
  --my: 50%;
}

.binary__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle base grid — always visible but very faint */
.binary__fx::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 57, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 57, 70, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 85%);
}

/* Brighter grid — only visible where cursor is (spotlight reveal) */
.binary__fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 57, 70, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 57, 70, 0.55) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle 280px at var(--mx) var(--my), black 0%, rgba(0,0,0,0.4) 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle 280px at var(--mx) var(--my), black 0%, rgba(0,0,0,0.4) 40%, transparent 75%);
  transition: mask-image 0.12s ease-out, -webkit-mask-image 0.12s ease-out;
}

/* Red glow that follows cursor */
.binary__fx-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 240px at var(--mx) var(--my),
    rgba(230, 57, 70, 0.22) 0%,
    rgba(230, 57, 70, 0.08) 35%,
    transparent 70%);
  mix-blend-mode: screen;
  transition: background 0.12s ease-out;
}

/* Idle animation — slow drift when cursor isn't moving (first load / touch devices) */
.binary:not(.is-interactive) {
  animation: binaryIdleDrift 18s ease-in-out infinite;
}

@keyframes binaryIdleDrift {
  0%, 100% { --mx: 30%; --my: 40%; }
  25%      { --mx: 70%; --my: 35%; }
  50%      { --mx: 65%; --my: 65%; }
  75%      { --mx: 25%; --my: 60%; }
}

/* Make --mx/--my animatable */
@property --mx {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --my {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}

@media (max-width: 860px) {
  .binary__fx::before { background-size: 32px 32px; }
  .binary__fx-grid { background-size: 32px 32px; }
}

.binary__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 1rem);
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-all;
  padding: 40px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  user-select: none;
}

.binary__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.binary__equation {
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  color: var(--red);
  letter-spacing: 0.12em;
  line-height: 1.8;
  word-break: break-all;
  margin-bottom: 28px;
  opacity: 0.9;
}

.binary__equation strong {
  color: var(--text);
  font-weight: 500;
}

.binary__title h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 14ch;
}

.binary__title h2 em { font-style: italic; font-weight: 700; color: var(--red); }

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

.binary__adv {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.binary__adv:last-child { border-bottom: 1px solid var(--line); }

.binary__adv-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--red);
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.binary__adv h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.binary__adv p {
  font-size: 0.96rem;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 50ch;
}

/* ==========================================================================
   REPROGS — "Nos Reprogrammations Moteurs" (3 main services)
   ========================================================================== */
.reprogs {
  padding-block: clamp(110px, 16vh, 180px);
  border-bottom: 1px solid var(--line);
}

.reprogs__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(50px, 8vh, 90px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.reprogs__head h2 { max-width: 14ch; }
.reprogs__head h2 em { font-style: italic; font-weight: 700; color: var(--red); }
.reprogs__head p { max-width: 40ch; margin-left: auto; }

.reprogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reprog-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-elev);
  transition: background var(--t-med) var(--ease);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.reprog-card:hover { background: var(--bg-card); }

.reprog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.reprog-card__media img,
.elementor .reprog-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform var(--t-slow) var(--ease), filter var(--t-med);
}

.reprog-card:hover .reprog-card__media img { transform: scale(1.05); filter: brightness(1); }

.reprog-card__body {
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reprog-card__mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.reprog-card h3 {
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.reprog-card h3 em { font-style: italic; color: var(--red); font-weight: 600; }

.reprog-card p {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--text-mute);
  line-height: 1.55;
  flex-grow: 1;
}

.reprog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  align-self: flex-start;
  transition: color var(--t-fast), gap var(--t-fast);
}

.reprog-card__cta::after {
  content: '→';
  transition: transform var(--t-fast);
}

.reprog-card:hover .reprog-card__cta { color: var(--red); gap: 14px; }
.reprog-card:hover .reprog-card__cta::after { transform: translateX(3px); }

/* ==========================================================================
   ECU — OBD / BENCH / BOOT / JTAG
   ========================================================================== */
.ecu {
  padding-block: clamp(110px, 16vh, 180px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.ecu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.ecu__body h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 14ch;
  margin-top: 18px;
}

.ecu__body h2 em { font-style: italic; font-weight: 700; color: var(--red); }

.ecu__body p {
  margin-top: 26px;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.ecu__methods {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ecu__method {
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color var(--t-fast), transform var(--t-fast) var(--ease);
}

.ecu__method:hover { border-color: var(--red); transform: translateY(-3px); }

.ecu__method-code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.ecu__method-desc {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.45;
}

.ecu__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card);
}

.ecu__visual img,
.elementor .ecu__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.ecu__visual-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.14em;
  z-index: 2;
}

/* ==========================================================================
   BRANDS — Marquee of brand names
   ========================================================================== */
.brands {
  padding-block: clamp(60px, 10vh, 100px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.brands__head {
  margin-bottom: 56px;
  padding-inline: var(--gutter);
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
}

.brands__head span {
  display: block;
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 14ch;
}

.brands__head span::before,
.brands__head span::after { content: none; }

.brands__marquee {
  display: flex;
  gap: 110px;
  white-space: nowrap;
}

.brands__track {
  display: inline-flex;
  align-items: center;
  gap: 110px;
  animation: brandsScroll 60s linear infinite;
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--t-fast), filter var(--t-fast);
  filter: grayscale(1) brightness(1.6) contrast(0.9);
}

.brands__item img {
  max-height: 100%;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  .brands__marquee { gap: 70px; }
  .brands__track { gap: 70px; }
  .brands__item { height: 80px; }
  .brands__item img { max-width: 170px; }
}

.brands__item:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1) contrast(1);
}

.brands__dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes brandsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO GALLERY — minimal museum plaque on corner
   ========================================================================== */
.hero-gallery {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.hero-gallery__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gallery__bg video,
.hero-gallery__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.06);
  will-change: transform;
}

.hero-gallery__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 85%, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.35) 40%, transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, transparent 30%, rgba(10, 10, 10, 0.25) 100%);
  pointer-events: none;
}

/* Top-left breadcrumb */
.hero-gallery__crumb {
  position: absolute;
  top: 125px;
  left: var(--gutter);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
}

.hero-gallery__crumb::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

.hero-gallery__crumb a { color: inherit; }

/* Floating plaque — bottom-right */
.hero-gallery__plaque {
  position: absolute;
  bottom: clamp(60px, 8vh, 100px);
  right: var(--gutter);
  z-index: 3;
  max-width: 420px;
  padding: 32px 34px;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.6);
}

.hero-gallery__plaque-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-gallery__plaque-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--red);
}

.hero-gallery__plaque h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-gallery__plaque h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-gallery__plaque p {
  margin-top: 18px;
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: none;
}

.hero-gallery__plaque-footer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.hero-gallery__plaque-count {
  font-family: var(--font);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
  font-style: italic;
}

.hero-gallery__plaque-count small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
  font-style: normal;
}

.hero-gallery__plaque-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: gap var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.hero-gallery__plaque-cta::after {
  content: '↗';
  font-size: 1.05rem;
  color: var(--red);
  transition: transform var(--t-fast);
}

.hero-gallery__plaque-cta:hover {
  gap: 14px;
  color: var(--red);
  border-color: var(--red);
}

.hero-gallery__plaque-cta:hover::after { transform: translate(3px, -3px); }

/* Scroll indicator — bottom-left */
.hero-gallery__scroll {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-gallery__scroll::before {
  content: '';
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollHorizontal 2.4s var(--ease) infinite;
}

@keyframes scrollHorizontal {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(8px); opacity: 1; }
}

@media (max-width: 860px) {
  .hero-gallery__plaque {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 80px;
    max-width: none;
    padding: 26px 26px 28px;
  }
  .hero-gallery__scroll { display: none; }
  .hero-gallery__crumb { top: 105px; }
}

@media (max-width: 420px) {
  .hero-gallery__plaque { padding: 22px 22px 24px; }
  .hero-gallery__plaque h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

/* ==========================================================================
   HERO FAQ — centered content, framed background image
   ========================================================================== */
.hero-faq {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px var(--gutter) 90px;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.hero-faq__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-faq__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.08);
  will-change: transform;
}

.hero-faq__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 75% at center, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.9) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, transparent 30%, rgba(10, 10, 10, 0.8) 100%);
  pointer-events: none;
}

.hero-faq__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-faq__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
}

.hero-faq__kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

.hero-faq__kicker a { color: inherit; }

.hero-faq__title {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--text);
  max-width: 18ch;
  margin: 2px 0 4px;
}

.hero-faq__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-faq__lead {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 58ch;
}

.hero-faq__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-faq__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.hero-faq__chip:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(230, 57, 70, 0.22);
}

.hero-faq__chip::before {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.18);
  color: var(--red);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
}

.hero-faq__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-faq__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255, 255, 255, 0.6), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}

@media (max-width: 620px) {
  .hero-faq__title { font-size: clamp(2.4rem, 12vw, 4.5rem); }
  .hero-faq__chips { gap: 8px; }
  .hero-faq__chip { padding: 8px 14px; font-size: 0.68rem; }
}

/* ==========================================================================
   HERO IMAGE — full-bleed image background
   ========================================================================== */
.hero-image {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.hero-image__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image__media img,
.elementor .hero-image__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-image__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.15) 75%, rgba(10, 10, 10, 0.1) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 35%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}

.hero-image__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: center;
}

.hero-image__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 780px;
}

.hero-image__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
}

.hero-image__kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

.hero-image__kicker a { color: inherit; }

.hero-image__title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--text);
  margin-block: 4px 8px;
}

.hero-image__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-image__lead {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 52ch;
}

.hero-image__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-image__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.hero-image__tag:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(230, 57, 70, 0.25);
}

.hero-image__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.hero-image__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: start;
  margin-top: 80px;
}

.hero-image__side-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-image__side-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.hero-image__side-num small {
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 700;
}

.hero-image__side-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 24ch;
}

.hero-image__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-image__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255, 255, 255, 0.6), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}

@media (max-width: 980px) {
  .hero-image__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image__side { margin-top: 0; max-width: 320px; }
}

@media (max-width: 620px) {
  .hero-image { padding-top: 120px; padding-bottom: 70px; }
  .hero-image__title { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .hero-image__side-num { font-size: 2.2rem; }
}

/* ==========================================================================
   HERO REPROG — horizontal stack (image top, content bottom)
   ========================================================================== */
.hero-reprog {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 90px;
  display: grid;
  grid-template-rows: 1.05fr 1fr;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-reprog__top {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-reprog__top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.08);
  will-change: transform;
}

.hero-reprog__top::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 35%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.6) 0%, transparent 45%);
  pointer-events: none;
}

.hero-reprog__top-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.hero-reprog__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-reprog__kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--red);
}

.hero-reprog__kicker a { color: inherit; }

.hero-reprog__counter {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
  text-align: right;
}

.hero-reprog__counter small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.hero-reprog__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-reprog__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(255,255,255,0.65), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}

.hero-reprog__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 5vh, 64px) 0;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.hero-reprog__bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 2px;
  background: var(--red);
}

.hero-reprog__title {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 15ch;
}

.hero-reprog__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-reprog__side {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-reprog__lead {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 44ch;
}

.hero-reprog__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-reprog__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-reprog__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.hero-reprog__tag:hover {
  border-color: var(--red);
  color: var(--text);
  background: var(--bg-card);
}

.hero-reprog__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

@media (max-width: 980px) {
  .hero-reprog { grid-template-rows: 0.9fr auto; padding-top: 80px; min-height: auto; }
  .hero-reprog__top { min-height: 40vh; }
  .hero-reprog__bottom { grid-template-columns: 1fr; gap: 24px; padding: 40px var(--gutter); }
}

@media (max-width: 620px) {
  .hero-reprog__counter { font-size: 1.6rem; }
  .hero-reprog__counter small { font-size: 0.62rem; }
}

/* ==========================================================================
   HERO ABOUT — full-bleed canvas background
   ========================================================================== */
.hero-about {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 70px;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
}

.hero-about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-about__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.15) 35%, rgba(10, 10, 10, 0.96) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.65) 0%, transparent 60%);
  pointer-events: none;
}

.hero-about__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 360px;
  gap: 60px;
  align-items: end;
}

.hero-about__content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-about__mono {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.hero-about__mono::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-about__title {
  font-size: clamp(2.6rem, 6.5vw, 6.2rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 13ch;
  color: var(--text);
  margin-bottom: 30px;
}

.hero-about__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-about__lead {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 44ch;
  margin-bottom: 42px;
  font-weight: 400;
}

.hero-about__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-about__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-about__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-about__stat-num {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
}

.hero-about__stat-num em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}

.hero-about__stat-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Scroll indicator — animated mouse + text */
.hero-about__scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3;
  pointer-events: none;
}

.hero-about__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollTextFade 2.4s ease-in-out infinite;
}

.hero-about__scroll-mouse {
  position: relative;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
}

.hero-about__scroll-wheel {
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollWheel 1.8s cubic-bezier(0.6, 0.05, 0.28, 0.91) infinite;
}

@keyframes scrollTextFade {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.hero-about__sidebar {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.hero-about__sidebar span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.hero-about__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  margin: clamp(16px, 2vw, 28px) clamp(16px, 2vw, 28px) clamp(16px, 2vw, 28px) 0;
}

.hero-about__bg img,
.hero-about__bg canvas,
.hero-about__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-about__media-fallback { z-index: 0; }
.hero-about__bg canvas { z-index: 1; }

.hero-about__bg.is-scroller-ready .hero-about__media-fallback {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.7));
  pointer-events: none;
}

.hero-about__caption {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-about__caption em {
  font-style: italic;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
}

.hero-about__caption-num {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: right;
}

.hero-about__caption-num small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero-about { padding-top: 90px; padding-bottom: 50px; }
  .hero-about__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-about__sidebar { display: none; }
  .hero-about__bg canvas { display: none; }
  .hero-about__side { padding: 18px; }
}

@media (max-width: 620px) {
  .hero-about__stats { grid-template-columns: 1fr 1fr; }
  .hero-about__stats .hero-about__stat:nth-child(3) { grid-column: span 2; }
}

/* ==========================================================================
   STATEMENT — huge type, nothing else
   ========================================================================== */
.statement {
  padding-block: clamp(140px, 22vh, 280px);
  border-bottom: 1px solid var(--line);
}

.statement__text {
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 18ch;
  color: var(--text);
}

.statement__text em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}

.statement__foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 100px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.statement__foot-mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

.statement__foot-mono strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-family: var(--font);
  font-size: 0.96rem;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.statement__foot-mid {
  justify-self: center;
  width: 40px;
  height: 1px;
  background: var(--line-strong);
}

/* ==========================================================================
   WORK — editorial services, no cards, big hover imagery
   ========================================================================== */
.work {
  padding-block: clamp(110px, 16vh, 180px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.work__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 9vh, 110px);
}

.work__head h2 { max-width: 14ch; }
.work__head h2 em { font-style: italic; font-weight: 700; color: var(--red); }

.work__head p {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  max-width: 42ch;
  margin-left: auto;
}

.work__list {
  position: relative;
}

.work__item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding var(--t-med) var(--ease);
}

.work__item:last-child { border-bottom: 1px solid var(--line); }

.work__item::before {
  content: '';
  position: absolute;
  left: -100vw;
  right: -100vw;
  top: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.work__item:hover::before { transform: scaleX(1); }

.work__item-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  transition: color var(--t-fast);
}

.work__item-title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  transition: color var(--t-fast), transform var(--t-med) var(--ease);
}

.work__item-title em { font-style: italic; font-weight: 600; color: var(--red); }

.work__item:hover .work__item-title { color: var(--red); transform: translateX(8px); }
.work__item:hover .work__item-num { color: var(--red); }

.work__item-arrow {
  font-size: 1.4rem;
  color: var(--text-mute);
  transition: color var(--t-fast), transform var(--t-fast);
}

.work__item:hover .work__item-arrow { color: var(--red); transform: translate(4px, -4px); }

.work__item-desc {
  display: none;
  font-size: 0.96rem;
  color: var(--text-mute);
  margin-top: 12px;
  max-width: 52ch;
  line-height: 1.5;
}

/* Floating image that follows cursor on hover */
.work__preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 340px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  z-index: 50;
}

.work__preview.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.work__preview img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FULL-BLEED DATA — photo + headline overlay
   ========================================================================== */
.data {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.data__media { position: absolute; inset: 0; z-index: 0; }
.data__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.data__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 70%, rgba(10,10,10,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%);
}

.data__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(100px, 16vh, 180px) var(--gutter);
}

.data__tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.data__tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}

.data__headline {
  font-size: clamp(2.6rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 14ch;
  color: var(--text);
}

.data__headline strong {
  color: var(--red);
  font-weight: 700;
}

.data__details {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.data__detail {
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.data__detail:last-child { border-right: 0; }

.data__detail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.data__detail-val {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  color: var(--text);
}

.data__detail-val.red { color: var(--red); }

.data__foot {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-soft);
  max-width: 52ch;
}

/* ==========================================================================
   RED BLOCK — a color break, vehicles section
   ========================================================================== */
.red-block {
  background: var(--red);
  color: #fff;
  padding-block: clamp(110px, 16vh, 180px);
  overflow: hidden;
}

.red-block__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(50px, 8vh, 90px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.red-block__head h2 {
  color: #fff;
  max-width: 16ch;
  font-weight: 700;
}

.red-block__head p {
  color: rgba(255,255,255,0.85);
  max-width: 38ch;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
}

.red-block__head .mono { color: rgba(255,255,255,0.7); }

.vehicle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  background: #000;
}

.v-card img,
.elementor .v-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
  filter: grayscale(0.15);
}

.v-card:hover img { transform: scale(1.05); }

.v-card__inner {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 40%, rgba(0,0,0,0.9) 100%);
}

.v-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.v-card__top span:last-child { opacity: 0.7; }

.v-card__title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.v-card__title em { font-style: italic; font-weight: 600; }

.v-card__meta {
  margin-top: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  max-width: 32ch;
}

/* ==========================================================================
   GARAGE — photo essay, asymmetric
   ========================================================================== */
.garage {
  padding-block: clamp(110px, 16vh, 180px);
  border-bottom: 1px solid var(--line);
}

.garage__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.garage__head h2 { max-width: 18ch; }
.garage__head h2 em { font-style: italic; font-weight: 700; color: var(--red); }

.garage__head p {
  max-width: 42ch;
  margin-left: auto;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
}

.garage__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}

.garage__cell {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
}

.garage__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.garage__cell:hover img { transform: scale(1.04); }

.garage__cell--1 { grid-column: span 7; grid-row: span 2; aspect-ratio: auto; min-height: 520px; }
.garage__cell--2 { grid-column: span 5; aspect-ratio: 5 / 4; }
.garage__cell--3 { grid-column: span 5; aspect-ratio: 5 / 4; }
.garage__cell--4 { grid-column: span 4; aspect-ratio: 4 / 5; }
.garage__cell--5 { grid-column: span 8; aspect-ratio: 8 / 5; }

/* ==========================================================================
   VOICE — ONE big testimonial
   ========================================================================== */
.voice {
  padding-block: clamp(110px, 16vh, 180px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.voice__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: left;
}

.voice__mono {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.voice__mono::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}

.voice__quote {
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 20ch;
}

.voice__quote em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}

.voice__author {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

.voice__author strong {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.voice__rating {
  color: var(--red);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ==========================================================================
   CONTACT + FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.contact-info__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info__item .contact-info__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 4px;
  font-weight: 400;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

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

.map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: 32px;
  filter: grayscale(0.5) invert(0.92) hue-rotate(180deg) contrast(0.94);
}

.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Full-width map section */
.map-section {
  padding: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map--full {
  width: 100%;
  aspect-ratio: auto;
  height: clamp(380px, 55vh, 620px);
  margin: 0;
  border: 0;
  border-radius: 0;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__field { display: flex; flex-direction: column; gap: 8px; }

.form__field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.form__field input,
.form__field textarea {
  padding: 16px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.98rem;
  font-family: var(--font);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-card);
}

.form__field textarea { resize: vertical; min-height: 160px; }

.form__hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.5;
}

.form__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.form__consent a {
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
}

[data-form-status] {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  margin-top: 6px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form__row { grid-template-columns: 1fr; }
  .contact-info__item { grid-template-columns: 1fr; gap: 6px; }
  .contact-info__item .contact-info__label { padding-top: 0; }
}

/* ==========================================================================
   ACCORDION (FAQ)
   ========================================================================== */
.accordion { border-top: 1px solid var(--line); }

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 30px 4px;
  text-align: left;
  font-family: var(--font);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
  transition: color var(--t-fast);
}

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

.accordion__trigger__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  margin-right: 20px;
  flex-shrink: 0;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.accordion__icon {
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
}

.accordion__icon::before { width: 14px; height: 1.5px; }
.accordion__icon::after {
  width: 1.5px;
  height: 14px;
  transition: transform var(--t-med) var(--ease);
}

.accordion__item.is-open .accordion__icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-med) var(--ease);
}

.accordion__panel-inner {
  padding: 0 4px 30px 62px;
}

.accordion__panel p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: none;
}

.accordion__panel p + p { margin-top: 14px; }

.accordion__panel strong { color: var(--text); font-weight: 600; }

@media (max-width: 620px) {
  .accordion__trigger { padding: 24px 4px; }
  .accordion__trigger__num { margin-right: 14px; font-size: 0.72rem; }
  .accordion__icon { width: 32px; height: 32px; }
  .accordion__icon::before { width: 12px; }
  .accordion__icon::after { height: 12px; }
  .accordion__panel-inner { padding: 0 4px 26px 4px; }
}

/* ==========================================================================
   GALLERY — masonry-style grid
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: border-color var(--t-med);
}

.gallery__item:hover { border-color: var(--line-strong); }

.gallery__item img,
.elementor .gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease), filter var(--t-med);
  filter: brightness(0.78) saturate(0.92);
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.95));
  pointer-events: none;
}

.gallery__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
}

.gallery__caption h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
}

.gallery__caption span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; gap: 10px; }
}

/* ==========================================================================
   CTA BLOCK (kept) — with animated gradient orbs
   ========================================================================== */
.cta-block {
  position: relative;
  padding: clamp(110px, 16vh, 180px) 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
  z-index: 3;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.cta-block__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.cta-block__orb--1 {
  top: -15%;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.38) 0%, transparent 65%);
  transform: translateX(-50%);
  animation: cta-pulse 9s ease-in-out infinite;
}

.cta-block__orb--2 {
  bottom: -25%;
  left: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.22) 0%, transparent 65%);
  animation: cta-float-a 14s ease-in-out infinite;
}

.cta-block__orb--3 {
  top: 25%;
  right: 5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.18) 0%, transparent 65%);
  animation: cta-float-b 17s ease-in-out infinite;
}

.cta-block__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  opacity: 0.6;
  animation: cta-grid-drift 28s linear infinite;
}

.cta-block > .container { position: relative; z-index: 2; }

@keyframes cta-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

@keyframes cta-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(60px, -40px) scale(1.08); opacity: 1; }
  66% { transform: translate(-30px, 30px) scale(0.95); opacity: 0.8; }
}

@keyframes cta-float-b {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(-50px, 20px); opacity: 1; }
}

@keyframes cta-grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 70px 70px, 70px 70px; }
}

.cta-block__mono {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.cta-block h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.cta-block h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}

.cta-block p {
  margin: 28px auto 40px;
  max-width: 54ch;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.cta-block__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================================
   FOOTER — minimal
   ========================================================================== */
.footer {
  background: var(--bg);
  padding-block: clamp(60px, 9vh, 100px) 28px;
}

.footer__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 0.96rem;
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 38ch;
}

.footer__brand-contact {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__brand-contact a { transition: color var(--t-fast); }
.footer__brand-contact a:hover { color: var(--red); }

.footer__col .footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  font-weight: 400;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--red); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.footer__bottom a { color: var(--text-mute); margin-inline: 4px; transition: color var(--t-fast); }
.footer__bottom a:hover { color: var(--red); }

.footer__social { display: flex; gap: 10px; }

.footer__social a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  transition: all var(--t-fast);
}

.footer__social a:hover { border-color: var(--red); background: var(--red); color: #fff; }
.footer__social svg { width: 15px; height: 15px; }

/* ==========================================================================
   WHATSAPP FAB
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(37, 211, 102, 0.5);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 18px 46px -8px rgba(37, 211, 102, 0.7); }

.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.whatsapp-fab svg { width: 26px; height: 26px; }

/* ==========================================================================
   PAGE HERO (for inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75), rgba(10,10,10,0.97)), linear-gradient(90deg, rgba(10,10,10,0.88), transparent 70%);
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__inner { position: relative; z-index: 1; }

.page-hero h1 { margin-top: 24px; max-width: 16ch; font-size: clamp(2.8rem, 7vw, 6rem); }
.page-hero h1 em { font-style: italic; font-weight: 800; color: var(--red); }

.page-hero__lead {
  margin-top: 28px;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--text-dim); }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }
.center { text-align: center; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.07s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.35s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .work__head,
  .garage__head,
  .data__details { grid-template-columns: 1fr 1fr; }
  .red-block__head { grid-template-columns: 1fr; gap: 24px; }
  .vehicle-row { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .garage__grid { grid-template-columns: repeat(6, 1fr); }
  .garage__cell--1 { grid-column: span 6; min-height: 400px; }
  .garage__cell--2,
  .garage__cell--3 { grid-column: span 3; }
  .garage__cell--4,
  .garage__cell--5 { grid-column: span 3; }

  .welcome__grid,
  .binary__inner,
  .ecu__grid,
  .reprogs__head { grid-template-columns: 1fr; gap: 30px; }
  .reprogs__grid { grid-template-columns: 1fr 1fr; }
  .reprogs__grid .reprog-card:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 1080px) {
  .nav__phone span { display: none; }
  .nav__phone { padding: 10px; border: 1px solid var(--line-strong); }
  .nav__divider { display: none; }
}

@media (max-width: 860px) {
  .nav { padding-block: 14px; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__menu,
  .nav__cta,
  .nav__utils { display: none; }
  .nav__toggle {
    display: inline-flex;
    justify-self: end;
  }
  .nav__logo img { height: 44px; }

  /* Nav open state — nav itself becomes fullscreen overlay */
  .nav.is-open,
  .nav.is-open.is-scrolled {
    inset: 0;
    height: 100vh;
    height: 100svh;
    background: var(--bg);
    border-bottom: 0;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow-y: auto;
  }

  /* Inner becomes grid with 3 rows: header, menu, contact */
  .nav.is-open .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    min-height: 100%;
    max-width: none;
    padding: 14px 24px calc(28px + env(safe-area-inset-bottom));
    gap: 0;
  }

  .nav.is-open .nav__logo { grid-column: 1; grid-row: 1; align-self: center; }
  .nav.is-open .nav__toggle { grid-column: 2; grid-row: 1; align-self: center; }

  /* Menu items flow naturally in middle row */
  .nav.is-open .nav__menu {
    display: flex;
    flex-direction: column;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 40px 0 40px;
    gap: 0;
  }

  .nav.is-open .nav__menu a {
    display: block;
    padding: 20px 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    transition: color var(--t-fast);
  }

  .nav.is-open .nav__menu a:first-child { border-top: 1px solid var(--line); }
  .nav.is-open .nav__menu a::after { display: none; }
  .nav.is-open .nav__menu a > span { display: none; }
  .nav.is-open .nav__menu a:active,
  .nav.is-open .nav__menu a.is-active { color: var(--red); }

  /* Contact area flows naturally below menu — no fixed positioning */
  .nav.is-open .nav__utils {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 14px;
    align-items: center;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

  .nav.is-open .nav__divider { display: none; }

  .nav.is-open .nav__phone {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    padding: 0;
    border: 0;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    gap: 10px;
    align-items: center;
  }
  .nav.is-open .nav__phone svg { width: 15px; height: 15px; color: var(--red); }
  .nav.is-open .nav__phone span { display: inline; }

  .nav.is-open .nav__social {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .nav.is-open .nav__cta {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.96rem;
    width: 100%;
  }

  .nav.is-open .whatsapp-fab { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .work__head,
  .garage__head { grid-template-columns: 1fr; gap: 24px; }
  .work__head p,
  .garage__head p { margin-left: 0; }
  .data__details { grid-template-columns: 1fr 1fr; }
  .vehicle-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .statement__foot { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .statement__foot-mid { display: none; }

  .work__item { grid-template-columns: 40px 1fr 30px; gap: 16px; padding: 22px 0; }
  .work__preview { display: none; }
  .garage__grid { grid-template-columns: 1fr; }
  .garage__cell--1,
  .garage__cell--2,
  .garage__cell--3,
  .garage__cell--4,
  .garage__cell--5 { grid-column: 1; min-height: auto; aspect-ratio: 4/3; }

  .reprogs__grid { grid-template-columns: 1fr; }
  .reprogs__grid .reprog-card:nth-child(3) { grid-column: 1; }
  .ecu__methods { grid-template-columns: 1fr; }
  .welcome__body-signature { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { padding-top: 120px; padding-bottom: 60px; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 5rem); }
  .statement__text { font-size: clamp(2rem, 9vw, 3.2rem); }
  .data__details { grid-template-columns: 1fr; border-right: 0; }
  .data__detail { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .data__detail:last-child { border-bottom: 0; }
  .voice__quote { font-size: clamp(1.6rem, 8vw, 2.6rem); }
  .nav__logo img { height: 48px; }
  .nav.is-scrolled .nav__logo img { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

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

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

/* ==========================================================================
   Elementor override — force full-cover for all theme image containers.
   Elementor's default `.elementor img { height: auto }` breaks object-fit.
   ========================================================================== */
.elementor .split__media img,
.elementor .reprog-card__media img,
.elementor .ecu__visual img,
.elementor .hero-image__media img,
.elementor .hero-about__bg img,
.elementor .v-card img,
.elementor .gallery__item img,
.elementor .principles__media img {
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
}

/* ==========================================================================
   Gallery CPT — archive + single templates
   ========================================================================== */

/* Grid */
.archive-gallery {
	padding: clamp(60px, 9vh, 110px) 0;
}

.archive-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: clamp(24px, 3vw, 40px);
}

.gallery-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-elev);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform var(--t-med) var(--ease), border-color var(--t-med);
}

.gallery-card:hover {
	transform: translateY(-4px);
	border-color: var(--red);
}

.gallery-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bg-card);
}

.gallery-card__media img,
.elementor .gallery-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--t-slow) var(--ease), filter var(--t-med);
	filter: brightness(0.92);
}

.gallery-card:hover .gallery-card__media img {
	transform: scale(1.05);
	filter: brightness(1);
}

.gallery-card__count {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	padding: 6px 12px;
	background: rgba(10, 10, 10, 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text);
	letter-spacing: 0.08em;
}

.gallery-card__body {
	padding: 24px 26px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.gallery-card__title {
	margin: 0;
	font-size: 1.45rem;
	letter-spacing: -0.018em;
	line-height: 1.2;
}

.gallery-card__excerpt {
	margin: 0;
	color: var(--text-mute);
	font-size: 0.94rem;
	line-height: 1.55;
}

.gallery-card__cta {
	margin-top: auto;
	padding-top: 8px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
}

.archive-gallery__pagination {
	margin-top: clamp(40px, 5vh, 60px);
	display: flex;
	justify-content: center;
}

.archive-gallery__pagination ul {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.archive-gallery__pagination a,
.archive-gallery__pagination span {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--text);
	text-decoration: none;
	transition: border-color var(--t-fast), background var(--t-fast);
}

.archive-gallery__pagination a:hover {
	border-color: var(--red);
	background: rgba(229, 62, 62, 0.08);
}

.archive-gallery__pagination .current {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

.archive-gallery__empty {
	color: var(--text-mute);
	font-size: 1.05rem;
	text-align: center;
	padding: 60px 0;
}

/* Single — hero */
.single-gallery-hero {
	position: relative;
	min-height: clamp(420px, 60vh, 640px);
	padding: 200px 0 60px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--bg);
}

.single-gallery-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.single-gallery-hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.95) 100%);
	pointer-events: none;
}

.single-gallery-hero__media img,
.elementor .single-gallery-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.85);
}

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

.single-gallery-hero__kicker {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-mute);
	margin-bottom: 22px;
}

.single-gallery-hero__kicker a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.single-gallery-hero__title {
	font-size: clamp(2.6rem, 6.5vw, 5.4rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
	margin: 0 0 18px;
}

.single-gallery-hero__meta {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(229, 62, 62, 0.12);
	border: 1px solid var(--red);
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	color: var(--red);
}

.single-gallery-content {
	padding: clamp(60px, 8vh, 100px) 0 clamp(20px, 3vh, 40px);
}

.single-gallery-content__body {
	color: var(--text-soft);
	font-size: 1.08rem;
	line-height: 1.7;
}

.single-gallery-content__body p { margin: 0 0 1.4em; }
.single-gallery-content__body h2 { font-size: 1.8rem; margin: 1.6em 0 0.6em; }
.single-gallery-content__body h3 { font-size: 1.4rem; margin: 1.4em 0 0.5em; }

.single-gallery-grid-wrap {
	padding: clamp(20px, 3vh, 40px) 0 clamp(60px, 9vh, 110px);
}

.single-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
	gap: clamp(16px, 2vw, 28px);
}

.single-gallery-grid__item {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: 4px;
}

.single-gallery-grid__item img,
.elementor .single-gallery-grid__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--t-slow) var(--ease), filter var(--t-med);
	filter: brightness(0.9);
}

.single-gallery-grid__item:hover img {
	transform: scale(1.05);
	filter: brightness(1);
}

.single-gallery-back {
	padding: 0 0 clamp(80px, 11vh, 140px);
}

@media (max-width: 768px) {
	.archive-gallery__grid { grid-template-columns: 1fr; }
	.single-gallery-grid { grid-template-columns: 1fr; }
	.single-gallery-hero { padding-top: 140px; min-height: 360px; }
}
