/* ============================================================
   AutoLandGear — Main Stylesheet
   Dark premium theme | Gold accent
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-card: #161616;
  --primary: #C5B762;
  --primary-dark: #a8993e;
  --text: #ffffff;
  --muted: #999999;
  --border: #1f1f1f;
  --success: #25D366;
  --radius: 4px;
  --radius-lg: 8px;
  --max-w: 1200px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ---- Utilities ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  padding: 10px 20px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  box-shadow: 0 0 16px rgba(37,211,102,0.5);
}

/* ---- Floating WhatsApp FAB ---- */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2.2s ease-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wa-fab:hover {
  background: #1da851;
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 0 24px rgba(37,211,102,0.7);
}

/* ---- Footer Social Icons ---- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.2s ease;
}

.social-icon:hover { border-color: currentColor; }
.social-icon--ig:hover { color: #e1306c; box-shadow: 0 0 10px rgba(225,48,108,0.35); }
.social-icon--yt:hover { color: #ff0000; box-shadow: 0 0 10px rgba(255,0,0,0.35); }
.social-icon--fb:hover { color: #1877f2; box-shadow: 0 0 10px rgba(24,119,242,0.35); }
.social-icon--wa:hover { color: #25d366; box-shadow: 0 0 10px rgba(37,211,102,0.45); }

/* ---- Odometer Phone ---- */
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--primary);
}

.phone-prefix {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.odometer {
  display: inline-flex;
  align-items: center;
}

.odo-digit {
  display: inline-block;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  vertical-align: middle;
}

.odo-strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.odo-strip span {
  display: block;
  height: 1em;
  line-height: 1;
}

.odo-sep {
  display: inline-block;
  width: 0.3em;
}

/* ---- Brand Logo (strip + cards) ---- */
.brand-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.65;
  transition: opacity var(--transition);
  filter: brightness(1.2);
}

.brand-item:hover img {
  opacity: 1;
}

.brand-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 56px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  padding: 10px 14px;
}

.brand-logo-placeholder img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  display: block;
  filter: brightness(1.2);
  opacity: 0.85;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}

.logo-accent {
  font-family: 'Great Vibes', cursive;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.header-cta {
  margin-left: auto;
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 88px 1fr 340px;
  grid-template-rows: 1fr 76px;
  min-height: calc(100vh - 72px);
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Left: Slide Nav */
.hero-slide-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  border-right: 1px solid var(--border);
  padding: 32px 0;
}

.slide-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slide-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

.slide-dot:not(.active):hover {
  background: var(--muted);
}

.slide-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.thumb-preview {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.thumb-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.thumb-next {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 8px;
}

.thumb-arrow {
  font-size: 0.6rem;
  color: var(--primary);
}

/* ---- Hero Line Effects ---- */
.hero-speed-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-speed-lines span {
  position: absolute;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,183,98,0.25), transparent);
  animation: speed-line 3s linear infinite;
  opacity: 0;
}

.hero-speed-lines span:nth-child(1)  { top: 15%; width: 60%; animation-delay: 0s;    animation-duration: 2.8s; }
.hero-speed-lines span:nth-child(2)  { top: 28%; width: 40%; animation-delay: 0.4s;  animation-duration: 3.2s; }
.hero-speed-lines span:nth-child(3)  { top: 40%; width: 75%; animation-delay: 0.8s;  animation-duration: 2.5s; }
.hero-speed-lines span:nth-child(4)  { top: 52%; width: 50%; animation-delay: 1.2s;  animation-duration: 3.6s; }
.hero-speed-lines span:nth-child(5)  { top: 63%; width: 35%; animation-delay: 0.2s;  animation-duration: 2.9s; }
.hero-speed-lines span:nth-child(6)  { top: 22%; width: 55%; animation-delay: 1.6s;  animation-duration: 3.1s; }
.hero-speed-lines span:nth-child(7)  { top: 75%; width: 45%; animation-delay: 0.6s;  animation-duration: 2.7s; }
.hero-speed-lines span:nth-child(8)  { top: 35%; width: 65%; animation-delay: 2.0s;  animation-duration: 3.4s; }
.hero-speed-lines span:nth-child(9)  { top: 55%; width: 30%; animation-delay: 1.0s;  animation-duration: 2.6s; }
.hero-speed-lines span:nth-child(10) { top: 82%; width: 70%; animation-delay: 1.4s;  animation-duration: 3.0s; }

@keyframes speed-line {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* ---- Hero Wind Gusts ---- */
.hero-wind-gusts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-wind-gusts span {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, rgba(197,183,98,0.55), rgba(255,255,255,0.15), transparent);
  animation: wind-gust 1.4s ease-in infinite;
  opacity: 0;
}

.hero-wind-gusts span:nth-child(1) { top: 44%; width: 22%; animation-delay: 0s;    animation-duration: 1.2s; }
.hero-wind-gusts span:nth-child(2) { top: 49%; width: 14%; animation-delay: 0.3s;  animation-duration: 1.0s; }
.hero-wind-gusts span:nth-child(3) { top: 54%; width: 28%; animation-delay: 0.7s;  animation-duration: 1.5s; }
.hero-wind-gusts span:nth-child(4) { top: 60%; width: 18%; animation-delay: 0.1s;  animation-duration: 1.1s; }
.hero-wind-gusts span:nth-child(5) { top: 66%; width: 32%; animation-delay: 0.5s;  animation-duration: 1.3s; }
.hero-wind-gusts span:nth-child(6) { top: 72%; width: 20%; animation-delay: 0.9s;  animation-duration: 1.6s; }
.hero-wind-gusts span:nth-child(7) { top: 78%; width: 16%; animation-delay: 0.2s;  animation-duration: 0.9s; }
.hero-wind-gusts span:nth-child(8) { top: 58%; width: 10%; animation-delay: 0.6s;  animation-duration: 1.4s; }

@keyframes wind-gust {
  0%   { transform: translateX(-5%); opacity: 0; }
  15%  { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { transform: translateX(110%); opacity: 0; }
}

/* ---- Hero Ground / Earth Effect ---- */
.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 100%);
}

/* rushing ground lines */
.hero-ground span {
  position: absolute;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,183,98,0.3), transparent);
  animation: ground-rush 0.9s linear infinite;
  opacity: 0;
}

.hero-ground span:nth-child(1) { bottom: 4px;  width: 18%; animation-delay: 0s;    animation-duration: 0.7s; }
.hero-ground span:nth-child(2) { bottom: 8px;  width: 25%; animation-delay: 0.15s; animation-duration: 0.85s; }
.hero-ground span:nth-child(3) { bottom: 13px; width: 12%; animation-delay: 0.35s; animation-duration: 0.65s; }
.hero-ground span:nth-child(4) { bottom: 18px; width: 20%; animation-delay: 0.5s;  animation-duration: 0.9s; }
.hero-ground span:nth-child(5) { bottom: 24px; width: 15%; animation-delay: 0.1s;  animation-duration: 0.75s; }
.hero-ground span:nth-child(6) { bottom: 10px; width: 30%; animation-delay: 0.6s;  animation-duration: 1.0s; }
.hero-ground span:nth-child(7) { bottom: 6px;  width: 8%;  animation-delay: 0.25s; animation-duration: 0.6s; }

@keyframes ground-rush {
  0%   { transform: translateX(-10%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* ---- Hero Bike Track ---- */
.hero-bike-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* Glowing ground line */
.hero-bike-track::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(197,183,98,0.12) 5%,
    rgba(197,183,98,0.5) 30%,
    rgba(197,183,98,0.5) 70%,
    rgba(197,183,98,0.12) 95%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(197,183,98,0.3);
}

.hero-bike-runner {
  position: absolute;
  bottom: 2px;
  animation: bike-run 16s linear infinite;
  filter: drop-shadow(0 0 6px rgba(197,183,98,0.5));
}

@keyframes bike-run {
  0%   { transform: translateX(-120px) scaleX(-1); }
  100% { transform: translateX(calc(100vw + 120px)) scaleX(-1); }
}

/* Center: Main */
.hero-main {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* Crossfade slides */
.hero-slide-img {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide-img.active {
  opacity: 1;
}

/* Gradient overlay — ensures text readability */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.45) 40%, rgba(10,10,10,0.15) 100%),
    linear-gradient(to right, rgba(10,10,10,0.5) 0%, transparent 60%);
}

/* Text content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 56px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-line-top,
.hero-line-bottom {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

.hero-line-top {
  color: var(--text);
}

.hero-line-bottom {
  color: var(--primary);
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Right: Story Card */
.hero-story-card {
  grid-column: 3;
  grid-row: 1;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.story-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
  color: var(--text);
  backdrop-filter: blur(6px);
}

.story-card-img {
  flex: 1;
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--transition), transform 0.4s ease;
}

.hero-story-card:hover .story-card-img img {
  opacity: 0.9;
  transform: scale(1.03);
}

/* Placeholder when image is missing */
.story-card-img::after {
  content: 'Store Image';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: linear-gradient(160deg, #161616 0%, #1a1a08 100%);
  border: 2px dashed var(--border);
}

.story-card-img:has(img) {
  background: transparent;
}

.story-card-img:has(img)::after {
  display: none;
}

.story-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
}

.story-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  transition: opacity var(--transition);
}

.story-link:hover {
  opacity: 0.75;
}

/* ---- Hero Side Panel (right block) ---- */
.hero-side-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  overflow: hidden;
}

/* Carousel header */
.side-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-surface);
}

.side-carousel-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.sc-slider-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-nav-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}

.sc-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sc-step {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  min-width: 28px;
  text-align: center;
}

/* Carousel viewport — shows exactly 2 cards × 320px each */
.side-carousel-viewport {
  overflow: hidden;
  height: 640px;
  flex-shrink: 0;
}

.side-carousel-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each card — 320px (double size), 2 visible */
.sc-card {
  flex: 0 0 320px;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #141414;
  border-bottom: 1px solid var(--border);
}

.sc-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  box-sizing: border-box;
  animation: sc-effect 6s ease-in-out infinite;
}

/* No text labels */
.sc-card-name {
  display: none;
}

/* Zoom-bounce + slow shiver — 6s cycle */
@keyframes sc-effect {
  /* zoom bounce */
  0%   { transform: scale(1)    translate(0,0)      rotate(0deg); }
  10%  { transform: scale(1.06) translate(0,-2px)   rotate(0deg); }
  20%  { transform: scale(0.98) translate(0, 1px)   rotate(0deg); }
  28%  { transform: scale(1)    translate(0,0)       rotate(0deg); }
  /* slow shiver burst */
  38%  { transform: scale(1.02) translate(-2px,-1px) rotate(-0.4deg); }
  42%  { transform: scale(1.02) translate( 2px, 1px) rotate( 0.4deg); }
  46%  { transform: scale(1.02) translate(-1px, 1px) rotate(-0.25deg); }
  50%  { transform: scale(1)    translate(0,0)       rotate(0deg); }
  /* second zoom bounce */
  60%  { transform: scale(1.06) translate(0,-2px)   rotate(0deg); }
  70%  { transform: scale(0.98) translate(0, 1px)   rotate(0deg); }
  78%  { transform: scale(1)    translate(0,0)       rotate(0deg); }
  /* second shiver burst */
  86%  { transform: scale(1.02) translate(-2px, 0)   rotate(-0.35deg); }
  90%  { transform: scale(1.02) translate( 2px, 0)   rotate( 0.35deg); }
  94%  { transform: scale(1)    translate(0,0)       rotate(0deg); }
  100% { transform: scale(1)    translate(0,0)       rotate(0deg); }
}

/* Staggered delays so paired cards animate independently */
.sc-card:nth-child(1) .sc-card-img { animation-delay: 0s; }
.sc-card:nth-child(2) .sc-card-img { animation-delay: 1.0s; }
.sc-card:nth-child(3) .sc-card-img { animation-delay: 0.5s; }
.sc-card:nth-child(4) .sc-card-img { animation-delay: 1.5s; }
.sc-card:nth-child(5) .sc-card-img { animation-delay: 0.25s; }
.sc-card:nth-child(6) .sc-card-img { animation-delay: 1.25s; }
.sc-card:nth-child(7) .sc-card-img { animation-delay: 0.75s; }
.sc-card:nth-child(8) .sc-card-img { animation-delay: 1.75s; }

/* ---- Social Banners ---- */
.side-social-banners {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
}

.social-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  transition: background 0.2s ease;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.social-banner:last-child {
  border-bottom: none;
}

.social-banner:hover {
  background: var(--bg-surface);
}

.social-banner--ig svg {
  color: #e1306c;
  flex-shrink: 0;
}

.social-banner--yt svg {
  color: #ff0000;
  flex-shrink: 0;
}

.social-banner--fb svg {
  color: #1877f2;
  flex-shrink: 0;
}

.social-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.social-banner-handle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.social-banner-platform {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-banner-arrow {
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-banner:hover .social-banner-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* Bottom Bar */
.hero-bottom-bar {
  grid-column: 1 / -1;
  grid-row: 2;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 0;
}

.hero-featured-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}

.tag-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--primary);
  color: #000;
  padding: 3px 8px;
  border-radius: 2px;
}

.tag-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero-bottom-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slide-arrows {
  display: flex;
  gap: 4px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.arrow-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- Brand Strip ---- */
.brand-strip {
  padding: 40px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brand-strip-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.brand-track {
  display: flex;
  gap: 0;
  animation: scroll-brands 22s linear infinite;
  width: max-content;
  will-change: transform;
}

.brand-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  border-right: 1px solid var(--border);
}

.brand-item:hover {
  color: var(--primary);
}

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

/* ---- Categories ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* All category cards use bg image */
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
}

/* Off-Road spans 2 columns */
.category-card--wide {
  grid-column: span 2;
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--cat-bg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 30%;
  z-index: 0;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-bg {
  transform: scale(1.04);
}

/* Gradient overlay */
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.3) 55%,
    rgba(10,10,10,0.05) 100%
  );
  transition: background var(--transition);
}

.category-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.4) 55%,
    rgba(10,10,10,0.1) 100%
  );
}

/* Gold bottom border on hover */
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}

.category-name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.category-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ---- Why Section ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

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

.why-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Store Experience ---- */
.store-section {
  background: var(--bg-surface);
}

.store-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.store-text .store-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.stat {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 0;
}

.cta-text .cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.cta-text .cta-sub {
  color: var(--muted);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
}

.page-hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 560px;
}

/* ---- Brands Page ---- */
.brands-intro {
  max-width: 660px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 64px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-card {
  background: var(--bg-card);
  padding: 40px 32px;
  transition: background var(--transition);
  border-bottom: 3px solid transparent;
}

.brand-card:hover {
  background: var(--bg-surface);
  border-bottom-color: var(--primary);
}

.brand-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.brand-logo-placeholder img {
  max-width: 60px;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.brand-logo-text {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.brand-card-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.brand-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.brand-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(197, 183, 98, 0.1);
  border: 1px solid rgba(197, 183, 98, 0.3);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ---- About Page ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p:first-of-type {
  font-size: 1.125rem;
  color: var(--text);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-item {
  background: var(--bg-card);
  padding: 28px 24px;
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.value-label {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.value-text {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-block-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-block p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.contact-block a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-block a:hover {
  color: var(--primary);
}

.contact-block .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding: 56px 0 48px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--text);
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--primary);
}


.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 72px 1fr 340px;
  }

  .hero-main {
    padding: 48px 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card--wide {
    grid-column: span 2;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  /* Hero collapses to single column */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .hero-slide-nav {
    display: none;
  }

  .hero-story-card {
    display: none;
  }

  .hero-main {
    grid-column: 1;
    grid-row: 1;
    min-height: 70vh;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-bottom-bar {
    grid-column: 1;
    grid-row: 2;
    padding: 0 24px;
  }

  .hero-line-top,
  .hero-line-bottom {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }

  .hero-headline-wrap {
    gap: clamp(50px, 12vw, 100px);
  }

  .hero-product-wrap {
    width: 80%;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card--wide {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
