:root {
  --background: hsl(0, 0%, 0%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 4%);
  --primary: hsl(1, 53%, 40%);
  --primary-hover: hsl(1, 53%, 35%);
  --muted-foreground: hsl(0, 0%, 64%);
  --border: hsl(0, 0%, 15%);
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --bg: var(--background);
  --text: var(--foreground);
  --muted: var(--muted-foreground);
  --accent: var(--primary);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  padding: 1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.navbar.scrolled {
  background: hsla(0,0%,0%,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(0,0%,100%,0.1);
  padding: 0.6rem 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.navbar-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1; text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo img { height: 1.75rem; width: auto; max-width: 100%; display: block; }
@media (min-width: 768px) { .navbar-logo img { height: 2rem; } }
.navbar-slogan {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: 0.25em;
  color: hsl(1, 53%, 40%, 0.8); margin-top: 2px; padding-left: 2px;
}
.nav-desktop { display: none; align-items: center; flex: 1; justify-content: space-between; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-left { display: flex; align-items: center; gap: 1.25rem; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-link {
  font-family: var(--font-sans); font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em; text-transform: capitalize;
  color: hsla(0,0%,100%,0.6);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-cta {
  background: transparent; color: #fff; padding: 0.375rem 0.75rem;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.03em; text-transform: capitalize;
  border: 1px solid hsla(0,0%,100%,0.25);
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: hsla(0,0%,100%,0.1); border-color: hsla(0,0%,100%,0.5); }
.nav-cta-in {
  background: #fff; color: #000; padding: 0.375rem 0.75rem;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.03em; text-transform: capitalize;
  border-radius: 9999px;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.nav-cta-in:hover { background: hsla(0,0%,100%,0.9); }
.mobile-toggle { display: block; background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none; background: #000; border-bottom: 1px solid hsla(0,0%,100%,0.1); overflow: hidden;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
.mobile-menu .nav-link { font-size: 1.125rem; }

/* ── Footer ── */
.footer { background: var(--background); border-top: 1px solid hsl(0,0%,15%,0.2); }
.footer-slogan {
  border-bottom: 1px solid hsl(0,0%,15%,0.2); padding: 3rem 0; text-align: center; overflow: hidden;
}
.footer-slogan p {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.25em; font-size: clamp(2rem, 6vw, 3.75rem);
  background: linear-gradient(to right, hsl(1,53%,40%,0.6), var(--primary), hsl(1,53%,40%,0.6));
  -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none;
}
.footer-bar { padding: 2rem 0; }
.footer-bar-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bar-inner { flex-direction: row; justify-content: space-between; }
}
.footer-logo img { height: 2rem; opacity: 0.5; filter: grayscale(1); transition: all 0.3s; }
.footer-logo img:hover { opacity: 1; filter: none; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.1em; color: var(--muted-foreground);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--primary); }
.footer-copy { margin-top: 1.5rem; text-align: center; font-size: 0.75rem; color: hsl(0,0%,65%,0.5); }
@media (min-width: 768px) { .footer-copy { text-align: left; } }

/* ── Layout ── */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; }
.page-main--offset { padding-top: 5.5rem; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: var(--background);
  padding-top: 6rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.6;
}
.hero-overlay-1 {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, hsla(0,0%,3%,0.8), hsla(0,0%,3%,0.4), var(--background));
}
.hero-overlay-2 {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to right, var(--background), hsla(0,0%,3%,0.2), transparent);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.1; pointer-events: none;
  background-image: linear-gradient(to right, #80808012 1px, transparent 1px),
    linear-gradient(to bottom, #80808012 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-content {
  position: relative; z-index: 10; padding-top: 5rem;
  width: 100%; max-width: 1440px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem;
}
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero-eyebrow-line { height: 1px; width: 3rem; background: var(--primary); }
.hero-eyebrow span {
  font-family: var(--font-display); letter-spacing: 0.2em;
  color: var(--muted-foreground); font-size: 0.875rem;
}
@media (min-width: 768px) { .hero-eyebrow span { font-size: 1rem; } }
.hero-title {
  font-size: clamp(3.5rem, 12vw, 10rem); font-weight: 700;
  line-height: 0.88; letter-spacing: -0.05em; margin-bottom: 1rem;
}
.hero-title .gradient {
  background: linear-gradient(to right, var(--primary), #ef4444, #b91c1c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-desc {
  font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem;
  margin-bottom: 2.5rem; font-weight: 300; line-height: 1.625;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ── Buttons ── */
.btn-primary {
  background: var(--primary); color: #fff; padding: 1rem 2rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em; font-size: 0.875rem; border: none; cursor: pointer;
  transition: background 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-primary:hover { background: hsl(1, 53%, 40%, 0.9); }
.btn-outline {
  border: 1px solid var(--border); color: #fff; padding: 1rem 2rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em; font-size: 0.875rem; background: hsl(0,0%,3%,0.5);
  backdrop-filter: blur(4px); transition: border-color 0.2s; display: inline-block; text-align: center;
}
.btn-outline:hover { border-color: hsl(1, 53%, 40%, 0.5); }
.btn-white {
  background: #fff; color: var(--primary); padding: 1rem 2.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em; font-size: 0.875rem; transition: background 0.2s; display: inline-block;
}
.btn-white:hover { background: hsl(0,0%,100%,0.9); }

/* ── Video Showcase ── */
.video-showcase {
  padding: 4rem 0 3rem;
  background: var(--background);
  border-top: 1px solid hsl(0,0%,15%,0.3);
  overflow: hidden;
}
.videos-viewport {
  position: relative;
  margin-top: 2.5rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  overflow: hidden;
}
.videos-fade-l, .videos-fade-r {
  pointer-events: none;
  position: absolute;
  top: 0; bottom: 0;
  width: 3rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .videos-fade-l, .videos-fade-r { width: 6rem; }
}
.videos-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}
.videos-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}
.videos-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  padding: 0.5rem 0;
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.videos-track.grabbing {
  cursor: grabbing;
}
.videos-track.eased {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .videos-track { gap: 1.25rem; }
}
.video-card {
  position: relative;
  flex: 0 0 220px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid hsl(0,0%,15%,0.4);
  transition: border-color 0.3s, transform 0.3s;
  background: hsl(0,0%,6%);
}
.video-card:hover {
  border-color: hsl(1,53%,40%,0.6);
  transform: translateY(-4px);
}
@media (min-width: 480px) {
  .video-card { flex: 0 0 260px; height: 340px; }
}
@media (min-width: 768px) {
  .video-card { flex: 0 0 300px; height: 400px; border-radius: 12px; }
}
@media (min-width: 1024px) {
  .video-card { flex: 0 0 360px; height: 480px; }
}
.video-card video,
.video-card .video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 3; width: 56px; height: 56px; border-radius: 50%;
  background: hsla(0,0%,0%,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s, transform 0.2s; pointer-events: none;
  border: 2px solid hsl(0,0%,100%,0.3);
}
.video-card:hover .video-play-btn {
  background: hsla(1,53%,40%,0.7);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: hsl(0,0%,100%,0.5);
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0,0%,3%,0.85) 0%, transparent 50%);
  pointer-events: none;
}
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 5;
  pointer-events: none;
}
@media (min-width: 768px) {
  .video-info { padding: 1.5rem; }
}
.video-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.15em;
   color: #fff;
  background: var(--primary);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.4rem;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .video-badge { font-size: 10px; padding: 0.25rem 0.625rem; margin-bottom: 0.5rem; }
}
.video-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(0,0%,95%,0.9);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .video-label { font-size: 0.875rem; }
}
@media (min-width: 1024px) {
  .video-showcase { padding: 6rem 0 4rem; }
}

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-card { background: var(--card); }
.section-border { border-top: 1px solid hsl(0,0%,15%,0.3); }
.section-header { margin-bottom: 4rem; }
.section-header-row {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; margin-bottom: 4rem;
}
.section-label {
  font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.2em; color: var(--primary); display: block; margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
}
.section-title.sm { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.section-desc { color: var(--muted-foreground); max-width: 24rem; line-height: 1.625; font-size: 0.875rem; }
@media (min-width: 768px) { .section-desc.right { text-align: right; } }
.section-link { font-size: .78rem; letter-spacing: .03em; color: rgba(255,255,255,.4); transition: color .2s; white-space: nowrap; text-decoration: none; }
.section-link:hover { color: rgba(255,255,255,.8); }
.section-link-arrow { margin-left: .25rem; }

.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-14 { margin-top: 3.5rem; }

/* ── Feature grid ── */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-products { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .grid-products { grid-template-columns: repeat(3, 1fr); } }

.feature-card { display: flex; flex-direction: column; }
.feature-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 1.25rem; background: var(--card);
}
.feature-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease-out;
}
.feature-card:hover .feature-img-wrap img { transform: scale(1.05); }
.feature-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: hsl(0,0%,0%,0.6); backdrop-filter: blur(4px); padding: 0.25rem 0.625rem;
}
.feature-badge span {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.1em; color: hsl(0,0%,100%,0.7);
}
.feature-overlay {
  position: absolute; inset: 0; background: hsl(1,53%,40%,0.1);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover .feature-overlay { opacity: 1; }
.feature-title {
  font-size: 1.125rem; font-family: var(--font-display);
  letter-spacing: 0.05em; margin-bottom: 0.5rem; padding-top: 0.75rem;
  position: relative;
}
.feature-title::before {
  content: ''; position: absolute; top: 0; left: 0; width: 1.5rem; height: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.feature-card:hover .feature-title::before { transform: scaleX(1); }
.feature-desc { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.625; }

/* ── Color showcase ── */
.swatch-card { position: relative; cursor: pointer; }
.swatch-img {
  width: 100%; aspect-ratio: 1; position: relative; overflow: hidden; background: var(--background);
}
.swatch-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out;
}
.swatch-card:hover .swatch-img img { transform: scale(1.05); }
.swatch-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(0,0%,0%,0.5), transparent, transparent); pointer-events: none;
}
.swatch-hover {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; background: hsl(0,0%,0%,0.4);
}
.swatch-card:hover .swatch-hover { opacity: 1; }
.swatch-hover span {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em;
  color: #fff; border: 1px solid hsl(0,0%,100%,0.4); padding: 0.5rem 1rem;
}
.swatch-label { padding: 1rem 0 0.5rem; }
.swatch-name {
  font-family: var(--font-display); font-size: 0.875rem; text-transform: capitalize;
  font-weight: 700; line-height: 1.25;
}
.swatch-sub { color: var(--muted-foreground); font-size: 0.75rem; letter-spacing: 0.1em; margin-top: 0.25rem; }

/* ── Product cards ── */
.product-card {
  border: 1px solid hsl(0,0%,15%,0.5); background: var(--background); padding: 2.5rem;
  transition: border-color 0.2s; cursor: pointer;
}
.product-card:hover { border-color: hsl(1,53%,40%,0.5); }
.product-subtitle {
  color: var(--primary); font-family: var(--font-display); font-size: 0.875rem;
  letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.product-name {
  font-size: 1.5rem; font-family: var(--font-display); font-weight: 700;
  margin-bottom: 1.5rem;
}
.product-desc { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 2rem; min-height: 5rem; }
.product-specs { list-style: none; margin-bottom: 2rem; }
.product-specs li {
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.75rem;
}
.spec-dot {
  width: 6px; height: 6px; border-radius: 50%; background: hsl(1,53%,40%,0.5); flex-shrink: 0;
  transition: background 0.2s;
}
.product-card:hover .spec-dot { background: var(--primary); }

/* ── Table ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 640px; border-collapse: collapse; }
th {
  text-align: left; padding: 1.25rem 1rem; font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--muted-foreground); border-bottom: 1px solid hsl(0,0%,15%,0.5);
}
td {
  padding: 1.25rem 1rem; border-bottom: 1px solid hsl(0,0%,15%,0.3);
  color: hsl(0,0%,95%,0.8);
}
tr:hover td { background: var(--card); }
td.primary { font-family: var(--font-display); color: var(--primary); }

/* ── Deep dive ── */
.dive-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 1024px) { .dive-grid { grid-template-columns: 1fr 1fr; } }
.dive-grid.reverse .dive-img { order: 2; }
@media (min-width: 1024px) { .dive-grid.reverse .dive-img { order: 2; } }
.dive-img { aspect-ratio: 4/3; overflow: hidden; border: 1px solid hsl(0,0%,15%,0.3); position: relative; width: 100%; }
.dive-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dive-img-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, hsl(0,0%,3%,0.6), transparent);
}
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin: 2rem 0; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: hsl(0,0%,95%,0.8); }
.icon-check { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.ideal-for {
  font-size: 0.875rem; color: var(--muted-foreground); border-left: 2px solid hsl(1,53%,40%,0.5); padding-left: 1rem;
}
.ideal-label {
  font-family: var(--font-display); letter-spacing: 0.1em;
  font-size: 0.75rem; color: hsl(0,0%,95%,0.7); display: block; margin-bottom: 0.25rem;
}

/* ── FAQ Accordion ── */
.accordion-item { border-bottom: 1px solid hsl(0,0%,15%,0.4); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; color: var(--foreground);
  font-family: var(--font-display); letter-spacing: 0.05em;
  font-size: 0.875rem; text-align: left; cursor: pointer; transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg { flex-shrink: 0; transition: transform 0.2s; }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
  color: var(--muted-foreground); line-height: 1.625;
}
.accordion-item.open .accordion-content { max-height: 800px; padding-bottom: 1.25rem; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-item { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.gallery-item:nth-child(2) { margin-top: 0; }
@media (min-width: 768px) { .gallery-item:nth-child(2) { margin-top: 4rem; } }
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease-out;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: hsl(0,0%,3%,0.2); z-index: 10;
  transition: background 0.5s;
}
.gallery-item:hover .gallery-overlay { background: transparent; }
.gallery-caption { position: absolute; bottom: 0; left: 0; padding: 2rem; z-index: 20; }
.gallery-tag {
  display: inline-block; padding: 0.25rem 0.75rem; font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.gallery-tag.primary { background: var(--primary); color: #fff; }
.gallery-tag.white { background: #fff; color: #000; }
.gallery-caption h3 {
  font-size: 1.5rem; font-family: var(--font-display); font-weight: 700;
  color: #fff;
}

/* ── Technology ── */
.tech-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: 1fr 1fr; } }
.tech-img { aspect-ratio: 1; position: relative; overflow: hidden; width: 100%; }
@media (min-width: 1024px) { .tech-img { aspect-ratio: 1; } }
.tech-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(1) contrast(1.25);
  transition: filter 0.7s;
}
.tech-img:hover img { filter: none; }
.scanner-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: hsl(1,53%,40%,0.8); box-shadow: 0 0 15px rgba(220,38,38,0.8);
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}
.tech-step { margin-bottom: 2rem; }
.tech-step h4 { font-size: 1.125rem; margin-bottom: 0.5rem; color: #fff; }
.tech-step p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.625; }
.tech-divider { height: 1px; width: 100%; background: hsl(0,0%,15%,0.5); margin: 2rem 0; }

/* ── About ── */
.about-grid { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 1024px) { .about-grid { flex-direction: row; } }
.about-sidebar { flex: 0 0 33%; }
.about-sidebar-inner { position: sticky; top: 8rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.stat-num { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: var(--muted-foreground); letter-spacing: 0.1em; }
.about-img { flex: 1; aspect-ratio: 16/9; position: relative; width: 100%; min-height: 280px; }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 1px solid hsl(0,0%,15%,0.3); }
.about-img-overlay { position: absolute; inset: 0; background: hsl(1,53%,40%,0.1); mix-blend-mode: overlay; z-index: 10; }

/* ── Homepage stats ── */
.stats-row { display: flex; justify-content: center; gap: 4rem; padding: 3rem 0; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }

/* ── Hero stagger animations (matching prototype framer-motion) ── */
@keyframes heroBgIn {
  0% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUpBig {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-stagger-1,
.hero-stagger-2,
.hero-stagger-3,
.hero-stagger-4 {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
}
.hero-stagger-1 { animation-delay: 0.4s; }
.hero-stagger-2 { animation-delay: 0.55s; animation-name: heroFadeUpBig; }
.hero-stagger-3 { animation-delay: 0.8s; }
.hero-stagger-4 { animation-delay: 1.4s; }
.series-home-card { position: relative; display: block; border-radius: 12px; overflow: hidden; text-decoration: none; aspect-ratio: 16/9; }
.series-home-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.series-home-card:hover .series-home-img { transform: scale(1.05); }
.series-home-info { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: linear-gradient(transparent 40%, hsl(0,0%,0%,0.85)); }
.series-home-subtitle { font-size: 0.7rem; letter-spacing: 0.15em; color: hsl(1,53%,60%); margin: 0 0 0.25rem; font-weight: 500; }
.series-home-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; text-transform: capitalize; letter-spacing: 0.05em; color: #fff; margin: 0 0 0.5rem; }
.series-home-link { font-size: 0.75rem; letter-spacing: 0.1em; color: hsl(1,53%,60%); font-weight: 500; opacity: 0; transform: translateY(4px); transition: opacity 0.3s, transform 0.3s; }
.series-home-card:hover .series-home-link { opacity: 1; transform: translateY(0); }

/* ── Series detail page (prototype-style) ── */

/* Hero */
.series-hero {
  position: relative; height: 80vh; width: 100%;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.series-hero-bg {
  position: absolute; inset: 0;
}
.series-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.7;
}
.series-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #000, rgba(0,0,0,0.2), transparent);
}
.series-hero-content {
  position: relative; z-index: 10; text-align: center; padding: 0 1.5rem; margin-top: 3rem;
}
.series-hero-content h1 {
  font-size: clamp(3rem, 10vw, 7rem); font-weight: 700; letter-spacing: -0.03em;
  line-height: 0.9; color: #fff; margin-bottom: 0.5rem;
}
.series-hero-tagline {
  font-size: clamp(1.2rem, 3vw, 2.5rem); font-weight: 500;
}

/* Swatches Grid */
.series-swatches {
  padding: 6rem 0 4rem;
}
.series-swatches-header {
  max-width: 40rem; margin: 0 auto 5rem; text-align: center;
}
.series-swatches-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1rem;
}
.series-swatches-header p {
  font-size: 1.125rem; color: hsla(0,0%,100%,0.5); font-weight: 300;
}
.swatches-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem;
}
@media (min-width: 768px) { .swatches-grid { grid-template-columns: repeat(4,1fr); gap: 2.5rem; } }
.swatch-card {
  display: block; text-decoration: none;
}


.swatch-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  transform: scale(1.3);
  transition: transform 0.7s;
}
.swatch-visual:hover img { transform: scale(1.38); }
.swatch-gloss {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.swatch-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 33.333%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}
.swatch-name {
  text-align: center; font-size: 1rem; font-weight: 500;
  color: hsla(0,0%,100%,0.85); margin-top: 0.75rem;
  transition: color 0.3s; text-transform: capitalize;
}
.swatch-card:hover .swatch-name { color: #fff; }

/* Specs */
.series-specs {
  padding: 6rem 0; background: hsl(0,0%,3%); border-top: 1px solid hsla(0,0%,100%,0.05);
  border-bottom: 1px solid hsla(0,0%,100%,0.05);
}
.series-specs h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em;
  color: #fff; text-align: center; margin-bottom: 4rem;
}
.specs-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto;
}
@media (min-width: 768px) { .specs-grid { grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 100%; } }
.spec-card {
  background: #000; padding: 2rem 1.5rem; border-radius: 1.5rem;
  border: 1px solid hsla(0,0%,100%,0.1); text-align: center;
}
.spec-label {
  display: block; font-size: 0.75rem;
  letter-spacing: 0.1em; color: hsla(0,0%,100%,0.4); margin-bottom: 0.75rem;
}
.spec-value {
  display: block; font-size: 1.25rem; font-weight: 500; color: #fff;
}

/* ── Color Detail Page ── */
.color-detail-main { background: #000; }
.color-back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: hsla(0,0%,100%,0.5);
  text-decoration: none; transition: color 0.2s;
}
.color-back-link:hover { color: #fff; }

.color-detail-section { padding: 3rem 0 5rem; }
.color-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .color-detail-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* Gallery */
.color-gallery { animation: fadeInUp 0.6s ease both; }
.color-hero-img {
  width: 100%; aspect-ratio: 16/9; border-radius: 1.5rem; overflow: hidden;
  background: hsla(0,0%,10%,1); border: 1px solid hsla(0,0%,100%,0.1);
  position: relative; cursor: pointer;
}
.color-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Magnifier icon overlay */
.color-zoom-btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0;
  opacity: 0; transition: opacity 0.25s; z-index: 2;
}
.color-hero-img:hover .color-zoom-btn {
  opacity: 1;
}
.color-zoom-btn svg {
  width: 3rem; height: 3rem; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

/* Lightbox overlay */
.color-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.color-lightbox.open {
  display: flex;
}
.color-lightbox img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 0.5rem; box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.color-lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10;
}
.color-lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

/* Video lightbox */
.video-lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.video-lightbox.open { display: flex; }
.video-lightbox video {
  max-width: 100%; max-height: 100%; width: auto;
  border-radius: 0.5rem; box-shadow: 0 0 60px rgba(0,0,0,0.6);
  background: #000;
}
.video-lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.color-thumb.video-thumb .play-badge {
  position: absolute; inset: 0; margin: auto;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(0,0,0,0.45); color: #fff;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transition: background 0.2s, transform 0.2s;
}
.color-thumb.video-thumb .play-badge svg { width: 1.1rem; height: 1.1rem; margin-left: 2px; }
.color-thumb.video-thumb:hover .play-badge { background: rgba(0,0,0,0.65); transform: scale(1.08); }
.color-thumbs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(6rem, 1fr)); gap: 0.75rem; margin-top: 1rem;
}
.color-thumb {
  position: relative; aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; background: none; padding: 0;
  transition: border-color 0.2s;
}
.color-thumb:hover { border-color: hsla(0,0%,100%,0.3); }
.color-thumb.active { border-color: #fff; }
.color-thumb img { width: 100%; height: 100%; object-fit: cover; }

.color-vehicle-preview { margin-top: 2.5rem; }
.color-preview-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: hsla(0,0%,100%,0.4); text-align: center; margin-bottom: 0.75rem;
}
.color-vehicle-select {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 1rem;
  background: hsla(0,0%,100%,0.05); border: 1px solid hsla(0,0%,100%,0.15);
  border-radius: 0.75rem; color: #fff; font-family: var(--font-sans);
  font-size: 0.875rem; cursor: pointer; appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.color-vehicle-select:hover, .color-vehicle-select:focus {
  border-color: hsla(0,0%,100%,0.3); outline: none;
}
.color-vehicle-select option { background: #111; color: #fff; }
.color-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.color-preview-card {
  display: block; border-radius: 0.75rem; overflow: hidden;
  border: 1px solid hsla(0,0%,100%,0.1); text-decoration: none;
  transition: border-color 0.2s;
}
.color-preview-card:hover { border-color: hsla(0,0%,100%,0.3); }
.color-preview-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.color-preview-card span {
  display: block; text-align: center; font-size: 0.7rem;
  letter-spacing: 0.05em; color: hsla(0,0%,100%,0.5); padding: 0.4rem;
  background: hsla(0,0%,0%,0.8);
}

/* Info panel */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.color-info-panel { }
.color-series-label {
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.05em; margin-bottom: 0.5rem;
  animation: fadeInUp 0.5s ease both;
}
.color-info-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1; color: #fff; margin-bottom: 1.25rem;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.color-desc { font-size: 1rem; color: hsla(0,0%,100%,0.55); line-height: 1.6; margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease 0.2s both; }
.color-film-title {
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: hsla(0,0%,100%,0.4); margin-bottom: 1rem; font-weight: 400;
  animation: fadeInUp 0.5s ease 0.3s both;
}
.color-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2rem; border-radius: 9999px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; background: #E2E8F0; color: #000;
  transition: background 0.2s, transform 0.2s; flex: 1;
}
.color-btn-primary:hover { background: #CBD5E1; transform: scale(1.02); }
.color-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2rem; border-radius: 9999px; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; border: 1px solid hsla(0,0%,100%,0.25); color: #fff;
  transition: background 0.2s, border-color 0.2s; flex: 1;
}
.color-btn-outline:hover { background: hsla(0,0%,100%,0.1); border-color: hsla(0,0%,100%,0.5); }

.color-cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap;
  animation: fadeInUp 0.5s ease 0.5s both; }

/* Specs bullet list in right panel */
.color-info-panel .specs-list {
  margin-bottom: 2.5rem; padding: 0; list-style: none;
  animation: fadeInUp 0.5s ease 0.35s both;
}
.color-info-panel .specs-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: hsla(0,0%,100%,0.75); margin-bottom: 0.7rem;
  line-height: 1.5;
}
.specs-check {
  width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.15rem;
  stroke: #0066FF; stroke-width: 2.5;
}

/* Full specs section */
.color-full-specs {
  padding: 4rem 0; border-top: 1px solid hsla(0,0%,100%,0.05);
  border-bottom: 1px solid hsla(0,0%,100%,0.05);
}
.color-section-title {
  font-size: 0.875rem; letter-spacing: 0.1em;
  color: hsla(0,0%,100%,0.4); margin-bottom: 1.5rem;
}
.color-specs-ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.color-specs-ul li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: hsla(0,0%,100%,0.7); line-height: 1.4;
}
.color-specs-ul .icon-check { width: 16px; height: 16px; flex-shrink: 0; stroke: #0066FF; }

/* Vehicle section */
.color-vehicle-section { padding: 4rem 0; }
.color-vehicle-count {
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: hsla(0,0%,100%,0.4); margin-bottom: 1.5rem;
}
.color-vehicle-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem;
}
.color-vehicle-card {
  display: block; border-radius: 0.75rem; overflow: hidden; text-decoration: none;
  border: 1px solid hsla(0,0%,100%,0.08); transition: border-color 0.2s;
}
.color-vehicle-card:hover { border-color: hsla(0,0%,100%,0.25); }
.color-vehicle-img {
  width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.color-vehicle-card:hover .color-vehicle-img { transform: scale(1.05); }
.color-vehicle-overlay {
  padding: 0.6rem 0.8rem; background: hsla(0,0%,0%,0.9);
}
.color-vehicle-model {
  font-size: 0.75rem; letter-spacing: 0.05em;
  color: hsla(0,0%,100%,0.6);
}

/* CTA */
.series-cta {
  padding: 8rem 0;
}
.series-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1.5rem;
}
.series-cta p {
  font-size: 1.125rem; color: hsla(0,0%,100%,0.5); max-width: 32rem; margin: 0 auto 3rem; font-weight: 300;
}
.series-cta-btn {
  display: inline-block; padding: 1rem 2.5rem; border-radius: 9999px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  background: #E2E8F0; color: #000;
  transition: background 0.2s, transform 0.2s;
}
.series-cta-btn:hover { background: #CBD5E1; transform: scale(1.05); }

/* ── Film series ── */
.series-block { padding: 6rem 0; border-top: 1px solid hsl(0,0%,15%,0.3); }
.series-block.alt { background: var(--card); }
.series-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .series-grid { grid-template-columns: 1fr 2fr; } }
.series-detail {
  font-size: 0.875rem; color: hsl(0,0%,65%,0.7); line-height: 1.625;
  border-left: 2px solid hsl(1,53%,40%,0.4); padding-left: 1rem; margin: 1rem 0 2rem;
}
.swatch-grid-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .swatch-grid-sm { grid-template-columns: repeat(6, 1fr); } }

/* ── Series Car Image ── */
.series-car-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--card);
  border: 1px solid hsl(0,0%,15%,0.3);
}
.series-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.series-block .series-grid:hover .series-car-img img {
  transform: scale(1.04);
}
.series-car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0,0%,3%,0.5), transparent 40%);
  pointer-events: none;
}
.series-car-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
   color: #fff;
  background: hsla(0,0%,0%,0.6);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  z-index: 2;
}
.series-car-badge svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}
.color-swatch {
  width: 100%; aspect-ratio: 1; position: relative; overflow: hidden; margin-bottom: 0.5rem;
  background-size: cover !important; background-position: center !important;
}
.color-swatch::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, hsla(0,0%,0%,0.5), transparent 50%);
  pointer-events: none;
}
.color-swatch-shine {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, hsl(0,0%,100%,0.1), transparent, hsl(0,0%,0%,0.2));
}
.color-swatch-hover {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 0.375rem;
  opacity: 0; transition: opacity 0.2s; background: hsl(0,0%,0%,0.2);
}
.color-swatch-wrap:hover .color-swatch-hover { opacity: 1; }
.color-swatch-name-sm {
  font-family: var(--font-display); font-size: 8px;
  letter-spacing: 0.1em; color: #fff; line-height: 1.2;
}
.color-label-sm {
  font-family: var(--font-display); font-size: 9px;
  color: var(--muted-foreground); line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.color-swatch-wrap:hover .color-label-sm { color: var(--primary); }
.cta-primary-section {
  padding: 5rem 0; background: var(--primary); border-top: 1px solid hsl(1,53%,40%,0.6); text-align: center;
}
.cta-primary-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.03em; color: #fff; margin-bottom: 1rem;
}
.cta-primary-section p { color: hsl(0,0%,100%,0.7); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ── Series page ── */
.page-header { padding: 10rem 0 5rem; background: var(--background); border-bottom: 1px solid hsl(0,0%,15%,0.3); }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem;
  font-family: var(--font-display); letter-spacing: 0.1em;
  color: var(--muted-foreground); margin-bottom: 2.5rem; transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }
.back-link svg { width: 14px; height: 14px; }
.page-header-row {
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 768px) {
  .page-header-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.page-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
}
.page-tagline {
  color: var(--primary); font-family: var(--font-display); letter-spacing: 0.1em;
  font-size: 0.875rem; margin-top: 0.75rem;
}
.color-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 640px) { .color-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .color-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .color-grid { grid-template-columns: repeat(5, 1fr); } }
.color-card {
  display: block; text-decoration: none; color: inherit;
}
.color-card-name {
  font-family: var(--font-display); font-size: 0.875rem;
  font-weight: 700; line-height: 1.25; transition: color 0.2s;
}
.color-card:hover .color-card-name { color: var(--primary); }
.color-swatch-wrap { display: block; text-decoration: none; color: inherit; }
.color-view-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s; background: hsl(0,0%,0%,0.3);
}
.color-card:hover .color-view-badge { opacity: 1; }
.color-view-badge span {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.1em;
  color: #fff; border: 1px solid hsl(0,0%,100%,0.5); padding: 0.375rem 0.75rem;
}

/* ── Series nav ── */
.series-nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid hsl(0,0%,15%,0.3); }
.series-nav a {
  display: flex; align-items: center; gap: 0.75rem; padding: 2rem; transition: background 0.2s;
}
.series-nav a:hover { background: var(--card); }
.series-nav a.next { justify-content: flex-end; text-align: right; }
.series-nav-label { font-size: 0.75rem; color: var(--muted-foreground); font-family: var(--font-display); letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.series-nav-title { font-family: var(--font-display); font-size: 0.875rem; text-transform: capitalize; transition: color 0.2s; }
.series-nav a:hover .series-nav-title { color: var(--primary); }

/* ── Color detail ── */
.breadcrumb { padding: 7rem 0 1.5rem; background: var(--background); border-bottom: 1px solid hsl(0,0%,15%,0.3); }
.breadcrumb nav { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span {
  font-size: 0.75rem; font-family: var(--font-display);
  letter-spacing: 0.1em; color: var(--muted-foreground);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--foreground); }
.color-hero {
  display: grid; grid-template-columns: 1fr;
  min-height: 40vh; align-content: center;
  padding-top: 5rem;
}
@media (min-width: 1024px) { .color-hero { grid-template-columns: 1fr 1fr; } }
.color-panel { position: relative; min-height: 50vw; background-size: cover !important; background-position: center !important; }
@media (min-width: 1024px) { .color-panel { min-height: auto; } }

/* ── Color Carousel ── */
.color-carousel {
  position: relative; min-height: 50vw; overflow: hidden;
}
@media (min-width: 1024px) { .color-carousel { min-height: auto; } }
.color-carousel-track {
  position: relative; width: 100%; height: 100%; min-height: inherit;
}
.color-carousel-item {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease;
  background-size: cover !important; background-position: center !important;
}
.color-carousel-item:first-child { opacity: 1; position: relative; }
.color-carousel-item.active {
  opacity: 1; position: absolute; inset: 0;
}
.color-carousel .color-panel-shine {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom right, hsl(0,0%,100%,0.15), transparent, hsl(0,0%,0%,0.25));
}
.color-carousel .color-badge {
  position: absolute; top: 2rem; left: 2rem; z-index: 5;
  background: hsl(0,0%,0%,0.4); backdrop-filter: blur(4px); color: #fff;
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 0.1em; padding: 0.375rem 0.75rem; border: 1px solid hsl(0,0%,100%,0.2);
}
.color-carousel-controls {
  position: absolute; bottom: 1.5rem; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.color-carousel-arrow {
  background: hsla(0,0%,0%,0.5); backdrop-filter: blur(4px); border: none;
  color: #fff; font-size: 1.5rem; width: 2.25rem; height: 2.25rem;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: background 0.2s; line-height: 1;
}
.color-carousel-arrow:hover { background: hsla(0,0%,0%,0.75); }
.color-carousel-dots { display: flex; gap: 0.5rem; }
.color-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid hsl(0,0%,100%,0.5);
  background: transparent; cursor: pointer; padding: 0; transition: all 0.2s;
}
.color-carousel-dot.active { background: #fff; border-color: #fff; }
.color-carousel-dot:hover { border-color: #fff; }

/* ── Color Carousel v2 (slide-based) ── */
.color-carousel2 {
  position: relative;
  min-height: 50vw;
  overflow: hidden;
}
@media (min-width: 1024px) { .color-carousel2 { min-height: auto; } }
.color-carousel2-track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.color-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: inherit;
}
.color-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
}
.color-slide-label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.15em;
   color: hsl(0,0%,100%,0.7);
  background: hsla(0,0%,0%,0.4);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: 1px solid hsl(0,0%,100%,0.15);
  pointer-events: none;
}
.color-carousel2 .color-panel-shine {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom right, hsl(0,0%,100%,0.15), transparent, hsl(0,0%,0%,0.25));
}
.color-carousel2 .color-badge {
  position: absolute; top: 2rem; left: 2rem; z-index: 5;
  background: hsl(0,0%,0%,0.4); backdrop-filter: blur(4px); color: #fff;
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 0.1em; padding: 0.375rem 0.75rem; border: 1px solid hsl(0,0%,100%,0.2);
}
.color-carousel2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: hsla(0,0%,0%,0.45);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
}
.color-carousel2:hover .color-carousel2-arrow {
  opacity: 1;
}
.color-carousel2-arrow:hover { background: hsla(0,0%,0%,0.7); }
.color-carousel2-arrow.prev { left: 1rem; }
.color-carousel2-arrow.next { right: 1rem; }
.color-carousel2-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}
.color-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid hsl(0,0%,100%,0.5);
  background: transparent; cursor: pointer; padding: 0;
  transition: all 0.2s;
}
.color-dot.active { background: #fff; border-color: #fff; }
.color-dot:hover { border-color: #fff; }
.color-panel-shine {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, hsl(0,0%,100%,0.15), transparent, hsl(0,0%,0%,0.25));
}
.color-badge {
  position: absolute; top: 2rem; left: 2rem;
  background: hsl(0,0%,0%,0.4); backdrop-filter: blur(4px); color: #fff;
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 0.1em; padding: 0.375rem 0.75rem; border: 1px solid hsl(0,0%,100%,0.2);
}
.color-details { display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; }
@media (min-width: 1024px) { .color-details { padding: 4rem; } }
.color-details h1 {
  font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem;
}
.color-details .desc { color: var(--muted-foreground); line-height: 1.625; margin-bottom: 2.5rem; font-size: 1.125rem; }
.specs-list { list-style: none; margin-bottom: 2.5rem; }
.specs-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: hsl(0,0%,95%,0.8); margin-bottom: 0.75rem; }
.color-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .color-actions { flex-direction: row; } }

/* ── Contact Page Layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}
.contact-info {
  padding: 2rem 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.contact-item-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
   color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.contact-item-value {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--card);
  border: 1px solid hsl(0,0%,15%,0.3);
  border-radius: 12px;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 3rem;
  }
}

/* ── Contact form ── */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.75rem; font-family: var(--font-display);
  letter-spacing: 0.1em; color: var(--muted-foreground);
}
.form-input {
  width: 100%; background: var(--background); border: 1px solid var(--border);
  padding: 1rem; color: #fff; font-family: var(--font-sans); font-size: 1rem;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder { color: hsl(0,0%,65%,0.5); }
select.form-input { appearance: none; cursor: pointer; }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-status { text-align: center; padding: 5rem 0; }
.form-status .check { color: var(--primary); font-size: 3rem; margin-bottom: 1rem; }
.form-status h3 {
  font-size: 1.5rem; font-family: var(--font-display); font-weight: 700;
  margin-bottom: 1rem;
}
.form-error { color: #f87171; font-size: 0.875rem; text-align: center; }
.form-ref { font-size: 0.75rem; color: var(--muted-foreground); font-family: monospace; margin-top: 0.5rem; }
.form-ref span { color: var(--primary); }

/* ── 404 ── */
.not-found { padding: 8rem 0; text-align: center; }
.not-found h1 { font-size: 4rem; margin-bottom: 1rem; }
.not-found p { color: var(--muted-foreground); margin-bottom: 2rem; }

/* ── Animations ── */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-scale {
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-scale.visible { opacity: 1; transform: scale(1); }

/* ── Video Lightbox ── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: hsla(0,0%,3%,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.video-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px hsla(0,0%,0%,0.6);
}
.video-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-family: var(--font-sans);
  line-height: 1;
}
.video-lightbox-close:hover {
  opacity: 1;
}

/* ── Car Gallery Cards ── */
.car-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid hsl(0,0%,15%,0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.car-card:hover {
  border-color: hsl(1,53%,40%,0.4);
  transform: translateY(-3px);
}
.car-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: hsl(0,0%,6%);
}
.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card:hover .car-card-img img {
  transform: scale(1.04);
}
.car-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0,0%,3%,0.6), transparent 50%);
  pointer-events: none;
}
.car-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
   color: #fff;
  background: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  z-index: 2;
}
.car-card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.car-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
   letter-spacing: 0.05em;
  color: var(--foreground);
}
.car-card-colors-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
   color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.car-card-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.car-color-swatch {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid hsl(0,0%,20%);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.car-color-swatch:hover {
  border-color: var(--primary);
  transform: scale(1.2);
  z-index: 2;
}
.car-color-swatch-fill {
  width: 100%;
  height: 100%;
}
@media (min-width: 640px) {
  .car-card {
    flex-direction: row;
  }
  .car-card-img {
    flex: 0 0 280px;
    aspect-ratio: auto;
  }
  .car-card-info {
    flex: 1;
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .car-card-img {
    flex: 0 0 340px;
  }
  .car-card-title {
    font-size: 1.25rem;
  }
}
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }

/* ── Gallery Grid (Load-More) ── */
.g-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.g-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .g-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .g-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }


@keyframes gFadeIn {
  to { opacity: 1; transform: translateY(0); }
}


.g-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover !important;
  background-position: center !important;
  background-color: hsl(0,0%,6%);
}
.g-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0,0%,3%,0.85) 0%, transparent 45%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.g-card:hover .g-card-overlay {
  opacity: 1;
}
.g-card-model {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
   color: #fff;
  margin-bottom: 0.2rem;
}
.g-card-color {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0,0%,95%,0.85);
}
.g-counter {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
   margin-bottom: 1.5rem;
}

/* ── Unified Load More (replaces g-/sc-/cg-/vl-/lh-/vp-/veh-loadmore-wrap) ── */
.lm-wrap {
  text-align: center;
  padding: 2.5rem 0 3.5rem;
}
.btn-lm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e9edf2;
  background: hsla(0, 0%, 3%, 0.5);
  border: 1px solid var(--lm-accent, hsla(0, 0%, 100%, 0.22));
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, opacity 0.2s;
}
.btn-lm:hover {
  border-color: var(--lm-accent, hsl(1, 53%, 45%));
  background: hsla(1, 53%, 40%, 0.12);
  color: #fff;
}
.btn-lm:disabled,
.btn-lm.is-done {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
/* per-section accent override (optional) */
.lm-accent-purple { --lm-accent: hsla(270, 70%, 62%, 0.6); }
.lm-accent-purple .btn-lm:hover { background: hsla(270, 70%, 60%, 0.12); }

/* ── Color Tags Row ── */
.color-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid hsl(0,0%,15%,0.25);
  border-radius: 12px;
}
.color-tags-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
   letter-spacing: 0.05em;
  margin-right: 0.25rem;
  white-space: nowrap;
}
.color-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1px solid hsl(0,0%,15%,0.25);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.color-tag:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ── Gallery Filters ── */
.g-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid hsl(0,0%,15%,0.25);
  border-radius: 12px;
}
.g-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 160px;
}
.g-filter-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
   color: var(--muted-foreground);
}
.g-filter-select {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  background: hsl(0,0%,10%);
  border: 1px solid hsl(0,0%,20%);
  border-radius: 6px;
  color: var(--foreground);
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.g-filter-select:focus {
  outline: none;
  border-color: var(--primary);
}
.g-filter-clear {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
   color: var(--muted-foreground);
  background: none;
  border: 1px solid hsl(0,0%,20%);
  border-radius: 6px;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  height: 40px;
}
.g-filter-clear:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ── Home Series Grid ── */
.series-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .series-home-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .series-home-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* ── Solid Color series gallery grid (5 cols, load-more) ── */
.sc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .sc-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .sc-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; } }
.sc-card { position: relative; display: block; text-decoration: none; color: inherit; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--card); aspect-ratio: 4/3; min-height: 160px; opacity: 0; transform: translateY(12px); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.sc-card.sc-visible { opacity: 1; transform: translateY(0); animation: gFadeIn 0.4s ease forwards; }
.sc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px hsla(0,0%,0%,0.35); border-color: hsl(1,53%,40%,0.4); }
.sc-card-img { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; background-color: hsl(0,0%,6%); }
.sc-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(0,0%,3%,0.85) 0%, transparent 45%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; opacity: 0; transition: opacity 0.3s ease; }
.sc-card:hover .sc-card-overlay { opacity: 1; }
.sc-card-name { font-size: 0.8rem; font-weight: 600; color: #fff; letter-spacing: 0.03em; }
.sc-card .sc-angle { font-size: 0.65rem; color: hsla(0,0%,100%,0.5); letter-spacing: 0.08em; margin-top: 0.1rem; }
.gallery-grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .gallery-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .gallery-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; } }

/* ── 6-column card grid ── */
.grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .grid-6 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }

/* ── Vehicle grid (2 rows of 6) ── */
.vehicle-grid-12 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .vehicle-grid-12 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .vehicle-grid-12 { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }

/* ── Gallery grid (2 rows of 4) ── */
.gallery-grid-8 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .gallery-grid-8 { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .gallery-grid-8 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

/* ── 3-column card grid for color comparisons ── */
.compare-grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end; }
@media (min-width: 640px) { .compare-grid-3 { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.25rem; } }
@media (min-width: 1024px) { .compare-grid-3 { gap: 1.5rem; } }

.series-home-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid hsl(0,0%,15%,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: static;
  aspect-ratio: auto;
}
.series-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px hsla(0,0%,0%,0.35);
  border-color: hsl(1,53%,40%,0.35);
}
.series-home-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover !important;
  background-position: center !important;
  background-color: hsl(0,0%,6%);
}
.series-home-info {
  position: static;
  padding: 1rem 1.125rem 1.25rem;
}
.series-home-name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
   color: var(--foreground);
  margin-bottom: 0.3rem;
}
.series-home-sub {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.series-home-card:hover .series-home-name {
  color: var(--primary);
}

/* ── Footer v2 ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; text-align: left; gap: 1.5rem; }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.footer-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: hsl(0,0%,70%);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--primary); }
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid hsl(0,0%,15%,0.3);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-domain {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  opacity: 0.5;
}

/* ── Footer studio map ── */
.footer-map-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid hsl(0,0%,15%,0.3);
}
@media (min-width: 768px) {
  .footer-map-wrap { grid-template-columns: 1.6fr 1fr; align-items: center; gap: 2rem; }
}
.footer-map {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(0.15) contrast(1.04);
  display: block;
}
.footer-map-info { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-map-addr { font-family: var(--font-sans); font-size: 0.9rem; color: hsl(0,0%,82%); line-height: 1.5; margin: 0; }
.footer-map-hours { font-family: var(--font-sans); font-size: 0.85rem; color: var(--muted-foreground); margin: 0.25rem 0 0; }
.footer-map-dir {
  display: inline-block; margin-top: 0.7rem;
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  color: #fff; text-decoration: none;
  border: 1px solid hsla(0,0%,100%,0.25); border-radius: 999px;
  padding: 0.55rem 1.15rem; width: fit-content; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-map-dir:hover { background: #fff; color: #000; border-color: #fff; }

/* ── Minimal footer (homepage style) ── */
.footer-minimal { background: #000; border-top: 1px solid hsla(0,0%,100%,0.1); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-minimal .footer-copy { margin: 0; text-align: center; font-size: 0.8rem; color: hsla(0,0%,100%,0.4); }
.footer-minimal-links { display: flex; gap: 1.5rem; }
.footer-minimal-links .footer-link { font-size: 0.8rem; color: hsla(0,0%,100%,0.4); font-family: var(--font-sans); text-transform: none; letter-spacing: normal; }
.footer-minimal-links .footer-link:hover { color: #fff; }

/* Disclaimer — collapsed by default */
.color-disclaimer {
  max-width: 56rem; margin: 2.5rem auto 0; padding: 1.25rem 1.5rem;
  border-top: 1px solid hsla(0,0%,100%,0.06);
  text-align: center;
}
.color-disclaimer .disclaimer-preview {
  font-size: 0.8rem; line-height: 1.5; color: hsla(0,0%,100%,0.35);
  margin: 0; max-width: 48rem; display:inline;
}
.color-disclaimer .disclaimer-full {
  font-size: 0.8rem; line-height: 1.5; color: hsla(0,0%,100%,0.35);
  margin: 0; max-width: 48rem; display:none;
}
.color-disclaimer .disclaimer-full.visible { display:inline; }
.color-disclaimer .disclaimer-toggle {
  display:inline; cursor:pointer;
  font-size:0.8rem; color:hsla(0,0%,100%,0.4);
  background:none; border:none; padding:0; margin:0 0 0 0.2rem;
  font-family:inherit; text-decoration:underline dotted;
  text-underline-offset:2px;
}
.color-disclaimer .disclaimer-toggle:hover { color:hsla(0,0%,100%,0.6); }

/* ── Section header (shared by vehicles & gallery) ── */
.color-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 0.5rem;
}
.color-section-header h2 {
  font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
}
.color-section-link {
  font-size: 0.85rem; color: hsla(0,0%,100%,0.5);
  transition: color 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.color-section-link:hover { color: #fff; }
.color-section-link svg { width: 12px; height: 12px; }

/* ── Album / Gallery grid ── */
.color-album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .color-album-grid { grid-template-columns: repeat(2, 1fr); }
}
.color-album-item {
  position: relative; border-radius: 0.625rem; overflow: hidden;
  border: 1px solid hsla(0,0%,100%,0.06); cursor: pointer;
  aspect-ratio: 4/3; background: var(--card);
  transition: border-color 0.25s, transform 0.25s;
}
.color-album-item:hover {
  border-color: hsla(0,0%,100%,0.2);
  transform: scale(1.015);
}
.color-album-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s;
}
.color-album-item:hover img { transform: scale(1.08); }

/* ── Gallery lightbox (reuses color-lightbox) ── */
.color-album-lb { cursor: zoom-out; }
.color-album-lb img { max-width: 90vw; max-height: 85vh; object-fit: contain; }

/* cache-busting-timestamp: 1782924636 */

/* ═══ Unified Section Headings & Shared Components (promoted from per-page inline <style>) ═══
   Goal: one canonical heading system, centered by site decision; components defined once, reused everywhere.
   Per-page inline copies of these selectors should be DELETED (see seo-workspace scripts). */
.section-header-row {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 4rem;
}
.section-header-row > div { width: 100%; }
.section-title {
  text-align: center; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
}
.section-title.sm { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.section-label { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--primary); display: block; margin-bottom: 0.75rem; }
.section-desc { color: var(--muted-foreground); max-width: 24rem; line-height: 1.625; font-size: 0.875rem; }
@media (min-width: 768px) {
  .section-header-row { flex-direction: row; align-items: center; gap: 1.5rem; }
  .section-header-row > div,
  .section-header-row > .section-title { width: auto; flex: 1 1 auto; min-width: 0; }
  .section-header-row > a,
  .section-header-row .section-link,
  .section-header-row .section-desc.right { flex: 0 0 auto; }
}
@media (max-width: 767px) {
  .section-header-row > a,
  .section-header-row .section-link,
  .section-header-row .section-desc.right { align-self: flex-end; }
}

/* color-guide / finish-guide hubs → unified: title centered, "view all" link pinned right */
.cg-section-header, .cgh-section-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.cg-section-header h2, .cgh-section-header h2 {
  flex: 1 1 auto; text-align: center; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin: 0;
}
.cg-section-header p { color: #9a9a9a; margin: 6px 0 0; font-size: .95rem; }
.cgh-link { flex: 0 0 auto; font-size: .82rem; font-weight: 600; color: #a78bfa; text-decoration: none; display: flex; align-items: center; gap: 4px; transition: color .2s; white-space: nowrap; }
.cgh-link:hover { color: #c4b5fd; }
@media (max-width: 767px) {
  .cg-section-header, .cgh-section-header { flex-direction: column; }
  .cg-section-header h2, .cgh-section-header h2 { flex: 0 0 auto; }
  .cg-section-header > a, .cgh-section-header > a { align-self: flex-end; }
}

/* comparison detail "section-heading" (accent bar + bottom rule) */
.section-heading {
  display: flex; align-items: center; justify-content: center; gap: 14px; text-align: center;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; color: #fff;
  margin: 0 0 24px; padding-bottom: 14px; border-bottom: 1px solid var(--cmp-border);
}
.section-heading::before {
  content: ''; width: 5px; height: .82em; border-radius: 3px;
  background: linear-gradient(180deg, var(--cmp-a), var(--cmp-a-dk)); flex-shrink: 0;
}

/* vehicle-guide small uppercase label heading */
.vl-section-head { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; text-align: center; }
.vl-section-head h2 { font-size: .88rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #fff; }

/* color-comparisons "Explore More" pair cards */
.more-pair {
  background: var(--cmp-card); border: 1px solid var(--cmp-border); border-radius: 12px;
  padding: 10px; text-decoration: none; transition: border-color .3s, transform .25s, box-shadow .3s; display: block;
}
.more-pair:hover { border-color: var(--cmp-border-hi); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.more-pair:hover .more-pair-imgs img { transform: scale(1.05); }
.more-pair span { font-size: .82rem; color: #ccc; font-weight: 600; text-align: center; display: block; line-height: 1.4; }
.more-pair .vs-sm { color: #666; font-size: .6rem; }

/* homepage / series big image cards */
.series-card {
  position: relative; border-radius: 1.5rem; overflow: hidden; border: 1px solid hsla(0,0%,100%,0.1);
  display: block; text-decoration: none; aspect-ratio: 16/10;
}
.series-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s ease-out; }
.series-card:hover img { transform: scale(1.05); }
.series-card .grad-1 { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0.4), transparent); }
.series-card .grad-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5), transparent, transparent); }
.series-card .info { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.series-card .info .tag { font-size: .625rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; margin-bottom: .5rem; }
.series-card .info h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.03em; color: #fff; margin-bottom: .75rem; line-height: 1; }
.series-card .info .explore-btn {
  display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start; padding: .5rem 1.5rem;
  border-radius: 9999px; font-size: .875rem; font-weight: 600; background: #fff; color: #111;
  transition: transform .25s ease;
}
.series-card:hover .explore-btn { transform: scale(1.05); }

/* series swatches header (curated finishes) */
.series-swatches-header { max-width: 40rem; margin: 0 auto 5rem; text-align: center; }
.series-swatches-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; margin-bottom: 1rem; }
.series-swatches-header p { font-size: 1.125rem; color: hsla(0,0%,100%,0.5); font-weight: 300; }

/* ══ WS1 unified vehicle-module rules (2026-07-13) ══ */
/* Unified vehicle-module component styles (extracted from per-page inline <style>). */
.ba-card .ba-label span { font-size:.78rem; font-weight:700; color:var(--muted-foreground,hsla(0,0%,100%,.45)); letter-spacing:.1em; text-transform:uppercase; }
.ba-card .ba-label { padding:.85rem 1.25rem; text-align:center; background:hsla(0,0%,0%,.3); }
.ba-card img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.ba-card { border-radius:14px; overflow:hidden; border:1px solid var(--border,hsl(0,0%,18%)); background:var(--card,hsl(0,0%,8%)); }
.ba-card.ba-after .ba-label span { color:var(--primary,hsl(1,53%,40%)); }
.ba-card.ba-after .ba-label { background:hsla(1,53%,40%,.2); }
.ba-card.ba-after { border:2px solid hsla(1,53%,40%,.4); }
.bp-pop-img img{transform:scale(1.06)}
.bp-pop-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.bp-pop-img{width:100%;aspect-ratio:16/10;overflow:hidden;background:#111}
.cg-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.cg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.cg-slide.is-active { opacity: 1; }
.ci-build img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease-out; }
.ci-build { display:block; position:relative; border-radius:14px; overflow:hidden; aspect-ratio:4/3; border:1px solid hsla(0,0%,100%,.07); text-decoration:none; transition:transform .3s,border-color .3s,box-shadow .3s; }
.ci-build:hover img { transform:scale(1.06); }
.ci-build:hover { transform:translateY(-5px); border-color:hsla(270,70%,60%,.4); box-shadow:0 16px 44px rgba(124,58,237,.14); }
.cmp-hero { position:relative; overflow:hidden; border-radius:22px; background:linear-gradient(135deg,#0e1420 0%,#0d1117 55%,#161208 100%); margin:16px auto 0; max-width:1440px; width:calc(100% - 4rem); }
.cmp-hero-img img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.cmp-hero-img{ position:relative; height:100%; min-height:480px; overflow:hidden; }
.cmp-hero::before{ content:''; position:absolute; top:-120px; left:-80px; width:360px; height:360px; border-radius:50%; background:radial-gradient(circle,rgba(91,155,246,.18),transparent 70%); pointer-events:none; z-index:0; }

.coll-card-img img { transform:scale(1.06); }
.coll-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease-out; }
.coll-card-img img{ transform:scale(1.06); }
.coll-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease-out; }
.coll-card-img { aspect-ratio:16/10; overflow:hidden; position:relative; }
.coll-card-img{ aspect-ratio:16/10; overflow:hidden; position:relative; }
.coll-card:hover .coll-card-img img { transform:scale(1.06); }
.coll-card:hover .coll-card-img img{ transform:scale(1.06); }



.fc-swatch img { transform: scale(1.06); }
.fc-swatch img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease-out; }
.fc-swatch { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.fd-veh { display:block; border:1px solid hsla(0,0%,100%,.07); border-radius:14px; overflow:hidden; background:hsla(0,0%,100%,.02); text-decoration:none; transition:transform .3s,border-color .3s,box-shadow .3s; }
.fd-veh-img img { transform:scale(1.06); }
.fd-veh-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease-out; }
.fd-veh-img { aspect-ratio:4/3; overflow:hidden; }
.fd-veh:hover .fd-veh-img img { transform:scale(1.06); }
.fd-veh:hover { transform:translateY(-5px); border-color:hsla(270,70%,60%,.4); box-shadow:0 16px 44px rgba(124,58,237,.14); }
.lg-card img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.lg-card:hover img{ transform:scale(1.05); }


.lh-model-img img { transform:scale(1.06); }
.lh-model-img img { width:100%;height:100%;object-fit:cover; transition:transform .4s; }
.lh-model-img { aspect-ratio:4/3; overflow:hidden; background:#1a1a1e; }

.mod-card-img img { transform:scale(1.06); }
.mod-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease-out; }
.mod-card-img { aspect-ratio:4/3; overflow:hidden; position:relative; background:hsla(0,0%,100%,.03); }
.mod-card:hover .mod-card-img img { transform:scale(1.06); }

.pop-card-img img{ width:100%;height:100%;object-fit:cover;display:block; }
.pop-card-img{ position:relative; height:160px; overflow:hidden; display:grid; grid-template-columns:1fr 1fr; }
.tr-hero-strip img{width:160px;height:104px;object-fit:cover;border-radius:12px;border:1px solid hsla(0,0%,100%,.12)}
.tr-hero-strip{display:flex;gap:14px;justify-content:center;margin-top:30px;flex-wrap:wrap}
.tr-media a{display:block;text-decoration:none}
.tr-media img{width:100%;height:150px;object-fit:cover;border-radius:14px;border:1px solid hsla(0,0%,100%,.1)}
.tr-media{flex:0 0 220px}
.vcp-gal-show { opacity:1; pointer-events:auto; }
/* ── Breadcrumbs (shared between vehicle model pages and VCP) ── */
.vp-breadcrumb, .vcp-breadcrumb {
  padding: 6rem 0 0.5rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; flex-wrap: wrap;
}
.vp-breadcrumb a, .vcp-breadcrumb a { color: hsla(0,0%,100%,0.45); text-decoration: none; transition: color 0.2s; }
.vp-breadcrumb a:hover, .vcp-breadcrumb a:hover { color: #fff; }
.vp-breadcrumb span, .vcp-breadcrumb span { color: hsla(0,0%,100%,0.25); }
.vp-breadcrumb .vp-current, .vcp-breadcrumb .vcp-current { color: hsla(0,0%,100%,0.7); }
.vcp-hero { width: 100%; min-height: 75vh; background: linear-gradient(180deg,#0a0a0a 0%,#0f0f12 100%); position:relative; overflow:hidden; }
.vcp-hero-img-wrap img { width:100%; height:100%; object-fit:contain; display:block; }
.vcp-hero-img-wrap { width:100%; height:100%; border-radius:1rem; overflow:hidden; cursor:pointer; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.vcp-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 50%,rgba(100,120,80,.06) 0%,transparent 60%); pointer-events:none; }
.vcp-light-item img { width:100%; height:100%; object-fit:cover; display:block; }
.vcp-light-item { aspect-ratio:1/1; border-radius:1rem; overflow:hidden; border:2px solid hsla(0,0%,100%,.08); transition:all .3s; position:relative; cursor:pointer; }
.vcp-light-item:hover { border-color:hsla(100,40%,70%,.45); transform:scale(1.02); }
.vcp-pop-card .vcp-pop-badge { position:absolute; top:.6rem; right:.6rem; width:26px; height:26px; border-radius:50%; background:rgba(0,0,0,.55); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center; z-index:1; }

.vcp-pop-card:hover .vcp-pop-img img { transform:scale(1.06); }

.vcp-pop-img img { transform:scale(1.06); }
.vcp-pop-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.vcp-pop-img { width:100%; aspect-ratio:16/10; overflow:hidden; background:#111; }
.vl-feat-card:hover .vl-feat-img{transform:scale(1.05)}
.vl-feat-card:hover{transform:translateY(-4px);border-color:hsla(270,70%,60%,.4);box-shadow:0 16px 44px rgba(124,58,237,.14)}
.vl-feat-card{background:hsla(0,0%,100%,.02);border:1px solid hsla(0,0%,100%,.07);border-radius:14px;overflow:hidden;position:relative;min-height:260px;transition:transform .25s,border-color .25s,box-shadow .25s;text-decoration:none;display:block}
.vl-model-card.hidden-model{display:none}
.vl-model-card:hover .vl-model-img{transform:scale(1.05)}


@media (max-width:1024px) { .vcp-hero{min-height:auto;} }
@media (max-width:760px) { .tr-media img{height:96px} }
@media (max-width:760px) { .tr-media{flex:0 0 140px} }
@media (max-width:768px) { .cmp-hero-img{ min-height:280px; order:-1; } }

/* ══ WS2 unified bordered-card system (.ppf-card) ══
   One shared box + hover-lift, parameterized per class via --ppf-* custom properties.
   Per-class overrides (below) set that class's default shape/accent; a per-PAGE
   :root{ --ppf-accent: ... } can override it (used by vcard/lcard for their
   per-page theme accent). Class DOM names are preserved (adapter pattern). */
:root {
  --ppf-radius: 12px;
  --ppf-border: hsla(0,0%,100%,0.07);
  --ppf-bg: hsla(0,0%,100%,0.02);
  --ppf-accent: hsla(0,0%,100%,0.3);
  --ppf-shadow: rgba(124,58,237,0.14);
  --ppf-lift: -3px;
}
.ppf-card,
.vcard, .lcard, .g-card, .mod-card, .swatch-visual, .fc-swatch, .lg-card,
.pop-card, .coll-card, .vl-model-card, .vcp-pop-card {
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid var(--ppf-border);
  border-radius: var(--ppf-radius);
  overflow: hidden;
  background: var(--ppf-bg);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.ppf-card:hover,
.vcard:hover, .lcard:hover, .g-card:hover, .mod-card:hover, .swatch-visual:hover,
.fc-swatch:hover, .lg-card:hover, .pop-card:hover, .coll-card:hover,
.vl-model-card:hover, .vcp-pop-card:hover {
  transform: translateY(var(--ppf-lift));
  border-color: var(--ppf-accent);
  box-shadow: 0 16px 44px var(--ppf-shadow);
}
/* per-class default shape/accent (overrides :root for that class) */
.vcard, .lcard { --ppf-shadow: transparent; }
.g-card {
  --ppf-radius: 14px; --ppf-border: hsl(0,0%,15%,0.25); --ppf-bg: var(--card);
  --ppf-accent: hsl(1,53%,40%,0.4); --ppf-shadow: hsla(0,0%,0%,0.4); --ppf-lift: -6px;
  color: inherit; opacity: 0; transform: translateY(20px); animation: gFadeIn .4s ease forwards;
}
.mod-card, .coll-card { --ppf-radius: 16px; --ppf-accent: hsla(270,70%,60%,0.4); --ppf-shadow: rgba(124,58,237,0.14); }
.vl-model-card { --ppf-radius: 14px; --ppf-accent: hsla(270,70%,60%,0.4); --ppf-shadow: rgba(124,58,237,0.12); }
.lg-card { --ppf-radius: 12px; --ppf-border: var(--cmp-border); --ppf-bg: #111; --ppf-accent: var(--cmp-border-hi); --ppf-shadow: transparent; }
.vcp-pop-card { --ppf-radius: .875rem; --ppf-border: hsla(0,0%,100%,0.06); --ppf-bg: hsl(0,0%,7%); --ppf-accent: hsla(0,0%,100%,0.18); --ppf-shadow: rgba(0,0,0,0.4); --ppf-lift: -4px; }
.swatch-visual { --ppf-radius: 1rem; --ppf-border: hsla(0,0%,100%,0.1); --ppf-bg: #000; --ppf-accent: hsla(0,0%,100%,0.3); --ppf-lift: 0; --ppf-shadow: transparent; }
.fc-swatch { --ppf-radius: 12px; --ppf-border: hsla(0,0%,100%,0.07); --ppf-bg: transparent; --ppf-accent: hsla(0,0%,100%,0.3); --ppf-lift: 0; --ppf-shadow: transparent; }

/* === Lighting rows: 2 vehicles x 4 lightings (color-guide) === */
.lighting-rows { display: flex; flex-direction: column; gap: 30px; margin-top: 6px; }
.row-label {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 14px; font-size: .8rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted, #9aa0a6);
}
.row-label::before {
  content: ""; width: 24px; height: 2px; border-radius: 2px;
  background: var(--ppf-accent, #7c3aed);
}
.lighting-cells { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lcell {
  margin: 0; border-radius: 14px; overflow: hidden;
  background: var(--card, #161616); border: 1px solid var(--border, hsla(0,0%,100%,0.08));
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.lcell img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.lcell figcaption {
  padding: 10px 12px; font-size: .9rem; font-weight: 600; text-align: center;
  color: var(--text, #e9e9ec);
}
@media (max-width: 768px) { .lighting-cells { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .lighting-cells { grid-template-columns: 1fr; } }

/* ═══ EXPLORE PPF KNOWLEDGE — compact 6-category module (v6) ═══ */
.ek-section .section-header-row{margin-bottom:0}
.ek-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem;margin-top:1.1rem}
.ek-card{display:flex;align-items:flex-start;gap:.7rem;padding:.85rem .9rem;text-decoration:none;background:var(--card,hsla(0,0%,100%,.03));border:1px solid var(--border,hsla(0,0%,100%,.08));border-radius:11px;transition:border-color .22s ease,background .22s ease,transform .22s ease}
.ek-card:hover{border-color:hsla(265,62%,62%,.55);background:hsla(265,62%,62%,.07);transform:translateY(-2px)}
.ek-icon{flex:0 0 auto;width:30px;height:30px;display:grid;place-items:center;border-radius:8px;background:hsla(265,62%,62%,.13);color:hsl(265,72%,74%)}
.ek-icon svg{width:17px;height:17px;display:block}
.ek-title{flex:1 1 auto;font-size:.82rem;font-weight:600;color:var(--foreground,#fff);line-height:1.2}
.ek-arrow{flex:0 0 auto;color:var(--muted-foreground,hsla(0,0%,100%,.45));font-size:.9rem;line-height:1;transition:transform .2s ease,color .2s ease}
.ek-card:hover .ek-arrow{transform:translateX(3px);color:hsl(265,72%,74%)}
.ek-text{flex:1 1 auto;display:flex;flex-direction:column;gap:2px;min-width:0}
.ek-desc{font-size:.7rem;color:var(--muted-foreground,hsla(0,0%,100%,.45));line-height:1.35}
@media (max-width:760px){.ek-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:460px){.ek-grid{grid-template-columns:1fr}}

/* ═══ UNIFIED COMPONENTS — site-wide design system (v7) ═══
   Parameterized, reusable modules. Pages opt into variants by which
   sub-blocks / modifier classes they include — no forked CSS. */

/* ---------- HERO (.hero) ----------
   Base = dark, static, 2-col (content + aside). Parameterize via:
   • .hero--light      light-background variant
   • .hero--center     single centered column (no aside)
   • .hero-facts       Quick-Facts sidebar (lives inside .hero-aside)
   • .hero--carousel   enables the .hero-slider cross-fade gallery
*/
.hero{position:relative;background:linear-gradient(155deg,#0b0b10 0%,#15151d 60%,#101016 100%);color:#fff;padding:60px 0 68px;overflow:hidden}
.hero--light{background:linear-gradient(155deg,#f6f7fb 0%,#eceef4 100%);color:#15151d}
.hero::before{content:"";position:absolute;inset:0;background:radial-gradient(120% 90% at 82% -10%,hsla(265,62%,52%,.20),transparent 55%);pointer-events:none}
.hero--light::before{background:radial-gradient(120% 90% at 82% -10%,hsla(265,62%,52%,.10),transparent 55%)}
.hero .container{position:relative;z-index:1}
.hero .hero-inner{display:grid;grid-template-columns:1.15fr 1fr;gap:44px;align-items:start}
.hero--center .hero-inner{grid-template-columns:1fr;max-width:780px;margin:0 auto;text-align:center}
.hero .hero-content{max-width:560px}
.hero--center .hero-content{max-width:none;margin:0 auto}
.hero .hero-eyebrow{font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:hsl(265,74%,76%);margin:0 0 14px}
.hero--light .hero-eyebrow{color:hsl(265,52%,46%)}
.hero .hero-title{font-size:clamp(2rem,4.2vw,3.1rem);line-height:1.04;font-weight:800;margin:0 0 16px;letter-spacing:-.01em}
.hero .hero-subtitle{font-size:1.05rem;font-weight:600;color:hsl(265,74%,80%);margin:0 0 12px;letter-spacing:.01em}
.hero--light .hero-subtitle{color:hsl(265,52%,46%)}
.hero .hero-desc{font-size:1rem;line-height:1.7;color:hsla(0,0%,100%,.72);margin:0 0 24px}
.hero--light .hero-desc{color:hsla(0,0%,0%,.6)}
.hero .hero-btns{display:flex;gap:.75rem;flex-wrap:wrap}
.hero--center .hero-btns{justify-content:center}
.hero .hero-aside{display:flex;flex-direction:column;gap:16px}
.hero .hero-visual img{width:100%;border-radius:16px;display:block;box-shadow:0 24px 60px rgba(0,0,0,.5);aspect-ratio:16/10;object-fit:cover}
.hero--light .hero-visual img{box-shadow:0 18px 44px rgba(0,0,0,.18)}
.hero .hero-facts{background:hsla(0,0%,100%,.045);border:1px solid hsla(0,0%,100%,.1);border-radius:14px;padding:18px 20px}
.hero--light .hero-facts{background:hsla(0,0%,0%,.03);border-color:hsla(0,0%,0%,.08)}
.hero .hero-facts h3{font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;color:hsl(265,74%,76%);margin:0 0 6px}
.hero--light .hero-facts h3{color:hsl(265,52%,46%)}
.hero .hero-qf-row{display:flex;justify-content:space-between;align-items:baseline;gap:12px;padding:9px 0;border-top:1px solid hsla(0,0%,100%,.09);font-size:.86rem}
.hero .hero-qf-row:first-of-type{border-top:none}
.hero .hero-qf-k{color:hsla(0,0%,100%,.55)}
.hero--light .hero-qf-k{color:hsla(0,0%,0%,.5)}
.hero .hero-qf-v{color:#fff;font-weight:600;text-align:right}
.hero--light .hero-qf-v{color:#15151d}
/* carousel variant */
.hero .hero-slider{position:relative;border-radius:16px;overflow:hidden;aspect-ratio:16/10;box-shadow:0 24px 60px rgba(0,0,0,.5);background:#0e0e12}
.hero .hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .55s ease;pointer-events:none}
.hero .hero-slide.active{opacity:1;position:relative;pointer-events:auto}
.hero .hero-slide img{width:100%;height:100%;object-fit:cover;display:block}
.hero .hero-slider-arrow{position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;display:grid;place-items:center;border:none;border-radius:50%;background:rgba(0,0,0,.5);color:#fff;cursor:pointer;backdrop-filter:blur(4px);transition:background .2s}
.hero .hero-slider-arrow:hover{background:rgba(0,0,0,.75)}
.hero .hero-slider-prev{left:12px}.hero .hero-slider-next{right:12px}
.hero .hero-slider-arrow svg{width:20px;height:20px}
.hero .hero-slider-counter{position:absolute;bottom:12px;right:14px;font-size:.78rem;font-weight:600;color:#fff;background:rgba(0,0,0,.5);padding:3px 10px;border-radius:999px;backdrop-filter:blur(4px)}
@media (max-width:860px){.hero .hero-inner{grid-template-columns:1fr;gap:28px}.hero .hero-content{max-width:none}}

/* ---------- CTA BANNER (.cta-banner) ----------
   Image + text + primary/secondary buttons. Buttons reuse the global
   .btn-primary / .btn-outline so the action color stays consistent. */
.cta-banner{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center;background:linear-gradient(135deg,#0c0c11,#17171f);border:1px solid hsla(0,0%,100%,.08);border-radius:18px;padding:34px 38px;margin:48px 0}
.cta-banner--light{background:linear-gradient(135deg,#f6f7fb,#eceef4);border-color:hsla(0,0%,0%,.08)}
.cta-banner--light .cta-banner-inner h2{color:#15151d}
.cta-banner--light .cta-banner-inner p{color:hsla(0,0%,0%,.6)}
.cta-banner-inner h2{font-size:1.55rem;line-height:1.2;margin:0 0 10px;color:#fff}
.cta-banner-inner p{color:hsla(0,0%,100%,.66);line-height:1.6;margin:0 0 20px}
.cta-banner-btns{display:flex;gap:.75rem;flex-wrap:wrap}
.cta-banner-img img{width:100%;border-radius:14px;object-fit:cover;aspect-ratio:4/3;display:block}
@media (max-width:760px){.cta-banner{grid-template-columns:1fr;padding:26px 22px}.cta-banner-img{order:-1}}

/* ---------- VEHICLE GRID (.vehicle-grid) + Load More ----------
   Replaces related-card / veh-grid / model-grid / etc. Pairs with the
   global .lm-wrap / .btn-lm Load-More widget for "show more" behaviour. */
.vehicle-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px}
.vehicle-card{display:block;text-decoration:none;background:var(--card,hsla(0,0%,100%,.03));border:1px solid var(--border,hsla(0,0%,100%,.08));border-radius:14px;overflow:hidden;transition:border-color .2s ease,transform .2s ease}
.vehicle-card:hover{border-color:hsla(265,62%,62%,.5);transform:translateY(-3px)}
.vehicle-card-img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;background:#0e0e12}
.vehicle-card-body{padding:12px 14px}
.vehicle-card-name{font-size:.92rem;font-weight:700;color:#fff}
.vehicle-card-meta{font-size:.76rem;color:hsla(0,0%,100%,.55);margin-top:2px}
@media (max-width:520px){.vehicle-grid{grid-template-columns:repeat(2,1fr);gap:12px}}

/* PALTRIX-SHARED-MODULES : module classes previously inlined on every color page.
   Centralized so color pages AND vehicle pages share one source of truth. */
.two-col{display:grid;grid-template-columns:1.1fr 0.9fr;gap:48px;align-items:start}
.similar-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.scard{text-align:center;text-decoration:none;display:block;transition:transform .2s}
.scard:hover{transform:translateY(-3px)}
.scard-swatch{width:100%;aspect-ratio:1/1;border-radius:50%;overflow:hidden;margin-bottom:8px;border:2px solid transparent;transition:border-color .3s,box-shadow .3s;box-shadow:0 4px 12px rgba(0,0,0,.3)}
.scard:hover .scard-swatch{border-color:#a78bfa;box-shadow:0 6px 20px rgba(124,58,237,.25)}
.scard-swatch img{width:100%;height:100%;object-fit:cover}
.scard-name{font-size:.72rem;font-weight:500;color:hsla(0,0%,75%,.85);line-height:1.3}
@media(max-width:768px){.two-col{grid-template-columns:1fr;gap:32px}.similar-grid{grid-template-columns:repeat(3,1fr)}}
.guide-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;margin-top:1.5rem}
.gcard{display:block;text-decoration:none;border-radius:14px;overflow:hidden;background:hsl(0,0%,8%);border:1px solid hsl(0,0%,16%);transition:transform .3s,box-shadow .3s,border-color .3s;position:relative}
.gcard-tag{position:absolute;top:.55rem;left:.55rem;z-index:2;background:rgba(8,12,16,.78);backdrop-filter:blur(4px);color:#fff;font-size:.6rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;padding:.22rem .55rem;border-radius:999px;border:1px solid rgba(255,255,255,.16)}
.gcard:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(0,0,0,.4);border-color:hsla(190,90%,55%,.55)}
.gcard-img{aspect-ratio:4/3;overflow:hidden}
.gcard-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s}
.gcard:hover .gcard-img img{transform:scale(1.06)}
.gcard-name{padding:.7rem .8rem .85rem;font-size:.82rem;font-weight:600;color:hsla(0,0%,100%,.85);line-height:1.35;text-align:center}
@media(max-width:900px){.guide-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.guide-grid{grid-template-columns:1fr 1fr}}
.care-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:1.5rem}
.care-card{background:hsl(0,0%,8%);border:1px solid hsl(0,0%,16%);border-radius:12px;padding:1.1rem 1.15rem;transition:border-color .3s,transform .3s}
.care-card:hover{border-color:hsla(205,100%,55%,.4);transform:translateY(-3px)}
.care-card h4{margin:0 0 .45rem;font-size:.95rem;color:#e2e8f0;font-family:var(--font-display,system-ui,sans-serif)}
.care-card p{margin:0;font-size:.82rem;color:hsla(0,0%,60%,.85);line-height:1.6}
.warranty-box{background:linear-gradient(135deg,#0c0c11,#14141c);border:1px solid hsla(0,0%,100%,.08);border-radius:14px;padding:1.8rem 2rem;margin-top:1.5rem}
.warranty-box p{margin:0 0 .9rem;font-size:.92rem;color:hsla(0,0%,78%,.9);line-height:1.7}
.warranty-box .btn-primary{margin-top:.4rem}
@media(max-width:768px){.care-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.care-grid{grid-template-columns:1fr}}
.legal-note{display:flex;gap:.6rem;align-items:flex-start;margin-top:1rem;padding:.8rem 1rem;background:hsla(0,0%,100%,.03);border:1px solid hsla(0,0%,100%,.07);border-radius:10px;font-size:.8rem;color:hsla(0,0%,60%,.9);line-height:1.55}
.legal-note svg{width:18px;height:18px;flex-shrink:0;color:var(--primary,#5b9dff);margin-top:1px}
.legal-note a{color:var(--primary,#5b9dff);text-decoration:none}
.legal-note a:hover{text-decoration:underline}

/* PALTRIX-BA-REVEAL-MODULES */
/* == Before & After (multi-color transformation) == */
.ba-list{display:flex;flex-direction:column;gap:2rem;margin-top:1.5rem}
.ba-item-title{font-size:1.05rem;font-weight:600;color:#fff;margin:0 0 .9rem;font-family:var(--font-display,system-ui,sans-serif)}
.ba-hidden{display:none!important}
.ba-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.5rem}
.ba-card{margin:0}
.ba-photo{position:relative;aspect-ratio:4/3;border-radius:14px;overflow:hidden;border:1px solid hsl(0,0%,16%);background:hsl(0,0%,8%)}
.ba-photo img{width:100%;height:100%;object-fit:cover;display:block}
.ba-card figcaption{font-size:.8rem;color:hsla(0,0%,100%,.6);margin-top:.6rem;text-align:center}
@media(max-width:700px){.ba-grid{grid-template-columns:1fr}}

/* == Installation & Reveal == */
.install-video{position:relative;aspect-ratio:16/9;border-radius:16px;overflow:hidden;border:1px solid hsl(0,0%,16%);margin-top:1.5rem;background:#000;width:100%}
.install-video video,.install-video img{width:100%;height:100%;object-fit:cover;display:block}
.iv-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.8rem;background:linear-gradient(to top,rgba(0,0,0,.55),rgba(0,0,0,.15));cursor:pointer}
.iv-play{width:64px;height:64px;border-radius:50%;background:rgba(255,255,255,.92);color:#111;display:flex;align-items:center;justify-content:center;font-size:22px;padding-left:4px;box-shadow:0 8px 30px rgba(0,0,0,.4)}
.iv-label{font-size:.82rem;color:#fff;background:rgba(0,0,0,.45);padding:.35rem .8rem;border-radius:999px;border:1px solid hsla(0,0%,100%,.18)}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.step-card{background:hsl(0,0%,8%);border:1px solid hsl(0,0%,16%);border-radius:14px;padding:1.3rem 1.2rem;transition:border-color .3s,transform .3s}
.step-card:hover{border-color:hsla(205,100%,55%,.4);transform:translateY(-3px)}
.step-no{font-family:var(--font-display,system-ui,sans-serif);font-size:1.4rem;font-weight:800;color:#7dd3fc;display:block;margin-bottom:.5rem}
.step-card h4{font-size:.95rem;font-weight:600;color:#fff;margin:0 0 .4rem}
.step-card p{font-size:.8rem;color:hsla(0,0%,100%,.6);line-height:1.6;margin:0}
@media(max-width:700px){.steps-grid{grid-template-columns:1fr}}

/* == Dedicated video gallery == */
.video-gallery{margin-top:3rem;border-top:1px solid var(--border);padding-top:2.4rem;max-width:1440px;margin-left:auto;margin-right:auto;padding-left:2rem;padding-right:2rem}
.video-gallery-title{font-size:1.15rem;font-weight:600;margin:0 0 .35rem;color:#fff;font-family:var(--font-display,system-ui,sans-serif)}
.video-gallery-sub{font-size:.92rem;color:hsla(0,0%,100%,.6);margin:0 0 1.5rem}
.video-gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(15rem,1fr));gap:1.25rem}
.vg-card{position:relative;aspect-ratio:16/10;border:2px solid hsla(0,0%,100%,.14);background:#0c0c10;padding:0;cursor:pointer;overflow:hidden;transition:border-color .2s,transform .2s}
.vg-card:hover{border-color:var(--primary);transform:translateY(-2px)}
.vg-card img{width:100%;height:100%;object-fit:cover;display:block}
.vg-label{position:absolute;left:0;right:0;bottom:0;padding:.6rem .8rem;font-size:.9rem;font-weight:600;color:#fff;background:linear-gradient(to top,rgba(0,0,0,.82),transparent);pointer-events:none;letter-spacing:.2px}
@media(max-width:767px){.video-gallery-grid{grid-template-columns:repeat(2,1fr);gap:.9rem}.vg-card{aspect-ratio:4/3}}

/* ── Sticky Section Navbar (used on vehicle detail pages) ── */
.section-nav{
  /* site .navbar is fixed at top:0 (~65–78px tall); stick just below it */
  position:sticky;top:72px;z-index:800;
  background:rgba(12,12,16,.94);backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:.45rem 0;font-size:.78rem;
}
.section-nav-inner{
  max-width:1280px;margin:0 auto;padding:0 1rem;
  display:flex;align-items:center;gap:.1rem;
  overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
}
.section-nav-inner::-webkit-scrollbar{display:none}
.section-nav::after{
  content:'';position:absolute;right:0;top:0;bottom:0;width:48px;
  pointer-events:none;background:linear-gradient(90deg,transparent,rgba(12,12,16,.94));
}
.section-nav a{
  color:hsla(0,0%,70%,.85);text-decoration:none;white-space:nowrap;
  padding:.3rem .55rem;border-radius:6px;transition:color .2s,background .2s;
  font-weight:500;letter-spacing:.15px;font-family:var(--font-body,system-ui,sans-serif);
}
.section-nav a:hover{color:#fff;background:rgba(255,255,255,.08)}
.section-nav a.active{color:hsl(265,72%,74%);background:rgba(124,58,237,.14)}
.section-nav .nav-sep{color:hsla(0,0%,50%,.4);font-size:.7rem;margin:0 .15rem;flex-shrink:0}
@media(max-width:768px){
  .section-nav{padding:.35rem 0;font-size:.72rem}
  .section-nav a{padding:.28rem .45rem}
}

/* === About This Build Guide (eeat) meta cards === */
.eeat-meta{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.2rem;padding-top:1.2rem;border-top:1px solid hsla(0,0%,100%,.08)}
.eeat-card{background:hsl(0,0%,7%);border:1px solid hsla(0,0%,100%,.07);border-radius:.75rem;padding:.9rem 1.1rem}
.eeat-k{display:block;font-size:.66rem;text-transform:uppercase;letter-spacing:.07em;color:hsla(100,40%,70%,.75);margin-bottom:.35rem}
.eeat-v{display:block;font-size:.9rem;color:hsla(0,0%,100%,.82);line-height:1.5}
@media(max-width:560px){.eeat-meta{grid-template-columns:1fr}}

