/* Euro Parts Lab — Public Homepage */
:root {
  --toxic: #39FF14;
  --toxic-dim: #2bcc10;
  --toxic-glow: rgba(57, 255, 20, 0.25);
  --ember: #FF4500;
  --ember-glow: rgba(255, 69, 0, 0.2);
  --steel: #1a1a1e;
  --steel-light: #242428;
  --steel-mid: #2e2e33;
  --chrome: #b0b0b8;
  --bone: #e8e6e1;
  --white: #f5f5f0;
  --black: #0d0d0f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--bone);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--toxic-dim); border-radius: 4px; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(57,255,20,0.08);
  transition: all 0.3s;
}
nav.scrolled { background: rgba(13,13,15,0.97); border-bottom-color: rgba(57,255,20,0.18); }

/* --- NAV LOGO LOCKUP --- */
.nav-brand {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
.nav-logo-frame {
  position: relative;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(57,255,20,0.2);
  background: rgba(57,255,20,0.03);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  transition: all 0.35s;
}
.nav-brand:hover .nav-logo-frame {
  border-color: rgba(57,255,20,0.5);
  background: rgba(57,255,20,0.06);
  box-shadow: 0 0 16px rgba(57,255,20,0.12);
}
.nav-logo-frame img {
  width: 30px; height: auto;
  filter: drop-shadow(0 0 4px rgba(57,255,20,0.1));
  transition: filter 0.35s;
}
.nav-brand:hover .nav-logo-frame img {
  filter: drop-shadow(0 0 8px rgba(57,255,20,0.3));
}
.nav-wordmark {
  display: flex; flex-direction: column; gap: 0; line-height: 1;
}
.nav-wordmark .top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 4px; color: var(--white);
}
.nav-wordmark .bot {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--toxic); margin-top: 1px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--chrome);
  text-decoration: none; position: relative;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--toxic); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--toxic);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--toxic) !important;
  color: var(--toxic) !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--toxic) !important;
  color: var(--black) !important;
  box-shadow: 0 0 20px var(--toxic-glow);
}
.nav-cta::after { display: none !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--bone); margin: 5px 0;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(57,255,20,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(255,69,0,0.03) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--steel) 50%, var(--black) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
}
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--toxic);
  opacity: 0;
}
/* Logo bubbles - rise from center with slight wobble */
.particle.logo-bubble {
  bottom: 30%;
  animation: bubbleUp ease-out infinite;
}
@keyframes bubbleUp {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  8% {
    transform: translateY(-5vh) translateX(3px) scale(0.6);
    opacity: var(--bubble-opacity, 0.5);
  }
  25% {
    transform: translateY(-15vh) translateX(-4px) scale(0.85);
    opacity: var(--bubble-opacity, 0.5);
  }
  50% {
    transform: translateY(-30vh) translateX(5px) scale(1);
    opacity: calc(var(--bubble-opacity, 0.5) * 0.7);
  }
  75% {
    transform: translateY(-45vh) translateX(-3px) scale(1.05);
    opacity: calc(var(--bubble-opacity, 0.5) * 0.35);
  }
  100% {
    transform: translateY(-65vh) translateX(2px) scale(0.8);
    opacity: 0;
  }
}
/* Ambient scattered bubbles - slow drift */
.particle.ambient-bubble {
  bottom: 10%;
  animation: ambientFloat linear infinite;
}
@keyframes ambientFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: var(--bubble-opacity, 0.15); }
  50% { transform: translateY(-45vh) scale(1); opacity: var(--bubble-opacity, 0.15); }
  90% { opacity: calc(var(--bubble-opacity, 0.15) * 0.5); }
  100% { transform: translateY(-85vh) scale(0.6); opacity: 0; }
}
/* Pink bubbles - accent color scattered from logo */
.particle.pink-bubble {
  bottom: 30%;
  background: #ff3c8e;
  animation: bubbleUp ease-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- HERO LOGO VESSEL --- */
.hero-vessel {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  margin-bottom: 20px;
  animation: fadeUp 1.2s ease-out 0.2s both;
}



/* Glow core */
.hero-vessel .glow-core {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, rgba(57,255,20,0.015) 50%, transparent 70%);
  animation: coreBreath 4s ease-in-out infinite;
}
@keyframes coreBreath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Corner ticks on a virtual square frame */
.hero-vessel .tick {
  position: absolute;
  width: 14px; height: 14px;
  border-color: rgba(57,255,20,0.18);
  border-style: solid;
  border-width: 0;
}
.tick-tl { top: 20px; left: 20px; border-top-width: 1px; border-left-width: 1px; }
.tick-tr { top: 20px; right: 20px; border-top-width: 1px; border-right-width: 1px; }
.tick-bl { bottom: 20px; left: 20px; border-bottom-width: 1px; border-left-width: 1px; }
.tick-br { bottom: 20px; right: 20px; border-bottom-width: 1px; border-right-width: 1px; }

/* The actual logo */
.hero-vessel .hero-logo {
  position: relative; z-index: 3;
  width: clamp(80px, 11vw, 130px); height: auto;
  filter:
    drop-shadow(0 0 30px rgba(57,255,20,0.18))
    drop-shadow(0 0 60px rgba(57,255,20,0.06));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Vessel label */


/* pulse used by vehicle status dots */
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--toxic-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}

/* Title lockup below vessel */
.hero-tagline {
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
  margin: 10px 0 4px;
  animation: fadeUp 1s ease-out 0.55s both;
}
.hero-tagline .tl-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--toxic));
}
.hero-tagline .tl-line:last-child {
  background: linear-gradient(90deg, var(--toxic), transparent);
}
.hero-tagline .tl-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--toxic);
}
.hero-title-group { animation: fadeUp 1s ease-out 0.5s both; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 90px);
  line-height: 1; letter-spacing: 6px;
  color: var(--white);
  white-space: nowrap;
}
.hero h1 .accent { color: var(--toxic); }
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300; color: var(--chrome);
  max-width: 520px; margin: 10px auto 0;
  line-height: 1.6;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 24px; flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.65s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--toxic); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #4dff33;
  box-shadow: 0 0 30px var(--toxic-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: transparent; color: var(--bone);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--toxic);
  color: var(--toxic);
  transform: translateY(-2px);
}

/* Specimen button */
.btn-specimen {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: transparent; color: var(--toxic);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(57,255,20,0.3);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
  position: relative;
  flex-direction: column;
  gap: 6px;
}
.btn-specimen:hover {
  background: rgba(57,255,20,0.06);
  border-color: var(--toxic);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(57,255,20,0.12);
}
.btn-specimen .specimen-count {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px;
  color: rgba(57,255,20,0.6);
}
.btn-specimen .specimen-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--toxic);
  box-shadow: 0 0 6px rgba(57,255,20,0.4);
  animation: pulse 2s infinite;
}
.btn-specimen .specimen-dot:nth-child(2) { animation-delay: 0.3s; }
.btn-specimen .specimen-dot:nth-child(3) { animation-delay: 0.6s; }
.btn-specimen .specimen-dot.dim {
  background: rgba(57,255,20,0.25);
  box-shadow: none;
  animation: none;
}

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s ease-out 1s both;
}
.scroll-indicator span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--chrome);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--toxic), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 28px; }
}

/* ============ SECTIONS SHARED ============ */
section { padding: 120px 48px; position: relative; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--toxic); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; width: 30px; height: 1px;
  background: var(--toxic);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 3px; color: var(--white);
  line-height: 1;
}
.section-desc {
  font-size: 16px; color: var(--chrome);
  font-weight: 300; max-width: 500px;
  line-height: 1.7; margin-top: 12px;
}

/* ============ WHAT WE DO ============ */
.what-we-do { background: var(--steel); }
.what-we-do .section-header { text-align: center; margin-bottom: 72px; }
.what-we-do .section-desc { margin: 12px auto 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  position: relative; padding: 48px 36px;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s; cursor: default;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--toxic);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--steel-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 52px; height: 52px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--toxic);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; color: var(--chrome);
  line-height: 1.7; font-weight: 300;
}
.service-card .card-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: rgba(255,255,255,0.03);
  line-height: 1;
}

/* ============ CONTENT / MEDIA ============ */
.content-section { background: var(--black); }
.content-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.content-text { padding-right: 24px; }
.content-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: all 0.3s;
}
.gallery-item:first-child { grid-row: 1 / -1; }
.gallery-item:hover {
  border-color: var(--toxic);
  box-shadow: 0 0 20px var(--toxic-glow);
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--chrome);
  background: linear-gradient(135deg, rgba(57,255,20,0.03) 0%, transparent 50%), var(--steel-light);
}
.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.gallery-placeholder span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.4; }
.play-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; background: rgba(255,69,0,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; color: white; text-transform: uppercase;
}
.content-stats {
  display: flex; gap: 40px; margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--toxic); }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--chrome); margin-top: 4px; }

/* ============ VEHICLES ============ */
.vehicles-section { background: var(--steel); overflow: hidden; }
.vehicles-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; max-width: 1200px;
  margin: 0 auto 56px;
}
.vehicles-scroll {
  display: flex; gap: 20px; max-width: 1200px; margin: 0 auto;
  overflow-x: auto; padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.vehicles-scroll::-webkit-scrollbar { height: 4px; }
.vehicles-scroll::-webkit-scrollbar-thumb { background: var(--toxic-dim); border-radius: 2px; }
.vehicle-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; transition: all 0.35s; cursor: pointer;
}
.vehicle-card:hover {
  border-color: rgba(57,255,20,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.vehicle-img {
  height: 200px;
  background: linear-gradient(135deg, var(--steel-mid), var(--steel-light));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.vehicle-img svg { width: 48px; height: 48px; color: var(--chrome); opacity: 0.2; }
.vehicle-status {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.status-active { background: var(--toxic); color: var(--black); }
.status-coming { background: var(--ember); color: white; }
.status-sold { background: rgba(255,255,255,0.15); color: var(--chrome); }
.vehicle-info { padding: 20px 24px; }
.vehicle-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}
.vehicle-meta { font-size: 13px; color: var(--chrome); font-weight: 300; }
.vehicle-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.vehicle-tag {
  padding: 4px 10px;
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600;
  background: rgba(57,255,20,0.08);
  color: var(--toxic-dim);
  border: 1px solid rgba(57,255,20,0.12);
}

/* ============ PARTS ============ */
.parts-section { background: var(--black); }
.parts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto; margin-top: 56px;
}
.part-card {
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.part-card:hover {
  border-color: rgba(57,255,20,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.part-img {
  height: 180px; background: var(--steel-mid);
  display: flex; align-items: center; justify-content: center;
}
.part-img svg { width: 36px; height: 36px; color: var(--chrome); opacity: 0.2; }
.part-details { padding: 18px 20px; }
.part-details h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.part-details .part-compat { font-size: 12px; color: var(--chrome); font-weight: 300; }
.part-footer {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.part-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--toxic); }
.part-btn {
  padding: 6px 14px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--bone);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.part-btn:hover {
  border-color: var(--toxic); color: var(--toxic);
  background: rgba(57,255,20,0.05);
}

/* ============ EBAY + MERCH ============ */
.dual-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.strip-panel {
  position: relative; padding: 72px 60px;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
.strip-ebay { background: linear-gradient(135deg, #0064d2 0%, #003580 100%); }
.strip-ebay::before {
  content: 'eBay'; position: absolute;
  right: -20px; bottom: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px; color: rgba(255,255,255,0.04); line-height: 1;
}
.strip-merch {
  background: linear-gradient(135deg, var(--steel-mid) 0%, var(--steel) 100%);
}
.strip-merch::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(57,255,20,0.015) 20px, rgba(57,255,20,0.015) 21px);
}
.strip-panel .section-tag { margin-bottom: 16px; }
.strip-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 3px;
  color: var(--white); line-height: 1; margin-bottom: 16px;
}
.strip-panel p {
  font-size: 15px; color: rgba(255,255,255,0.7);
  font-weight: 300; max-width: 380px;
  line-height: 1.7; margin-bottom: 28px;
}
.strip-ebay .section-tag { color: rgba(255,255,255,0.6); }
.strip-ebay .section-tag::before { background: rgba(255,255,255,0.4); }
.btn-ebay {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: #f5af02; color: #003580;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; width: fit-content;
}
.btn-ebay:hover { background: #ffc832; transform: translateY(-2px); }
.merch-preview { display: flex; gap: 16px; margin-bottom: 28px; }
.merch-item {
  width: 100px; height: 100px;
  background: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.merch-item svg { width: 28px; height: 28px; color: var(--chrome); opacity: 0.3; }

/* ============ PARENT BRAND ============ */
.parent-brand {
  background: var(--black); text-align: center;
  padding: 100px 48px; position: relative;
}
.parent-brand::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,69,0,0.04) 0%, transparent 70%);
}
.parent-content { position: relative; z-index: 1; }
.parent-brand .section-tag { justify-content: center; margin-bottom: 20px; }
.parent-brand .section-tag::before { display: none; }
.parent-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: 6px; color: var(--white); line-height: 1;
}
.parent-logo-text .monsters { color: var(--ember); }
.parent-desc {
  font-size: 16px; color: var(--chrome);
  font-weight: 300; max-width: 540px;
  margin: 20px auto 0; line-height: 1.7;
}
.parent-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 14px 32px;
  border: 1px solid var(--ember); color: var(--ember);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.parent-link:hover {
  background: var(--ember); color: white;
  box-shadow: 0 0 30px var(--ember-glow);
}

/* ============ FOOTER ============ */
footer {
  background: var(--steel);
  padding: 72px 48px 36px;
  border-top: 1px solid rgba(57,255,20,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
}
.footer-brand-lockup {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; text-decoration: none;
}
.footer-logo-frame {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(57,255,20,0.12);
  background: rgba(57,255,20,0.02);
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
}
.footer-logo-frame img { width: 24px; height: auto; }
.footer-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 3px; color: var(--white);
}
.footer-wordmark .flab { color: var(--toxic); }
.footer-brand p {
  font-size: 14px; color: var(--chrome);
  font-weight: 300; line-height: 1.7; max-width: 300px;
}
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: var(--chrome); text-decoration: none;
  margin-bottom: 12px; font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--toxic); }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--chrome); text-decoration: none; transition: all 0.25s;
}
.footer-socials a:hover { border-color: var(--toxic); color: var(--toxic); }
.footer-socials a svg { width: 16px; height: 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section { padding: 80px 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .content-gallery { grid-template-rows: 160px 160px; }
  .dual-strip { grid-template-columns: 1fr; }
  .strip-panel { padding: 56px 32px; }
  .vehicle-card { flex: 0 0 280px; }
  .parts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .vehicles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-vessel { width: clamp(160px, 45vw, 220px); height: clamp(160px, 45vw, 220px); }
}
