/* ============================================================
   WILD WILLY'S BIKE SHOP — "Moto Noir" Design System
   Industrial garage luxury: matte black, high-contrast red & gold
   ============================================================ */

/* ---------- 1. VARIABLES & FOUNDATIONS ---------- */
:root {
    --ww-black: #050505;
    --ww-charcoal: #0c0d0f;
    --ww-panel: #111215;
    --ww-panel-soft: rgba(255, 255, 255, 0.05);
    --ww-border: rgba(255, 255, 255, 0.1);
    --ww-border-strong: rgba(255, 255, 255, 0.18);
    --ww-text: #f5f1e8;
    --ww-muted: #b8b0a4;
    --ww-cream: #f5ede2;
    --ww-cream-deep: #e8ddd0;
    --ww-red: #d41216;
    --ww-red-dark: #a10e10;
    --ww-red-glow: rgba(212, 18, 22, 0.35);
    --ww-gold: #f0a830;
    --ww-gold-soft: rgba(240, 168, 48, 0.15);
    --ww-accent: #ff4136;
    --ww-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    --ww-shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.45);
    --ww-radius: 20px;
    --ww-radius-sm: 12px;
    --ww-radius-pill: 999px;
    --ww-font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --ww-font-ui: "Chakra Petch", "Rajdhani", sans-serif;
    --ww-font-heading: "Syne", "Teko", sans-serif;
    --ww-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ww-ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*,
*::before,
*::after { box-sizing: border-box; }

body {
    background: var(--ww-black);
    color: var(--ww-text);
    font-family: var(--ww-font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: var(--ww-red); transition: color 0.25s ease; }
a:hover { color: var(--ww-gold); }

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

::selection {
    background: var(--ww-red);
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ww-black); }
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--ww-red); }

/* Noise texture overlay for dark sections */
.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ww-font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-heading--light p,
.section-heading--light h2 {
    color: var(--ww-text);
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    margin: 18px 0 14px;
    letter-spacing: -0.02em;
}

.section-heading p,
.hero-copy,
.hero-panel p,
.page-hero p {
    color: var(--ww-muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.section-cream .section-heading p,
.section-cream .section-heading h2,
.section-cream .section-heading--left p,
.section-cream .section-heading--left h2 {
    color: #3a3530;
}

/* Section label / eyebrow */
.section-label,
.eyebrow span,
.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--ww-radius-pill);
    background: rgba(212, 18, 22, 0.1);
    color: var(--ww-red);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--ww-font-ui);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 18, 22, 0.15);
}

.section-cream .section-label {
    background: rgba(212, 18, 22, 0.08);
    border-color: rgba(212, 18, 22, 0.12);
}

/* ---------- 3. LAYOUT ---------- */
.section-shell {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-cream {
    background: var(--ww-cream);
    color: #1a1714;
    position: relative;
}

.section-cream::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(240, 168, 48, 0.12), transparent 70%);
    pointer-events: none;
}

.section-dark {
    background: linear-gradient(180deg, #0a0b0d, var(--ww-black));
    position: relative;
}

.section-actions {
    text-align: center;
    margin-top: 40px;
}

/* ---------- 4. BUTTONS ---------- */
.btn-ww {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: var(--ww-radius-pill);
    border: 1px solid transparent;
    font-weight: 700;
    font-family: var(--ww-font-ui);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s var(--ww-ease);
    position: relative;
    overflow: hidden;
}

.btn-ww::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.btn-ww:hover::before { opacity: 1; }
.btn-ww:hover { transform: translateY(-3px); }
.btn-ww:active { transform: translateY(-1px); }

.btn-ww-primary {
    background: linear-gradient(135deg, var(--ww-red), var(--ww-accent));
    color: #fff;
    box-shadow: 0 16px 40px rgba(212, 18, 22, 0.3);
}

.btn-ww-primary:hover {
    color: #fff;
    box-shadow: 0 20px 50px rgba(212, 18, 22, 0.45);
}

.btn-ww-outline {
    border-color: var(--ww-border-strong);
    color: var(--ww-text);
    background: transparent;
    backdrop-filter: blur(4px);
}

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

.section-cream .btn-ww-outline {
    border-color: rgba(26, 23, 20, 0.2);
    color: #1a1714;
}

.section-cream .btn-ww-outline:hover {
    border-color: var(--ww-red);
    color: var(--ww-red);
}

.btn-ww-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ww-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-ww-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---------- 5. HEADER ---------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    transition: all 0.4s ease;
}

#header.header-scrolled {
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(212, 18, 22, 0.15);
}

#header .logo img {
    max-height: 54px;
    transition: transform 0.3s ease;
    filter: brightness(1.15) contrast(1.1);
    opacity: 1 !important;
}

#header .logo img:hover {
    transform: scale(1.05);
}

#header .social-links {
    gap: 8px;
}

#header .social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ww-muted);
    font-size: 17px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

#header .social-links a:hover {
    background: var(--ww-red);
    color: #fff;
    border-color: var(--ww-red);
    transform: translateY(-2px);
}

/* Navigation */
.navbar a,
.navbar a:focus {
    font-size: 13px;
    letter-spacing: 0.1em;
    font-family: var(--ww-font-ui);
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 14px;
    position: relative;
    color: var(--ww-muted);
    transition: color 0.3s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--ww-gold);
    transform: scaleX(0);
    transition: transform 0.35s var(--ww-ease);
    border-radius: 1px;
}

.navbar .active::after,
.navbar a:hover::after {
    transform: scaleX(1);
}

.navbar .active,
.navbar a:hover,
.navbar li:hover > a {
    color: var(--ww-gold);
}

/* Mobile nav overlay */
.navbar-mobile {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.navbar-mobile.active {
    opacity: 1;
    pointer-events: auto;
}

.navbar-mobile ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.navbar-mobile ul li {
    margin: 12px 0;
}

.navbar-mobile ul li a {
    font-family: var(--ww-font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--ww-text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-mobile ul li a:hover,
.navbar-mobile ul li a.active {
    color: var(--ww-gold);
}

.mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    color: var(--ww-text);
    transition: color 0.3s ease;
    z-index: 10000;
}

.mobile-nav-toggle:hover { color: var(--ww-gold); }

.mobile-nav-toggle.bi-x {
    color: var(--ww-red);
    font-size: 32px;
}

/* ---------- 6. MOBILE CTA BAR ---------- */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: flex;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 18, 22, 0.25);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-cta-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    color: var(--ww-text);
    text-decoration: none;
    font-family: var(--ww-font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    min-height: 60px;
}

.mobile-cta-bar a i {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--ww-red);
}

.mobile-cta-bar a:hover,
.mobile-cta-bar a:active {
    background: rgba(212, 18, 22, 0.1);
    color: var(--ww-gold);
}

/* ---------- 7. HERO SECTION ---------- */
.hero-home {
    position: relative;
    overflow: hidden;
    padding: 150px 0 110px;
}

.hero-home__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 4, 4, 0.88), rgba(4, 4, 4, 0.5)),
                radial-gradient(circle at top left, var(--ww-red-glow), transparent 22%),
                url("../img/hero-bg3.jpg") center/cover no-repeat;
}

.hero-home .container,
.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-home h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    margin: 24px 0 20px;
    font-weight: 800;
}

.hero-home .eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-copy { max-width: 640px; }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0 26px;
}

.hero-notes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hero-notes li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ww-text);
    font-weight: 600;
}

.hero-stack {
    display: grid;
    gap: 22px;
}

/* Grand hero variant */
.hero-home--grand {
    --hero-mx: 50%;
    --hero-my: 34%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #040406 0%, #07070a 48%, #050505 100%);
}

.hero-home--grand::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--hero-mx) var(--hero-my), var(--ww-red-glow), transparent 36%),
                radial-gradient(circle at 80% 10%, var(--ww-gold-soft), transparent 30%);
}

.hero-home--grand::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.55) 36%,
        rgba(0, 0, 0, 0.85) 100%);
}

.hero-home--grand .container {
    position: relative;
    z-index: 3;
}

/* Hero FX layers */
.hero-grand__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grand__fx--grid {
    z-index: 1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 30%, #000 100%);
}

.hero-grand__fx--flare {
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0.28;
    background: radial-gradient(circle at 10% 16%, rgba(255, 65, 54, 0.4), transparent 28%),
                radial-gradient(circle at 84% 78%, rgba(240, 168, 48, 0.15), transparent 34%);
    animation: heroFlarePulse 10s ease-in-out infinite;
}

/* Hero video grid */
.hero-grand__video-shell {
    position: absolute;
    inset: -2px;
    z-index: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.hero-grand__video-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 32%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.hero-grand__video-stage {
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-stage-scale: 1.02;
    width: calc(100% + clamp(120px, 13vw, 320px));
    height: calc(100% + clamp(110px, 12vh, 280px));
    display: grid;
    gap: clamp(8px, 1vw, 14px);
    transform: perspective(1500px) rotateX(calc(7deg + var(--hero-tilt-x))) rotateY(var(--hero-tilt-y)) scale(var(--hero-stage-scale));
    transform-origin: center 68%;
    filter: saturate(1.2) contrast(1.08);
    transition: transform 900ms ease, opacity 700ms ease, filter 700ms ease;
    will-change: transform, opacity, filter;
}

.hero-grand__video-stage.is-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.hero-grand__video-stage.is-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 1fr; }
.hero-grand__video-stage.is-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }

.hero-grand__video-cell {
    position: relative;
    overflow: hidden;
    border-radius: var(--ww-radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #080808;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 720ms ease, transform 920ms var(--ww-ease);
}

.hero-grand__video-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.44));
}

.hero-grand__video-cell.is-ready {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-grand__video-stage.is-swapping {
    opacity: 0.9;
    filter: saturate(1.08) contrast(1.02);
}

.hero-grand__video-cell.is-refreshing {
    opacity: 0.42;
    transform: scale(0.98);
}

.hero-grand__video-cell.is-fallback {
    background: linear-gradient(140deg, #100f0f, #2b0b0b);
}

.hero-grand__video-cell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: contrast(1.04) saturate(1.15);
    transition: opacity 380ms ease;
    animation: heroKenBurns 15s ease-in-out infinite alternate;
}

.hero-grand__video-cell.is-refreshing video { opacity: 0.26; }

.hero-grand__video-stage.is-4 .hero-grand__video-cell.is-ready:nth-child(odd) { transform: translateY(-7px) scale(1); }
.hero-grand__video-stage.is-4 .hero-grand__video-cell.is-ready:nth-child(even) { transform: translateY(7px) scale(1); }

/* Hero Iron (centered content layout) */
.hero-iron {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-iron__signalbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 5;
}

/* ---- Hero tagline: biker chrome treatment ---- */
.hero-iron__signalbar span {
    display: inline-block;
    text-align: center;
}

.hero-tagline {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(1.8rem, 5.5vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #f0a830;
    text-shadow:
        0 0 10px rgba(212, 18, 22, 0.6),
        0 0 30px rgba(212, 18, 22, 0.3),
        0 0 60px rgba(240, 168, 48, 0.15),
        2px 2px 0 rgba(0, 0, 0, 0.8);
    position: relative;
    cursor: default;
    transition: text-shadow 0.3s ease, color 0.3s ease;
    padding: 8px 0 16px;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.hero-tagline:hover {
    color: #fff;
    text-shadow:
        0 0 15px rgba(212, 18, 22, 0.9),
        0 0 40px rgba(212, 18, 22, 0.5),
        0 0 80px rgba(240, 168, 48, 0.3),
        0 0 120px rgba(212, 18, 22, 0.2),
        2px 2px 0 rgba(0, 0, 0, 0.9);
}

/* Glow pulse animation */
@keyframes glowPulse {
    0%   { text-shadow: 0 0 10px rgba(212,18,22,0.6), 0 0 30px rgba(212,18,22,0.3), 0 0 60px rgba(240,168,48,0.15), 2px 2px 0 rgba(0,0,0,0.8); }
    100% { text-shadow: 0 0 20px rgba(212,18,22,0.8), 0 0 50px rgba(240,168,48,0.4), 0 0 80px rgba(212,18,22,0.2), 2px 2px 0 rgba(0,0,0,0.8); }
}

/* Individual letter animation for scramble reveal */
.hero-tagline .tl-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px) rotateX(40deg);
    animation: charReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Whitespace chars keep width but skip animation */
.hero-tagline .tl-space {
    display: inline-block;
    width: 0.3em;
}

.hero-iron__main { position: relative; }

.hero-iron__media-stage {
    position: relative;
    width: min(320px, 60vw);
    margin: 0 auto 24px;
}

.hero-iron__devil-backdrop {
    position: absolute;
    inset: -30%;
    width: 160%;
    opacity: 0.12;
    filter: blur(1px);
    z-index: 0;
}

.hero-iron__will {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--ww-radius);
    box-shadow: var(--ww-shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.hero-iron__will--bw {
    filter: grayscale(0.6) contrast(1.15);
}

.hero-iron__statement { margin-bottom: 24px; }

.hero-iron__kicker {
    font-family: var(--ww-font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ww-gold);
    margin-bottom: 10px;
}

.hero-iron__copy {
    color: var(--ww-muted);
    font-size: 1.05rem;
    max-width: 60ch;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-iron__contact-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-iron__contact-stack a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--ww-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ww-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-iron__contact-stack a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--ww-gold);
    color: var(--ww-gold);
}

.hero-iron__contact-stack a i { color: var(--ww-red); }

.hero-iron__cta-wrap { margin-top: 8px; }

.hero-iron__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ---------- 8. REVIEW MARQUEE ---------- */
.review-slider-section {
    padding: 56px 0;
    background: var(--ww-charcoal);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.review-slider__header {
    text-align: center;
    margin-bottom: 36px;
}

.review-slider__header h2 {
    font-family: var(--ww-font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--ww-text);
    margin-top: 12px;
}

.review-marquee {
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.review-marquee__track {
    display: flex;
    gap: 16px;
    animation: marqueeScroll 90s linear infinite;
    width: max-content;
}

.review-marquee:hover .review-marquee__track {
    animation-play-state: paused;
}

.review-pill {
    flex: 0 0 auto;
    max-width: 420px;
    padding: 22px 26px;
    border-radius: var(--ww-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.review-pill::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 2.5rem;
    font-family: var(--ww-font-heading);
    color: var(--ww-red);
    opacity: 0.3;
    line-height: 1;
}

.review-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 18, 22, 0.2);
    transform: translateY(-3px);
}

.review-pill p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--ww-muted);
    margin: 0;
    font-style: italic;
}

/* ---------- 9. TRUST MARQUEE ---------- */
.trust-marquee {
    padding: 80px 0;
    background: var(--ww-black);
    position: relative;
}

.trust-marquee__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-marquee__grid article {
    padding: 32px 26px;
    border-radius: var(--ww-radius);
    background: var(--ww-panel);
    border: 1px solid var(--ww-border);
    border-left: 3px solid var(--ww-red);
    transition: all 0.4s var(--ww-ease);
    position: relative;
    overflow: hidden;
}

.trust-marquee__grid article::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ww-red-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trust-marquee__grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 18, 22, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.trust-marquee__grid article:hover::after { opacity: 1; }

.trust-marquee__grid i {
    font-size: 1.6rem;
    color: var(--ww-gold);
    margin-bottom: 16px;
    display: block;
}

.trust-marquee__grid h2 {
    font-family: var(--ww-font-ui);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
    color: var(--ww-text);
}

.trust-marquee__grid p {
    font-size: 0.9rem;
    color: var(--ww-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---------- 10. VEHICLE GRID ---------- */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vehicle-card {
    padding: 32px 26px;
    border-radius: var(--ww-radius);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ww-ease);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ww-red), var(--ww-accent));
    transform: scaleX(0);
    transition: transform 0.4s var(--ww-ease);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

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

.vehicle-card i {
    font-size: 2rem;
    color: var(--ww-red);
    margin-bottom: 14px;
    display: block;
}

.vehicle-card h3 {
    font-family: var(--ww-font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a1714;
    margin: 0 0 8px;
}

.vehicle-card p {
    font-size: 0.88rem;
    color: #6b6359;
    margin: 0;
    line-height: 1.6;
}

/* ---------- 11. SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: service-counter;
}

.service-card {
    counter-increment: service-counter;
    padding: 36px 28px;
    border-radius: var(--ww-radius);
    background: var(--ww-panel);
    border: 1px solid var(--ww-border);
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--ww-red), var(--ww-accent)) 1;
    border-image-slice: 0 0 0 3;
    transition: all 0.4s var(--ww-ease);
    position: relative;
}

.service-card::before {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--ww-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-family: var(--ww-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 18px;
    color: var(--ww-text);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--ww-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card ul li:last-child { border-bottom: none; }

.service-card ul li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ww-red);
}

/* ---------- 12. FINANCING ---------- */
.funding-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 44px;
    border-radius: var(--ww-radius);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.funding-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--ww-gold), var(--ww-red));
}

.funding-card h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #1a1714;
    margin: 12px 0 10px;
}

.funding-card p {
    color: #6b6359;
    font-size: 0.95rem;
    margin: 0;
}

.funding-card__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ---------- 13. ABOUT / FOUNDER ---------- */
.founder-section .founder-media {
    position: relative;
    border-radius: var(--ww-radius);
    overflow: hidden;
}

.founder-section .founder-media::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--ww-red), var(--ww-gold));
    z-index: -1;
}

.founder-section .founder-media img {
    border-radius: var(--ww-radius);
    width: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
}

.founder-section p {
    color: var(--ww-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.callout-grid article {
    padding: 28px 22px;
    border-radius: var(--ww-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--ww-border);
    transition: all 0.35s ease;
}

.callout-grid article:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.callout-grid--founder article {
    position: relative;
    padding-left: 28px;
}

.callout-grid--founder article::before {
    content: attr(data-step);
    font-family: var(--ww-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ww-red);
    opacity: 0.15;
    position: absolute;
    top: 8px;
    right: 14px;
    line-height: 1;
}

.founder-point__kicker {
    display: inline-block;
    font-family: var(--ww-font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ww-gold);
    margin-bottom: 6px;
}

.callout-grid h3 {
    font-family: var(--ww-font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ww-text);
    margin: 0 0 6px;
}

.callout-grid p {
    font-size: 0.88rem;
    color: var(--ww-muted);
    margin: 0;
    line-height: 1.6;
}

/* Cream-section callout grid overrides */
.section-cream .callout-grid article {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.section-cream .callout-grid h3 { color: #1a1714; }
.section-cream .callout-grid p { color: #6b6359; }

/* ---------- 14. WHY US ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-grid article {
    padding: 36px 28px;
    border-radius: var(--ww-radius);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s var(--ww-ease);
}

.why-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.why-grid article:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--ww-red);
}

.why-grid i {
    font-size: 2rem;
    color: var(--ww-gold);
    margin-bottom: 16px;
    display: block;
    transition: all 0.4s var(--ww-ease-bounce);
}

.why-grid h3 {
    font-family: var(--ww-font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1714;
    margin: 0 0 8px;
}

.why-grid p {
    font-size: 0.88rem;
    color: #6b6359;
    margin: 0;
    line-height: 1.6;
}

/* ---------- 15. PROBLEM SECTION ---------- */
.problem-section .problem-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.problem-pills span {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: var(--ww-radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ww-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ww-border);
    transition: all 0.3s ease;
    cursor: default;
}

.problem-pills span:hover {
    background: var(--ww-red-glow);
    border-color: rgba(212, 18, 22, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.call-prep-card {
    padding: 36px 30px;
    border-radius: var(--ww-radius);
    background: var(--ww-panel);
    border: 1px solid var(--ww-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.call-prep-card h2 {
    font-size: 1.5rem;
    margin: 12px 0 18px;
    color: var(--ww-text);
}

.call-prep-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.call-prep-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--ww-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-prep-card ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    font-size: 14px;
    color: var(--ww-gold);
    flex-shrink: 0;
}

/* ---------- 16. SHOP UPDATES PREVIEW ---------- */
.shop-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feed-card {
    border-radius: var(--ww-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.feed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.feed-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.feed-card__body {
    padding: 20px;
}

.feed-card__body h3 {
    font-family: var(--ww-font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1714;
    margin: 0 0 8px;
}

.feed-card__body p {
    font-size: 0.88rem;
    color: #6b6359;
    margin: 0;
    line-height: 1.6;
}

/* Feed toolbar for shop-updates page */
.feed-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.feed-toolbar h2 {
    color: #1a1714;
    margin-top: 10px;
}

.feed-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feed-filter-buttons button {
    padding: 10px 20px;
    border-radius: var(--ww-radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-family: var(--ww-font-ui);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b6359;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feed-filter-buttons button.active,
.feed-filter-buttons button:hover {
    background: var(--ww-red);
    color: #fff;
    border-color: var(--ww-red);
}

/* ---------- 17. GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.gallery-card {
    position: relative;
    border-radius: var(--ww-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-card--tall {
    grid-row: span 2;
}

.gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ww-ease), filter 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.gallery-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--ww-ease);
}

.gallery-card:hover .gallery-card__content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card__content span {
    font-family: var(--ww-font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ww-gold);
}

.gallery-card__content h3 {
    font-family: var(--ww-font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin: 4px 0;
}

.gallery-card__content p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ---------- 18. SOCIAL PROOF ---------- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 48px;
}

.proof-card {
    padding: 32px 24px;
    border-radius: var(--ww-radius);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.35s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.proof-card i {
    font-size: 2rem;
    color: var(--ww-red);
    margin-bottom: 14px;
    display: block;
}

.proof-card h3 {
    font-family: var(--ww-font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1714;
    margin: 0 0 8px;
}

.proof-card p {
    font-size: 0.85rem;
    color: #6b6359;
    margin: 0 0 12px;
    line-height: 1.6;
}

.proof-card a {
    font-family: var(--ww-font-ui);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ww-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.proof-card a:hover { color: var(--ww-red-dark); }

/* Video cards */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.video-card {
    border-radius: var(--ww-radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.section-dark .video-card {
    background: var(--ww-panel);
    border: 1px solid var(--ww-border);
}

.section-cream .video-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card__content {
    padding: 20px 22px;
}

.video-card__content h3 {
    font-family: var(--ww-font-heading);
    font-size: 1.15rem;
    margin: 6px 0;
}

.section-dark .video-card__content h3 { color: var(--ww-text); }
.section-cream .video-card__content h3 { color: #1a1714; }

.video-card__content p {
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

.section-dark .video-card__content p { color: var(--ww-muted); }
.section-cream .video-card__content p { color: #6b6359; }

/* ---------- 19. CONTACT ---------- */
.contact-section .contact-panel {
    background: var(--ww-panel);
    border-radius: var(--ww-radius);
    padding: 32px 28px;
    border: 1px solid var(--ww-border);
    height: 100%;
}

.contact-panel__item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-panel__item:last-child { border-bottom: none; }

.contact-panel__item i {
    font-size: 1.3rem;
    color: var(--ww-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-panel__item h3 {
    font-family: var(--ww-font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ww-gold);
    margin: 0 0 4px;
}

.contact-panel__item p {
    color: var(--ww-muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

.contact-panel__item a {
    color: var(--ww-text);
    text-decoration: none;
}

.contact-panel__item a:hover { color: var(--ww-gold); }

/* Contact form */
.contact-card {
    background: #fff;
    border-radius: var(--ww-radius);
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-card .form-label {
    font-family: var(--ww-font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3a3530;
    margin-bottom: 6px;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: var(--ww-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px 16px;
    font-family: var(--ww-font-body);
    font-size: 0.95rem;
    color: #1a1714;
    background: #faf8f5;
    transition: all 0.3s ease;
    min-height: 48px;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: var(--ww-red);
    box-shadow: 0 0 0 3px rgba(212, 18, 22, 0.1);
    background: #fff;
    outline: none;
}

.contact-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 0.88rem;
    color: #6b6359;
    margin: 0;
}

.form-note a { color: var(--ww-red); font-weight: 600; }

.bot-trap { position: absolute; left: -9999px; opacity: 0; }

.loading, .error-message, .sent-message { display: none; }
.loading { color: var(--ww-muted); }
.error-message { color: var(--ww-red); font-weight: 600; }
.sent-message { color: #2e7d32; font-weight: 600; }

/* Map */
.map-card {
    border-radius: var(--ww-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    height: 100%;
    min-height: 300px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    filter: saturate(0.9) contrast(1.1);
}

/* Fast contact */
.fast-contact-card {
    padding: 36px 28px;
    border-radius: var(--ww-radius);
    background: var(--ww-panel);
    border: 1px solid var(--ww-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fast-contact-card h2 {
    font-size: 1.5rem;
    color: var(--ww-text);
    margin: 0;
}

.fast-contact-card p {
    color: var(--ww-muted);
    font-size: 0.92rem;
    margin: 0;
    flex: 1;
}

/* ---------- 20. FINAL CTA ---------- */
.final-cta-section {
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--ww-red), var(--ww-gold), var(--ww-red)) 1;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--ww-text);
    margin: 12px 0 10px;
}

.final-cta p {
    color: var(--ww-muted);
    font-size: 0.95rem;
    margin: 0;
    max-width: 55ch;
}

.final-cta__actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ---------- 21. PAGE HERO (shop-updates) ---------- */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(180deg, var(--ww-black), #0a0b0d);
}

.page-hero--updates::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, var(--ww-red-glow), transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--ww-text);
    margin: 14px 0;
}

.page-hero p {
    color: var(--ww-muted);
    font-size: 1.02rem;
}

.hero-panel {
    padding: 32px 28px;
    border-radius: var(--ww-radius);
    background: var(--ww-panel);
    border: 1px solid var(--ww-border);
}

.hero-panel h2 {
    font-size: 1.4rem;
    color: var(--ww-text);
    margin: 12px 0;
}

.hero-panel p {
    color: var(--ww-muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

/* ---------- 22. FOOTER ---------- */
#footer {
    background: #040404;
    border-top: 1px solid var(--ww-border);
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ww-red), var(--ww-gold), var(--ww-red), transparent);
}

.footer-top {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .footer-logo img {
    max-height: 50px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.footer-brand h3 {
    font-family: var(--ww-font-heading);
    font-size: 1.3rem;
    color: var(--ww-text);
    margin: 0 0 8px;
}

.footer-brand p {
    color: var(--ww-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 0 16px;
}

.footer-brand .social-links {
    display: flex;
    gap: 10px;
}

.footer-brand .social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ww-muted);
    font-size: 17px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-brand .social-links a.facebook:hover { background: #1877f2; color: #fff; }
.footer-brand .social-links a.instagram:hover { background: #e4405f; color: #fff; }
.footer-brand .social-links a.youtube:hover { background: #ff0000; color: #fff; }

.footer-column h4 {
    font-family: var(--ww-font-ui);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ww-gold);
    margin: 0 0 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a,
.footer-column p {
    color: var(--ww-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.footer-column .btn-ww { margin-top: 12px; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright {
    color: var(--ww-muted);
    font-size: 0.82rem;
    text-align: center;
}

.copyright strong { color: var(--ww-text); }

/* ---------- 23. BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ww-red);
    color: #fff;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(212, 18, 22, 0.3);
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--ww-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- 24. KEYFRAMES ---------- */
@keyframes heroFlarePulse {
    0%, 100% { opacity: 0.28; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

@keyframes heroKenBurns {
    0% { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1.14) translate(-1%, -1%); }
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- 25. RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1199px) {
    .trust-marquee__grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta { flex-direction: column; text-align: center; }
    .final-cta__actions { justify-content: center; }
    .funding-card { flex-direction: column; text-align: center; }
    .funding-card::before { width: 100%; height: 4px; top: 0; left: 0; bottom: auto; }
    .funding-card__actions { flex-direction: row; justify-content: center; }
}

/* Mobile landscape */
@media (max-width: 991px) {
    .section-shell { padding: 72px 0; }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-home--grand { min-height: auto; padding: 130px 0 100px; }
    .hero-iron__media-stage { width: min(240px, 50vw); }
    .gallery-card--tall { grid-row: span 1; }
}

/* Mobile */
@media (max-width: 767px) {
    body { padding-bottom: 60px; }

    .section-shell { padding: 56px 0; }
    .section-heading { margin-bottom: 36px; }
    .section-heading h2, .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    #header { padding: 10px 0; }
    #header .logo img { max-height: 42px; }

    .hero-home--grand { padding: 120px 0 80px; }
    .hero-iron__media-stage { width: min(200px, 45vw); }
    .hero-iron__contact-stack { flex-direction: column; align-items: center; }
    .hero-iron__contact-stack a { width: 100%; max-width: 320px; justify-content: center; }
    .hero-iron__cta { flex-direction: column; align-items: center; }
    .hero-iron__cta .btn-ww { width: 100%; max-width: 320px; }
    .hero-iron__signalbar { gap: 6px; }
    .hero-tagline { font-size: clamp(1.3rem, 6vw, 1.8rem); }

    .trust-marquee__grid { grid-template-columns: 1fr; }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .vehicle-card { padding: 22px 16px; }
    .vehicle-card i { font-size: 1.5rem; margin-bottom: 10px; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 22px; }

    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .proof-card { padding: 24px 18px; }

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

    .contact-card { padding: 24px 20px; }
    .contact-panel { margin-bottom: 20px; }

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

    .final-cta__actions { flex-direction: column; width: 100%; }
    .final-cta__actions .btn-ww { width: 100%; }

    .funding-card { padding: 32px 24px; }
    .funding-card__actions { width: 100%; }
    .funding-card__actions .btn-ww { width: 100%; }

    .page-hero { padding: 120px 0 60px; }

    .shop-updates-grid { grid-template-columns: 1fr; }
    .feed-toolbar { flex-direction: column; align-items: flex-start; }

    .back-to-top { bottom: 72px; right: 12px; width: 40px; height: 40px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .vehicle-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .callout-grid { grid-template-columns: 1fr; }
    .hero-iron__signalbar { flex-direction: column; }
}

/* Focus states for accessibility */
:focus-visible {
    outline: 2px solid var(--ww-gold);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ww-gold);
    outline-offset: 2px;
}

/* Print */
@media print {
    .mobile-cta-bar,
    .back-to-top,
    #header,
    .hero-grand__fx,
    .hero-grand__video-shell { display: none !important; }

    body { background: #fff; color: #000; }
    .section-dark { background: #f5f5f5; }
    .section-dark, .section-dark * { color: #000 !important; }
}
