/* ==============================================
   VCC – Vintage Classic Customs
   style.css – Full RWD Stylesheet
   ============================================== */

/* ── Reset & Variables ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:         #1a1208;
  --clr-bg2:        #201508;
  --clr-bg3:        #150f05;
  --clr-surface:    #27190a;
  --clr-surface2:   #2f1e0c;
  --clr-border:     #4a3215;
  --clr-gold:       #c8941a;
  --clr-gold-light: #e8b44a;
  --clr-gold-pale:  #f0d080;
  --clr-amber:      #d97c1a;
  --clr-text:       #e8d8b0;
  --clr-text-muted: #9a8060;
  --clr-text-dim:   #6a5535;
  --clr-white:      #fff8ee;
  --clr-green:      #4a9a3a;
  --clr-orange:     #d07020;

  --ff-heading:   'Oswald', sans-serif;
  --ff-accent:    'Rajdhani', sans-serif;
  --ff-body:      'Open Sans', sans-serif;

  --container:    1200px;
  --gap:          clamp(16px, 3vw, 32px);
  --header-h:     80px;

  --shadow-gold: 0 0 20px rgba(200,148,26,.25);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ── Topbar ──────────────────────────────────── */
.topbar {
  background: var(--clr-bg3);
  border-bottom: 1px solid var(--clr-border);
  padding: 6px 0;
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topbar__tagline { opacity: 0.7; }

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-gold);
  font-weight: 600;
  transition: color var(--transition);
}
.topbar__phone:hover { color: var(--clr-gold-light); }

/* ── Header / Nav ────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, rgba(20,12,3,.97) 0%, rgba(26,18,8,.96) 100%);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.header__inner { position: relative; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 8px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__list--right { justify-content: flex-end; }

.nav__link {
  font-family: var(--ff-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--clr-gold);
  border-color: var(--clr-border);
}

.nav__gear { animation: spin 12s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding: 0 16px;
  position: relative;
  width: 110px; /* Reserves space in the flex container */
  height: 100%; /* Match header height */
}

.logo__emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers it, allowing it to protrude top and bottom */
  width: 115px; /* Significantly larger than header height */
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.logo__badge-img {
  width: 115px;
  height: 115px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(200,148,26,.6))
          drop-shadow(0 4px 10px rgba(0,0,0,.8));
  transition: filter 0.3s ease, transform 0.5s cubic-bezier(.16,1,.3,1);
  image-rendering: -webkit-optimize-contrast;
}
.logo:hover .logo__badge-img {
  filter: drop-shadow(0 0 25px rgba(200,148,26,1))
          drop-shadow(0 6px 18px rgba(0,0,0,.9));
  transform: rotate(8deg) scale(1.08);
}


/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav__drawer {
  display: none;
  background: var(--clr-bg3);
  border-top: 1px solid var(--clr-border);
  padding: 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.nav__drawer.is-open { max-height: 400px; }

.nav__drawer-list { padding: 0 var(--gap); }
.nav__drawer-link {
  display: block;
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}
.nav__drawer-link:hover { color: var(--clr-gold); }
.nav__drawer-link--phone {
  color: var(--clr-gold);
  margin-top: 8px;
  border-bottom: none;
}

/* ── Section Shared ──────────────────────────── */
.section { padding: clamp(48px, 8vw, 96px) 0; }

.section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: 0 var(--gap);
}

.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text);
  white-space: nowrap;
  text-align: center;
}

.section__title--sep { color: var(--clr-gold); margin: 0 4px; }

.section__deco {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  max-width: 200px;
}




/* ── Hero Section ────────────────────────────── */

/* Reveal classes – driven by JS */
.hero__reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1),
              transform 0.7s cubic-bezier(.16,1,.3,1);
}
.hero__reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__reveal.scale-reveal {
  transform: scale(0.8) rotate(-5deg);
}
.hero__reveal.scale-reveal.is-visible {
  transform: scale(1) rotate(0deg);
}

/* === Hero container === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080502;
}

/* Canvas: embers (lowest z) */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Parallax bg */
.hero__parallax {
  position: absolute;
  inset: -60px;
  z-index: 0;
}
.hero__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__layer--unified {
  background-image: url('images/hero_unified_jeep.jpg');
  opacity: 1;
}

/* Container that perfectly matches a 16:9 aspect ratio, 
   acting exactly like background-size: cover */
.hero__hl-scaler {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  pointer-events: none;
}

/* ══════════════════════════════════════
   JEEP SCENE
══════════════════════════════════════ */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

/* Ground horizon line */
.hero__ground {
  position: absolute;
  bottom: 28%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(120,80,30,.3) 20%,
    rgba(200,148,26,.15) 50%,
    rgba(120,80,30,.3) 80%,
    transparent 100%);
}

/* Headlight beam container */
.hero__hl-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero__hl-wrap.is-on { opacity: 1; }

/* Beam cones */
.hero__hl {
  position: absolute;
  height: 15%;
  clip-path: polygon(100% 40%, 100% 60%, 0% 100%, 0% 0%);
  pointer-events: none;
}
.hero__hl--l {
  top: 42%;
    left: -0.1%;
    width: 51%;
  background: linear-gradient(270deg,
    rgba(255,240,180,.25) 0%,
    rgba(255,220,120,.12) 50%,
    transparent 100%);
  transform: translateY(-4%);
}
.hero__hl--r {
  top: 40.5%;
    left: 8.5%;
    width: 51%;
  background: linear-gradient(270deg,
    rgba(255,240,180,.25) 0%,
    rgba(255,220,120,.12) 50%,
    transparent 100%);
  transform: translateY(4%);
}

/* Lens flare glow spots */
.hero__hl-lens {
  position: absolute;
  width: 7vw; height: 7vw;
  min-width: 60px; min-height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,220,0.95) 0%,
    rgba(255,220,100,.75) 25%,
    rgba(255,160,50,.35) 55%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(3px);
  transform: translate(-50%, -50%);
}
.hero__hl-wrap.is-on .hero__hl-lens { 
  opacity: 1; 
  animation: continuousFlicker 6s infinite;
}
.hero__hl-wrap.is-on .hero__hl {
  animation: cyclicStartFlicker 4s steps(1) infinite;
}

/* Exact positions matching the square lamps on the YJ */
.hero__hl-lens--l { left: 50.9%; top: 48.8%; }
.hero__hl-lens--r { left: 59%; top: 48.6%; }

/* Headlight animations */
@keyframes cyclicStartFlicker {
  0%, 93% { opacity: 1; }
  94% { opacity: 0.7; }
  95% { opacity: 1; }
  96% { opacity: 0.4; }
  97% { opacity: 1; }
  98% { opacity: 0.8; }
  99% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes continuousFlicker {
  0%, 100% { opacity: 1; filter: blur(3px) brightness(1); }
  2%  { opacity: 0.7; filter: blur(2px) brightness(0.8); }
  4%  { opacity: 1; filter: blur(3px) brightness(1); }
  45% { opacity: 0.9; }
  50% { opacity: 1; filter: blur(4px) brightness(1.1); }
  52% { opacity: 0.8; filter: blur(2px) brightness(0.8); }
  54% { opacity: 1; filter: blur(3px) brightness(1); }
  85% { opacity: 0.95; }
}

@keyframes hlFlicker {
  0%,100%  { opacity: 1; }
  15%      { opacity: 0.7; }
  30%      { opacity: 1; }
  45%      { opacity: 0.5; }
  60%      { opacity: 1; }
}
.hero__hl-wrap.flickering {
  animation: hlFlicker 0.18s steps(1) 3;
}

/* Roof light bar glow */
.hero__roofbar-glow {
  position: absolute;
  top: 28%;
  left: 55%; right: 20%;
  height: 3%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(255,250,230,.8) 0%,
    rgba(255,220,100,.4) 50%,
    transparent 80%);
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero__roofbar-glow.is-on { opacity: 1; }

/* FX canvas (wheels, dust, particles) */
.hero__fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Flash overlay */
.hero__flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%,
    rgba(255,210,100,.0) 0%,
    transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

/* ══════════════════════════════════════
   CINEMATIC OVERLAYS
══════════════════════════════════════ */
.hero__vignette {
  position: absolute;
  inset: 0; z-index: 8;
  background: radial-gradient(ellipse at center,
    transparent 25%, rgba(4,2,1,.6) 68%, rgba(4,2,1,.95) 100%);
  pointer-events: none;
}
.hero__scan {
  position: absolute;
  inset: 0; z-index: 9;
  background: repeating-linear-gradient(0deg,
    transparent, transparent 2px,
    rgba(0,0,0,.055) 2px, rgba(0,0,0,.055) 4px);
  pointer-events: none;
}
.hero__grain {
  position: absolute;
  inset: 0; z-index: 10;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  animation: grainShift 0.12s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  25% { background-position: -30px 20px; }
  50% { background-position: 20px -10px; }
  75% { background-position: -10px 30px; }
}

.hero__bar {
  position: absolute; left: 0; right: 0;
  height: 2px; z-index: 11; overflow: hidden;
}
.hero__bar--top { top: 0; }
.hero__bar--bot { bottom: 0; }
.hero__bar::before {
  content: ''; display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  animation: barSlide 3s ease-in-out infinite;
}
@keyframes barSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ══════════════════════════════════════
   HERO CONTENT
══════════════════════════════════════ */
.hero__content {
  position: relative;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(90px, 13vh, 130px);
  padding-bottom: clamp(80px, 12vh, 120px);
  width: 100%;
}

/* Text column */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow {
  font-family: var(--ff-accent);
  font-size: clamp(.56rem, 1.1vw, .7rem);
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  white-space: nowrap;
}
.hero__line-deco {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-light), transparent);
  min-width: 16px; max-width: 50px;
  opacity: .45;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--clr-white);
  gap: 3px;
}
.hero__title-row {
  display: block;
  text-shadow: 0 4px 40px rgba(0,0,0,.9);
}
.hero__title-row--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--clr-gold);
  text-stroke: 2px var(--clr-gold);
  filter: drop-shadow(0 0 18px rgba(200,148,26,.6));
}

.hero__subtitle {
  font-size: clamp(.78rem, 1.4vw, .9rem);
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 420px;
  border-left: 2px solid var(--clr-gold);
  padding-left: 14px;
}

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

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-accent);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 2px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .4s ease;
}
.btn:hover::after { transform: translateX(100%) skewX(-15deg); }
.btn--gold {
  background: linear-gradient(135deg, var(--clr-amber), var(--clr-gold));
  color: #080502; border: none;
  box-shadow: 0 4px 20px rgba(200,148,26,.4);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,148,26,.65); }
.btn--ghost {
  background: transparent; color: var(--clr-text);
  border: 1px solid rgba(200,148,26,.4);
}
.btn--ghost:hover { border-color: var(--clr-gold); color: var(--clr-gold); transform: translateY(-2px); }
.btn--outline {
  border: 2px solid var(--clr-gold); color: var(--clr-gold); background: transparent;
}
.btn--outline:hover { background: var(--clr-gold); color: var(--clr-bg); box-shadow: var(--shadow-gold); }

/* Stats */
.hero__stats {
  display: flex; align-items: center;
  background: rgba(8,5,2,.65);
  border: 1px solid var(--clr-border);
  border-radius: 2px; padding: 14px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 400px;
}
.hero__stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero__stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--clr-gold); line-height: 1;
  text-shadow: 0 0 20px rgba(200,148,26,.5);
}
.hero__stat-label {
  font-family: var(--ff-accent);
  font-size: .56rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--clr-text-muted); text-align: center; line-height: 1.2;
}
.hero__stat-sep {
  width: 1px; height: 36px;
  background: var(--clr-border); flex-shrink: 0; margin: 0 6px;
}

/* Visual column (badge) */
.hero__visual {
  position: relative; display: flex;
  flex-direction: column; align-items: center; gap: 16px;
  z-index: 16;
}
.hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--clr-gold); pointer-events: none;
}
.hero__ring--1 {
  width: 300px; height: 300px; top: 50%; left: 50%;
  transform: translate(-50%,-65%); opacity: .1;
  animation: ringPulse1 4s ease-in-out infinite;
}
.hero__ring--2 {
  width: 360px; height: 360px; top: 50%; left: 50%;
  transform: translate(-50%,-65%); opacity: .06;
  animation: ringPulse2 4s ease-in-out infinite 1s;
  border-style: dashed;
}
.hero__ring--3 {
  width: 420px; height: 420px; top: 50%; left: 50%;
  transform: translate(-50%,-65%); opacity: .03;
  animation: ringPulse1 4s ease-in-out infinite 2s;
}
@keyframes ringPulse1 {
  0%,100% { opacity: .1; transform: translate(-50%,-65%) scale(1); }
  50%     { opacity: .2; transform: translate(-50%,-65%) scale(1.03); }
}
@keyframes ringPulse2 {
  0%,100% { opacity: .06; transform: translate(-50%,-65%) scale(1) rotate(0deg); }
  50%     { opacity: .12; transform: translate(-50%,-65%) scale(1.04) rotate(180deg); }
}

.hero__badge-wrap { position: relative; z-index: 5; cursor: pointer; }
.hero__badge {
  width: clamp(180px, 24vw, 310px);
  height: auto; object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(200,148,26,.55))
          drop-shadow(0 0 60px rgba(200,148,26,.2))
          drop-shadow(0 20px 40px rgba(0,0,0,.9));
  animation: badgeSway 8s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
}
@keyframes badgeSway {
  0%,100% { transform: rotate(-1.5deg) scale(1); }
  50%     { transform: rotate(1.5deg) scale(1.02); }
}
.hero__badge-wrap:hover .hero__badge {
  filter: drop-shadow(0 0 50px rgba(200,148,26,.85))
          drop-shadow(0 20px 60px rgba(0,0,0,.9));
  animation-play-state: paused;
}
.hero__badge-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(200,148,26,.22) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%     { opacity: 1;  transform: scale(1.1); }
}

.hero__tag {
  background: rgba(8,5,2,.88);
  border: 1px solid var(--clr-gold);
  border-radius: 2px; padding: 5px 11px;
  font-family: var(--ff-accent);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--clr-gold);
  display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(6px);
  animation: tagFloat 3s ease-in-out infinite;
}
@keyframes tagFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
.hero__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 8px var(--clr-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(1.3); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.hero__scroll-track {
  display: block; width: 20px; height: 32px;
  border: 1.5px solid rgba(200,148,26,.4);
  border-radius: 10px; position: relative; overflow: hidden;
}
.hero__scroll-thumb {
  display: block; width: 4px; height: 7px;
  background: var(--clr-gold); border-radius: 2px;
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: 3px; opacity: 1; }
  70%  { top: 20px; opacity: .3; }
  71%  { top: 3px; opacity: 0; }
  100% { top: 3px; opacity: 1; }
}
.hero__scroll-label {
  font-family: var(--ff-accent);
  font-size: .52rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--clr-text-dim);
}

/* ── Hero RWD ── */
@media (max-width: 1024px) {
  .hero__jeep-wrap { width: clamp(380px, 52vw, 700px); }
}
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding-top: clamp(95px, 15vh, 125px);
  }
  .hero__visual { order: -1; flex-direction: row; justify-content: center; }
  .hero__badge { width: clamp(140px, 28vw, 220px); }
  .hero__jeep-wrap { width: 90vw; right: -100%; }
  .hero__ring { display: none; }
}
@media (max-width: 600px) {
  .hero__visual { flex-direction: column; }
  .hero__badge { width: clamp(130px, 48vw, 200px); }
  .hero__title-row--accent { -webkit-text-stroke-width: 1.5px; }
  .hero__stats { max-width: 100%; }
  .hero__hl, .hero__hl-lens { display: none; }
}



/* === Reveal animation classes === */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.16,1,.3,1) var(--d, 0s),
              transform 0.75s cubic-bezier(.16,1,.3,1) var(--d, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.82) rotate(-6deg);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1) var(--d, 0s),
              transform 0.9s cubic-bezier(.16,1,.3,1) var(--d, 0s);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* === Hero Container === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c0804;
}

/* === Canvas particles === */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* === Parallax layers === */
.hero__parallax {
  position: absolute;
  inset: -60px;
  z-index: 0;
}
.hero__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__layer--sky {
  background-image: url('images/hero_bg.jpg');
  opacity: 0.6;
}
.hero__layer--mist {
  background: radial-gradient(ellipse 120% 60% at 50% 80%,
    rgba(180,90,20,.18) 0%,
    transparent 70%);
}
.hero__layer--bg {
  background: linear-gradient(
    135deg,
    rgba(12,8,3,.85) 0%,
    rgba(18,10,3,.6) 35%,
    rgba(8,5,2,.4) 65%,
    rgba(15,9,3,.8) 100%
  );
}

/* === Cinematic overlays === */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(5,3,1,.6) 70%,
    rgba(5,3,1,.92) 100%);
  pointer-events: none;
}

/* Scan lines */
.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.06) 2px,
    rgba(0,0,0,.06) 4px
  );
  pointer-events: none;
}

/* Film grain */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  animation: grainShift 0.12s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  25% { background-position: -30px 20px; }
  50% { background-position: 20px -10px; }
  75% { background-position: -10px 30px; }
}

/* Cinematic gold bars */
.hero__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 6;
  overflow: hidden;
}
.hero__bar--top { top: 0; }
.hero__bar--bot { bottom: 0; }
.hero__bar::before {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  animation: barSlide 3s ease-in-out infinite;
}
@keyframes barSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* === Hero Content Layout === */
.hero__content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(90px, 14vh, 140px);
  padding-bottom: clamp(80px, 12vh, 120px);
  width: 100%;
}

/* === Hero Text === */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow {
  font-family: var(--ff-accent);
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  white-space: nowrap;
}
.hero__line-deco {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-light), transparent);
  min-width: 20px;
  max-width: 60px;
  opacity: 0.5;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--clr-white);
  gap: 4px;
}
.hero__title-row {
  display: block;
  text-shadow: 0 4px 40px rgba(0,0,0,.8);
}
.hero__title-row--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--clr-gold);
  text-stroke: 2px var(--clr-gold);
  filter: drop-shadow(0 0 20px rgba(200,148,26,.6));
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 440px;
  border-left: 2px solid var(--clr-gold);
  padding-left: 16px;
  opacity: 0.9;
}

/* === Action Buttons === */
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(100%) skewX(-15deg); }

.btn--gold {
  background: linear-gradient(135deg, var(--clr-amber), var(--clr-gold));
  color: #0c0804;
  border: none;
  box-shadow: 0 4px 20px rgba(200,148,26,.4);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,148,26,.6);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid rgba(200,148,26,.4);
}
.btn--ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  box-shadow: var(--shadow-gold);
}

/* === Stats Bar === */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(12,8,4,.6);
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 420px;
  margin-top: 8px;
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(200,148,26,.5);
}
.hero__stat-label {
  font-family: var(--ff-accent);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.2;
}
.hero__stat-sep {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
  flex-shrink: 0;
  margin: 0 8px;
}

/* === Hero Visual (right column) === */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Rotating glow rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  pointer-events: none;
}
.hero__ring--1 {
  width: 320px; height: 320px;
  top: 50%; left: 50%;
  transform: translate(-50%, -72%);
  opacity: 0.12;
  animation: ringPulse1 4s ease-in-out infinite;
}
.hero__ring--2 {
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -72%);
  opacity: 0.07;
  animation: ringPulse2 4s ease-in-out infinite 1s;
  border-style: dashed;
}
.hero__ring--3 {
  width: 440px; height: 440px;
  top: 50%; left: 50%;
  transform: translate(-50%, -72%);
  opacity: 0.04;
  animation: ringPulse1 4s ease-in-out infinite 2s;
}
@keyframes ringPulse1 {
  0%,100% { opacity: 0.12; transform: translate(-50%, -72%) scale(1); }
  50%      { opacity: 0.22; transform: translate(-50%, -72%) scale(1.03); }
}
@keyframes ringPulse2 {
  0%,100% { opacity: 0.07; transform: translate(-50%, -72%) scale(1) rotate(0deg); }
  50%      { opacity: 0.14; transform: translate(-50%, -72%) scale(1.04) rotate(180deg); }
}

/* Badge */
.hero__badge-wrap {
  position: relative;
  z-index: 5;
  cursor: pointer;
}
.hero__badge {
  width: clamp(220px, 28vw, 340px);
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
  filter: drop-shadow(0 0 30px rgba(200,148,26,.5))
          drop-shadow(0 0 60px rgba(200,148,26,.2))
          drop-shadow(0 20px 40px rgba(0,0,0,.9));
  animation: badgeSway 8s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
}
@keyframes badgeSway {
  0%,100% { transform: rotate(-1.5deg) scale(1); }
  50%      { transform: rotate(1.5deg) scale(1.02); }
}
.hero__badge-wrap:hover .hero__badge {
  filter: drop-shadow(0 0 50px rgba(200,148,26,.7))
          drop-shadow(0 20px 60px rgba(0,0,0,.8));
  animation-play-state: paused;
  transform: rotate(0deg) scale(1.06);
}
.hero__badge-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(200,148,26,.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

/* Vehicle image */
.hero__vehicle {
  position: relative;
  width: 100%;
  z-index: 4;
}
.hero__vehicle-img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 240px;
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.7),
              0 0 0 1px rgba(200,148,26,.15);
  transition: filter 0.4s ease;
}
.hero__vehicle:hover .hero__vehicle-img {
  filter: brightness(1) contrast(1.1) saturate(1.2);
}
.hero__vehicle-reflection {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(12,8,4,.95) 70%,
    rgba(12,8,4,1) 100%);
  border-radius: 0 0 6px 6px;
}

/* Floating status tag */
.hero__tag {
  position: absolute;
  bottom: calc(240px + 28px);
  right: 0;
  background: rgba(12,8,4,.85);
  border: 1px solid var(--clr-gold);
  border-radius: 2px;
  padding: 6px 12px;
  font-family: var(--ff-accent);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  animation: tagFloat 3s ease-in-out infinite;
}
@keyframes tagFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 8px var(--clr-green);
  animation: pulse 2s ease-in-out infinite;
}

/* === Scroll indicator === */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-track {
  display: block;
  width: 20px;
  height: 34px;
  border: 1.5px solid rgba(200,148,26,.4);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.hero__scroll-thumb {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: 4px; opacity: 1; }
  70%  { top: 20px; opacity: 0.3; }
  71%  { top: 4px; opacity: 0; }
  100% { top: 4px; opacity: 1; }
}
.hero__scroll-label {
  font-family: var(--ff-accent);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
}

/* ── Hero RWD ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding-top: clamp(100px, 16vh, 130px);
  }
  .hero__visual {
    order: -1;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  .hero__badge-wrap { flex-shrink: 0; }
  .hero__badge { width: clamp(160px, 30vw, 220px); }
  .hero__vehicle { max-width: 55%; }
  .hero__vehicle-img { max-height: 180px; }
  .hero__ring--1 { width: 200px; height: 200px; }
  .hero__ring--2 { width: 240px; height: 240px; }
  .hero__ring--3 { width: 280px; height: 280px; }
  .hero__tag { bottom: auto; top: 0; }
}

@media (max-width: 640px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual {
    flex-direction: column;
    align-items: center;
  }
  .hero__vehicle { max-width: 100%; }
  .hero__vehicle-img { max-height: 200px; }
  .hero__badge { width: clamp(140px, 50vw, 200px); }
  .hero__title-row--accent { -webkit-text-stroke-width: 1.5px; }
  .hero__stats { max-width: 100%; }
  .hero__tag { position: static; margin-top: -10px; }
  .hero__ring { display: none; }
}


/* ── Current Projects ────────────────────────── */
.current-projects {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.current-projects__track-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 var(--gap);
  max-width: var(--container);
  margin: 0 auto;
}

.current-projects__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  transition: transform 0.5s ease;
}

.project-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 0 1px var(--clr-gold);
}

.project-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__img { transform: scale(1.06); }

.project-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card__num {
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
}

.project-card__title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-white);
}

.project-card__status {
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--active {
  background: var(--clr-green);
  box-shadow: 0 0 6px var(--clr-green);
  animation: pulse 2s infinite;
}
.status-dot--pending { background: var(--clr-orange); box-shadow: 0 0 6px var(--clr-orange); }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px var(--clr-green); }
  50%      { box-shadow: 0 0 12px var(--clr-green); }
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  padding-top: 12px;
  border-top: 1px solid var(--clr-border);
  margin-top: 12px;
  transition: gap var(--transition), color var(--transition);
}
.project-card__link:hover { gap: 9px; color: var(--clr-gold-light); }

/* Slider arrows */
.current-projects__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: rgba(26,18,8,.9);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
}
.current-projects__arrow:hover { background: var(--clr-surface); }
.current-projects__arrow--prev { left: 0; }
.current-projects__arrow--next { right: 0; }

/* ── Blog Section ────────────────────────────── */
.blog-section { background: var(--clr-bg); }

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.blog-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.6), 0 0 0 1px var(--clr-gold);
}

.blog-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.blog-card:hover .blog-card__img { transform: scale(1.06); filter: brightness(1) saturate(1); }

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--ff-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
.badge--done { background: var(--clr-green); color: #fff; }
.badge--progress { background: var(--clr-orange); color: #fff; }

.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card__label {
  font-family: var(--ff-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
}

.blog-card__title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  padding-top: 12px;
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.blog-card__link:hover { gap: 9px; color: var(--clr-gold-light); }

/* ── Services Section ────────────────────────── */
.services-section {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
}

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
}

.services-section__grid::before,
.services-section__grid::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--clr-border);
}
.services-section__grid::before { left: calc(33.33% + var(--gap) / 2); }
.services-section__grid::after  { left: calc(66.66% + var(--gap) / 2); }

.service-item {
  padding: clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition);
}
.service-item:hover { transform: translateY(-4px); }

.service-item__icon {
  width: 64px;
  height: 64px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: box-shadow var(--transition), background var(--transition);
}
.service-item:hover .service-item__icon {
  background: var(--clr-surface);
  box-shadow: var(--shadow-gold);
}

.service-item__title {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text);
}

.service-item__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-item__list li {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.service-item__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 0.65rem;
  top: 2px;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--clr-bg3);
  border-top: 2px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.footer__gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}

.footer__gear {
  position: absolute;
  color: var(--clr-gold);
}
.footer__gear--l {
  width: 300px;
  height: 300px;
  left: -80px;
  top: -60px;
  animation: spin 30s linear infinite;
}
.footer__gear--r {
  width: 200px;
  height: 200px;
  right: -40px;
  bottom: -40px;
  animation: spin 20s linear infinite reverse;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  padding: clamp(40px, 6vw, 64px) var(--gap);
}

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

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer__logo-badge {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(200,148,26,.5))
          drop-shadow(0 6px 16px rgba(0,0,0,.8));
  animation: badgeSway 10s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
}

.footer__logo-name {
  font-family: var(--ff-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer__contact-item:hover { color: var(--clr-gold); }
.footer__contact-item svg { color: var(--clr-gold); flex-shrink: 0; }

.footer__bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--clr-border);
  padding: 16px var(--gap);
  text-align: center;
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--clr-text-dim);
}

/* ══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ───────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 70px; }

  .nav__list { gap: 0; }
  .nav__link  { font-size: 0.72rem; padding: 6px 8px; }

  .hero__car { width: clamp(250px, 48%, 580px); right: -4%; }

  .blog-section__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: calc(var(--gap) * 1.5);
  }
  .services-section__grid::before,
  .services-section__grid::after { display: none; }
  .service-item:last-child {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── Mobile (≤ 768px) ────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .topbar__tagline { display: none; }

  /* Nav → burger */
  .nav__list { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: block; }

  .logo__vcc { font-size: 1.3rem; }
  .logo__emblem { width: 60px; height: 60px; }

  /* Hero — kept minimal, new hero handles its own RWD */
  .hero__title { font-size: clamp(2rem, 10vw, 3rem); }


  /* Current Projects → single visible + arrows */
  .current-projects__track {
    grid-template-columns: repeat(3, 100%);
  }
  .current-projects__arrow { display: flex; }

  /* Blog grid */
  .blog-section__grid {
    grid-template-columns: 1fr;
  }
  .blog-card:last-child {
    max-width: 100%;
    grid-column: auto;
  }

  /* Services */
  .services-section__grid {
    grid-template-columns: 1fr;
  }
  .service-item:last-child {
    max-width: 100%;
    grid-column: auto;
  }
  .service-item { padding: 20px 0; border-bottom: 1px solid var(--clr-border); }
  .service-item:last-child { border-bottom: none; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand { justify-content: center; }
  .footer__logo { align-items: center; }
  .footer__contact { align-items: center; }
}

/* ── Small Mobile (≤ 480px) ──────────────────── */
@media (max-width: 480px) {
  .section__title { font-size: 0.9rem; letter-spacing: 0.1em; white-space: normal; text-align: center; }
  .section__deco { display: none; }
  .section__header { gap: 10px; }
  .hero__eyebrow { font-size: 0.65rem; }
  .btn { font-size: 0.75rem; padding: 12px 20px; }
}
