/* =========================================================
   GV 4X4 — Rebrand 2026
   Black primary · Yellow secondary
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --line: #232323;
  --ink: #f5f5f5;
  --ink-dim: #a3a3a3;
  --ink-mute: #6b6b6b;
  --yellow: #f5e300;
  --yellow-2: #ffe600;
  --yellow-3: #fff48a;
  --red: #ff2d2d;

  --t-display: "Antonio", "Archivo Black", system-ui, sans-serif;
  --t-text: "Inter", system-ui, sans-serif;
  --t-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --max: 1480px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--yellow); color: #000; }

html, body {
  background: var(--bg);
  background-image:
    linear-gradient(rgba(245, 227, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 227, 0, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--t-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { cursor: none; }
body.loaded { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; background: none; border: 0; outline: 0; }

/* ============= CUSTOM CURSOR ============= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
}
.cursor__ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .3s, background .3s;
}
.cursor__dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.is-lg .cursor__ring { width: 64px; height: 64px; background: var(--yellow); border-color: var(--yellow); }
.cursor.is-lg .cursor__dot { background: #000; }
.cursor.is-text .cursor__ring { width: 80px; height: 80px; border-color: var(--yellow); }

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ============= PRELOADER ============= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: grid;
  place-items: center;
}
.preloader__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.preloader__count {
  font-family: var(--t-display);
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.preloader__bar {
  margin: 14px auto 0;
  width: min(420px, 60vw);
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar > span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--yellow);
  transition: width 0.05s linear;
}
.preloader__label {
  margin-top: 16px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}
.preloader__curtain {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateY(100%);
  z-index: 1;
}
.preloader.is-done .preloader__curtain { transform: translateY(0%); }
.preloader.is-out { pointer-events: none; }

/* ============= TOP MARQUEE ============= */
.topbar {
  position: relative;
  z-index: 50;
  background: var(--yellow);
  color: #000;
  overflow: hidden;
  padding: 8px 0;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}
.topbar__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 28px;
}
.topbar .dot { color: #000; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============= NAV ============= */
.nav {
  position: fixed;
  top: 35px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), top .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  top: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--line);
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--t-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav__logo-mark { color: var(--ink); }
.nav__logo-sep { color: var(--yellow); }
.nav__logo-text { color: var(--yellow); }
.nav__menu {
  display: flex;
  gap: 36px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__menu a {
  position: relative;
  color: var(--ink-dim);
  transition: color .3s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width .3s var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { width: 100%; }

.nav__ctas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--yellow);
  color: #000;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.nav__cta svg { width: 16px; height: 16px; }
.nav__cta:hover { background: var(--ink); color: #000; transform: translateY(-2px); }

.nav__cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 11px 18px;
}
.nav__cta--ghost:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

@media (max-width: 1180px) {
  .nav__cta--ghost { display: none; }
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, top .3s, opacity .3s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav.is-menu .nav__burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.is-menu .nav__burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .nav__menu { display: none; }
  .nav__ctas { display: none; }
  .nav__burger { display: block; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  font-family: var(--t-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { color: var(--ink); transition: color .3s; }
.mobile-menu a:hover { color: var(--yellow); }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(80px + 35px) var(--pad) 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__image {
  position: absolute;
  inset: 0;
  background-image: url('images/gv_hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  filter: saturate(0.7) contrast(1.05) brightness(0.55);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.18); }
  to { transform: scale(1.02); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 227, 0, 0.06) 0%, transparent 50%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  align-self: end;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(245, 227, 0, 0.1);
  border: 1px solid rgba(245, 227, 0, 0.4);
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.hero__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(245, 227, 0, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 227, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(245, 227, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 227, 0, 0); }
}

.hero__title {
  font-family: var(--t-display);
  font-size: clamp(80px, 18vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 32px;
  text-transform: uppercase;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__word {
  display: inline-block;
  color: var(--ink);
  transform: translateY(110%);
  animation: rise 1s var(--ease-out) forwards;
}
.hero__word--outline {
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
  text-shadow: 0 0 60px rgba(245, 227, 0, 0.3);
  animation-delay: 0.15s;
}
@keyframes rise {
  to { transform: translateY(0); }
}

.hero__sub {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__sub-line {
  flex: 0 0 40px;
  height: 2px;
  background: var(--yellow);
  margin-top: 14px;
}
.hero__sub p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__sub em {
  font-style: normal;
  color: var(--yellow);
  font-family: var(--t-display);
  font-size: 1.4em;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--yellow); color: #000; }
.btn--primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245, 227, 0, 0.25); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--ink); color: #000; border-color: var(--ink); }
.btn--xl { padding: 22px 40px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }
.btn__arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(6px); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--max);
  margin: 40px auto 0;
  width: 100%;
  align-self: end;
}
.stat {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  padding: 24px;
}
.stat__num {
  font-family: var(--t-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__suf { color: var(--yellow); font-size: 0.7em; }
.stat__lbl {
  margin-top: 8px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 30%;
  background: var(--yellow);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

.hero__corner {
  position: absolute;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  z-index: 2;
}
.hero__corner--tl { top: 130px; left: var(--pad); }
.hero__corner--tr { top: 130px; right: var(--pad); }
.hero__corner--bl { bottom: 40px; left: var(--pad); }
.hero__corner--br { bottom: 40px; right: var(--pad); }
@media (max-width: 900px) {
  .hero__corner { display: none; }
  .hero__scroll { display: none; }
}

/* ============= MARQUEE ============= */
.marquee {
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding-left: 36px;
  font-family: var(--t-display);
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.marquee__star { color: var(--yellow); }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 36s; }

/* ============= SECTION TAG ============= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.section-tag__num {
  font-family: var(--t-display);
  font-size: 18px;
  letter-spacing: 0;
  color: var(--yellow);
}
.section-tag__line {
  width: 50px;
  height: 1px;
  background: var(--yellow);
}
.section-tag__text { color: var(--ink-dim); }

/* ============= DISPLAY HEADINGS ============= */
.display {
  font-family: var(--t-display);
  font-size: clamp(40px, 6.5vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.hl {
  color: var(--yellow);
  font-style: italic;
  font-family: var(--t-display);
}
.hl::before { content: ""; }

.lead {
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 20px;
}

p { color: var(--ink-dim); }
p strong { color: var(--ink); font-weight: 500; }

/* ============= ABOUT ============= */
.about {
  padding: 140px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
}
.about__right p { font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .3s, color .3s, border-color .3s;
}
.pill:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }

.about__media {
  margin-top: 80px;
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.about__media-img {
  position: absolute;
  inset: 0;
  background-image: url('images/gv_chisiamo.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  filter: saturate(0.7) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.about__media.is-in .about__media-img { transform: scale(1); }
.about__media-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}
.about__media-caption span { color: var(--yellow); }

/* ============= SERVICES ============= */
.services {
  padding: 140px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.services__head { max-width: 900px; margin-bottom: 80px; }
.services__intro {
  margin-top: 28px;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
}
.svc {
  position: relative;
  padding: 56px 48px 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), border-color .5s;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateY(100%);
  transition: transform .6s var(--ease);
  z-index: -1;
}
.svc:hover { border-color: var(--yellow); transform: translateY(-6px); }
.svc:hover::before { transform: translateY(0%); }
.svc:hover { color: #000; }
.svc:hover .svc__desc,
.svc:hover .svc__list li { color: #000; }
.svc:hover .svc__num { color: #000; border-color: #000; }
.svc:hover .svc__title { color: #000; }
.svc--accent { background: var(--bg-3); }
.svc__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--t-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--yellow);
  transition: border-color .5s, color .5s;
}
.svc__title {
  font-family: var(--t-display);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 700;
  transition: color .5s;
}
.svc__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 24px;
  max-width: 540px;
  transition: color .5s;
}
.svc__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.svc__list li {
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding-left: 24px;
  transition: color .5s;
}
.svc__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
  transition: color .5s;
}
.svc:hover .svc__list li::before { color: #000; }
.svc__bigword {
  margin-top: 32px;
  font-family: var(--t-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

/* ============= CHASSIS ============= */
.chassis {
  padding: 140px var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chassis__head { max-width: var(--max); margin: 0 auto 80px; }
.chassis__intro {
  margin-top: 28px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
}
.chassis__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
@media (max-width: 1100px) {
  .chassis__grid { grid-template-columns: repeat(2, 1fr); }
  .ch--wide { grid-column: span 1 !important; }
  .ch { grid-column: span 1 !important; }
}
@media (max-width: 600px) {
  .chassis__grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
}
.ch {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  grid-column: span 2;
  background: var(--bg-3);
  isolation: isolate;
  transition: transform .5s var(--ease);
}
.ch--wide { grid-column: span 3; }
.ch:hover { transform: translateY(-6px); }
.ch__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform .8s var(--ease), filter .8s;
  filter: saturate(0.7) contrast(1.05) brightness(0.7);
}
.ch:hover .ch__img { transform: scale(1.15); filter: saturate(1) contrast(1.1) brightness(0.85); }
.ch__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%);
}
.ch__body {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
}
.ch__tag {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.ch__title {
  font-family: var(--t-display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.ch__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 380px;
  margin-bottom: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s, margin .5s;
}
.ch:hover .ch__desc { max-height: 100px; opacity: 1; margin-bottom: 16px; }
.ch__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.ch__more span { transition: transform .3s var(--ease); color: var(--yellow); }
.ch:hover .ch__more span { transform: translateX(6px); }

.chassis__cta {
  max-width: var(--max);
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.chassis__cta-note {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============= STATS BAND ============= */
.statsband {
  background: var(--yellow);
  color: #000;
  padding: 80px var(--pad);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.statsband__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 800px) {
  .statsband__inner { grid-template-columns: repeat(2, 1fr); }
}
.statsband__col {
  background: var(--yellow);
  padding: 24px;
  text-align: left;
}
.statsband__num {
  font-family: var(--t-display);
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.statsband__lbl {
  margin-top: 12px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

/* ============= PROCESS ============= */
.process {
  padding: 140px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.process__head { max-width: 900px; margin-bottom: 80px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .process__steps { grid-template-columns: 1fr; }
}
.step {
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.step:hover { border-color: var(--yellow); transform: translateY(-4px); }
.step__num {
  font-family: var(--t-display);
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--t-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 700;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* ============= GALLERY ============= */
.gallery {
  padding: 140px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__head { max-width: 900px; margin-bottom: 60px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
@media (max-width: 1000px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gfig--wide, .gfig--tall { grid-column: span 1 !important; grid-row: span 1 !important; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
.gfig {
  position: relative;
  grid-column: span 2;
  grid-row: span 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2);
}
.gfig--tall { grid-row: span 2; }
.gfig--wide { grid-column: span 2; }
.gfig__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  filter: saturate(0.8) contrast(1.05);
  transition: transform 1s var(--ease), filter .8s;
}
.gfig:hover .gfig__img { transform: scale(1.18); filter: saturate(1.05) contrast(1.1); }
.gfig figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}

/* ============= PARTNERS ============= */
.partners {
  padding: 100px var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners__head { max-width: var(--max); margin: 0 auto 50px; }
.partners__row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  font-family: var(--t-display);
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.partners__row .dot { color: var(--yellow); font-size: 0.5em; }

/* ============= BIG CTA ============= */
.bigcta {
  background: var(--yellow);
  color: #000;
  padding: 140px var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.bigcta__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bigcta__title {
  font-family: var(--t-display);
  font-size: clamp(60px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
}
.bigcta__title span { display: inline-block; }
.bigcta__title-y { color: transparent; -webkit-text-stroke: 2px #000; margin: 0 16px; font-style: italic; }
.bigcta__sub {
  font-size: clamp(17px, 1.3vw, 22px);
  color: rgba(0, 0, 0, 0.75);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.bigcta .btn--primary {
  background: #000;
  color: var(--yellow);
}
.bigcta .btn--primary:hover { background: var(--ink); color: var(--yellow); }

/* ============= CONTACT ============= */
.contact {
  padding: 140px var(--pad) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 60px; }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.contact__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .contact__list li { grid-template-columns: 1fr; gap: 6px; }
}
.contact__lbl {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-top: 4px;
}
.contact__list a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s, color .3s;
  display: inline-block;
  padding-bottom: 2px;
}
.contact__list a:hover { color: var(--yellow); border-color: var(--yellow); }
.contact__social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact__social a {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .3s, color .3s, border-color .3s;
}
.contact__social a:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }

.contact__form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
}
.contact__form-title {
  font-family: var(--t-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--ink);
  font-weight: 700;
}
.field {
  position: relative;
  margin-bottom: 28px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 20px 0 8px;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--yellow); }
.field label {
  position: absolute;
  left: 0; top: 20px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
  transition: top .3s var(--ease), font-size .3s, color .3s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -4px;
  font-size: 10px;
  color: var(--yellow);
}
.field input::placeholder,
.field textarea::placeholder { color: transparent; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 24px;
  cursor: pointer;
  line-height: 1.5;
}
.check input {
  width: 18px; height: 18px;
  accent-color: var(--yellow);
  margin-top: 2px;
  flex-shrink: 0;
}
.form__status {
  margin-top: 16px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  min-height: 1em;
}

.contact__map {
  margin-top: 100px;
  height: 420px;
  background:
    linear-gradient(180deg, transparent, rgba(245, 227, 0, 0.04)),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 227, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 227, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.contact__map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.contact__map-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245, 227, 0, 0.4);
  transform: translate(-50%, -50%);
  animation: mapPulse 2.4s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.contact__map-dot {
  position: relative;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(245, 227, 0, 0.8);
  display: block;
}
.contact__map-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  padding: 16px 22px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  z-index: 2;
  line-height: 1.6;
}

/* ============= FOOTER ============= */
.footer {
  background: #000;
  padding: 100px var(--pad) 28px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
}
.footer__brand {
  max-width: 320px;
}
.footer__logo {
  font-family: var(--t-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__logo span { color: var(--yellow); }
.footer__brand p {
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.footer__col h4 {
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 15px;
  color: var(--ink-dim);
  margin-bottom: 10px;
  transition: color .3s, transform .3s;
}
.footer__col a:hover { color: var(--yellow); transform: translateX(4px); }

.footer__big {
  font-family: var(--t-display);
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  text-align: center;
  margin: 60px 0 40px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}

.footer__bot {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 600px) {
  .hero { padding: 130px 20px 40px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px; }
  .svc { padding: 40px 28px; }
  .contact__form { padding: 32px 24px; }
  .footer { padding: 60px 20px 24px; }
  .bigcta { padding: 80px 20px; }
  .services, .chassis, .process, .gallery, .about, .contact { padding-left: 20px; padding-right: 20px; }
  .services, .chassis, .process, .gallery, .about, .contact { padding-top: 80px; padding-bottom: 80px; }
}

/* Smooth scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Reveal helper */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
