/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BANTENGMAS 4WD STORE - Custom Styles
   Cinematic scrollytelling landing page
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* Urban Steel — grey-forward + dark/grey section rhythm */
:root {
  --bm-bg-page: #1B1E22;
  --bm-bg-section: #22262B;
  --bm-bg-deep: #1A1C1F;
  --bm-bg-card: #2A2E34;
  --bm-bg-input: #32363D;
  --bm-border: #3E444C;
  --bm-text: #F0F1F3;
  --bm-text-muted: #9AA1AA;
  --bm-accent: #C4A35A;
  --bm-accent-soft: #D4B87A;
  --bm-accent-steel: #8B939E;
  /* Alternating bands (soft contrast, not harsh black/white) */
  --bm-tone-dark: #171A1E;
  --bm-tone-grey: #2C3138;
  --bm-tone-mid: #1F242A;
  --bs-bg-deep: #171A1E;
  --bs-bg-panel: #2C3138;
  --bs-amber: #C4A35A;
}

/* ── Section rhythm: solid dark ↔ grey (no blend gradients) ── */
.tone-dark {
  background-color: var(--bm-tone-dark);
}
.tone-grey {
  background-color: var(--bm-tone-grey);
}
/* Hero: keep canvas cinematic, no solid fill forced on top */
.hero-section.tone-dark {
  background-color: transparent;
}
/* Photo sections: content above photo layer */
.section-locations,
.section-booking {
  position: relative;
}
.section-locations .container-custom,
.section-booking .container-custom {
  position: relative;
  z-index: 2;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bm-bg-page, #1B1E22);
    color: var(--bm-text, #F0F1F3);
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1B1E22;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loading-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(154, 161, 170, 0.9);
    margin: 0 0 1.25rem;
}

.loading-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(196, 163, 90, 0.25));
}

.loading-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(240, 241, 243, 0.55);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
}

.loading-reel {
    margin-top: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: rgba(196, 163, 90, 0.55);
}

.loading-bar-container {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    background: #C4A35A;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 12px rgba(196, 163, 90, 0.45);
}

.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.loading-percent {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #C4A35A;
    margin-top: 0.75rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(42, 46, 52, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link:hover::after {
    width: 100%;
}

/* Primary action only — amber reserved for CTA */
.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1B1E22;
    background: #C4A35A;
    padding: 0.55rem 1.15rem;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(196, 163, 90, 0.25);
}

.nav-cta:hover {
    background: #D4B87A;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196, 163, 90, 0.35);
}

.mobile-nav-cta {
    color: #1B1E22 !important;
    background: #C4A35A;
    text-align: center;
    border-radius: 4px;
    border-bottom: none !important;
    margin-top: 0.5rem;
    padding: 0.85rem 1rem !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mobile-nav-cta:hover {
    color: #1B1E22 !important;
    background: #D4B87A;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(34, 38, 43, 0.96);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #C4A35A;
}

/* Hero Section — Showroom Steel: shorter 2-beat hook (300vh) */
.hero-section {
    position: relative;
    width: 100%;
    height: 300vh;
}

.canvas-wrapper {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.hero-text-1 {
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    width: 90%;
    opacity: 1;
}

/* Beat 2: only CTA, bottom-safe zone (no mid-frame copy over canvas text) */
.hero-text-2 {
    top: auto;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 420px;
    width: 90%;
    opacity: 0;
    pointer-events: auto;
}

.hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.hero-subheadline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-description {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0 auto 1.5rem;
    max-width: 36ch;
}

.hero-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #F0F1F3;
    margin-bottom: 0.5rem;
}

.hero-location {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.75rem;
}

.hero-cta {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1B1E22;
    background: #C4A35A;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 163, 90, 0.35);
    pointer-events: auto;
}

.hero-cta:hover {
    background: #D4B87A;
    box-shadow: 0 6px 30px rgba(196, 163, 90, 0.5);
    transform: translateY(-2px);
}

/* Container */
.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Spacing — tighter Showroom Steel rhythm */
.section-services,
.section-about,
.section-gallery,
.section-cta {
    padding: 5.5rem 0;
}

/* Rhythm fills (override flat mono if any) */
.section-services.tone-grey,
.section-about.tone-dark,
.section-gallery.tone-dark,
.section-cta.tone-dark,
.ba-section.tone-grey,
.build-selector-section.tone-grey,
.marquee-stroke-section.tone-dark,
.footer.tone-dark {
    /* background-color set by .tone-* */
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(154, 161, 170, 0.95);
    margin: 0 0 0.65rem;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.85rem;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(168, 173, 181, 1);
    max-width: 640px;
    margin: 0 auto;
}

/* Services Bento — 4-card Showroom Steel */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1rem;
}

.svc-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bm-bg-card, #2A2E34);
    background-size: cover;
    background-position: center;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    /* Visible by default — scene fade must not leave cards stuck at 0 */
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.svc-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional entrance only when JS marks them (never hide permanently) */
.svc-card.svc-card--anim {
    opacity: 0;
    transform: translateY(18px);
}
.svc-card.svc-card--anim.is-in,
.svc-card.svc-card--anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.svc-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.svc-card--lg {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 480px;
}

.svc-card--wide {
    grid-column: span 2;
    min-height: 240px;
}

.svc-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
    width: 100%;
    background: linear-gradient(transparent, rgba(17, 18, 20, 0.88) 40%);
}

.svc-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(154, 161, 170, 0.9);
    margin-bottom: 0.4rem;
}

.svc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #F0F1F3;
    margin: 0 0 0.45rem;
    line-height: 1.15;
}

.svc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: rgba(240, 241, 243, 0.72);
    line-height: 1.5;
    margin: 0;
    max-width: 36ch;
}

.svc-link {
    display: inline-block;
    margin-top: 0.85rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C4A35A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.svc-link:hover {
    color: #D4B87A;
}

@media (max-width: 960px) {
    .services-bento {
        grid-template-columns: 1fr 1fr;
    }
    .svc-card--lg {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }
    .svc-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .services-bento {
        grid-template-columns: 1fr;
    }
    .svc-card,
    .svc-card--lg,
    .svc-card--wide {
        grid-column: span 1;
        min-height: 220px;
    }
}

/* Legacy services grid (kept for safety) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #C4A35A;
    padding: 2.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #C4A35A;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.service-icon {
    color: #C4A35A;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.service-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(168, 173, 181, 1);
    line-height: 1.6;
}

/* About Section — tone class owns solid fill */
.section-about {
    background: transparent;
}
.section-about.tone-dark {
    background-color: var(--bm-tone-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 5rem;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #C4A35A;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(168, 173, 181, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.about-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #C4A35A;
}

/* Gallery Section */
.section-gallery {
    background: var(--bm-tone-dark, #171A1E);
    padding: 6rem 0;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.95);
}

.marquee-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.marquee-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
}

.marquee-container::-webkit-scrollbar {
    display: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(27, 30, 34, 0.7);
    border: 1px solid #C4A35A;
    color: #C4A35A;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: #C4A35A;
    color: #1B1E22;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.gallery-item {
    flex-shrink: 0;
    width: 500px;
    height: 500px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 1;
}

.gallery-item:hover {
    width: 700px;
    transform: scale(1.05);
    z-index: 10;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(192, 57, 43, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-placeholder span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #C4A35A;
}

.gallery-placeholder:hover {
    border-color: #C4A35A;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
}

/* CTA Section — dark solid + optional photo (flat overlay, no multi-stop gradient) */
.section-cta {
    background-color: var(--bm-tone-dark);
    background-image:
        linear-gradient(rgba(23, 26, 30, 0.82), rgba(23, 26, 30, 0.82)),
        url('../img/bg-poster-bantengmas.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.section-services.tone-grey {
    background-color: var(--bm-tone-grey);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.cta-subheadline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-whatsapp,
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-directions {
    background: transparent;
    color: #C4A35A;
    border: 2px solid #C4A35A;
}

.btn-directions:hover {
    background: #C4A35A;
    color: #1B1E22;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.cta-address {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(168, 173, 181, 1);
    line-height: 1.8;
}

.cta-address p {
    margin: 0.25rem 0;
}

/* Footer */
.footer {
    background: var(--bm-tone-dark, #171A1E);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(168, 173, 181, 1);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(168, 173, 181, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #C4A35A;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(154, 161, 170, 1);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #C4A35A;
    color: #1B1E22;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #D4B87A;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 280vh;
    }

    .hero-text-1 {
        width: 92%;
        top: 40%;
    }
    .hero-text-2 {
        width: 92%;
        top: auto;
        bottom: 14%;
        transform: translateX(-50%);
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 300px;
        height: 225px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .scroll-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .container-custom {
        padding: 0 1rem;
    }
    
    .section-services,
    .section-about,
    .section-gallery,
    .section-cta {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}
/* build-selector.css */
:root {
  --bs-bg-deep:     #1A1C1F;
  --bs-bg-panel:    #1B1E22;
  --bs-bg-active:   #1a1100;
  --bs-amber:       #C4A35A;
  --bs-amber-dim:   rgba(212, 175, 55, 0.3);
  --bs-amber-glow:  rgba(212, 175, 55, 0.15);
  --bs-white-90:    rgba(255, 255, 255, 0.92);
  --bs-white-60:    rgba(255, 255, 255, 0.60);
  --bs-white-30:    rgba(255, 255, 255, 0.30);
}

.bs-body { 
  background: var(--bs-bg-deep); 
  color: var(--bs-white-90); 
  font-family: 'DM Sans', sans-serif; 
  margin: 0; 
}

.build-selector-section {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bm-tone-grey, #2C3138);
  padding: 4rem 2rem;
  box-sizing: border-box;
}

/* Header */
.bs-header { margin-bottom: 3rem; max-width: 1400px; margin-left: auto; margin-right: auto; }
.bs-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.bs-label, .bs-count {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--bs-amber);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.bs-count { color: var(--bs-white-60); }
.bs-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--bs-white-90);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.02em;
}
.bs-header-divider { width: 100%; height: 1px; background: var(--bs-amber-dim); }

/* Layout */
.bs-container {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar */
.bs-sidebar {
  width: 35%;
  background: var(--bs-bg-panel);
  border-left: 2px solid var(--bs-amber-dim);
  display: flex;
  flex-direction: column;
}
.bs-sidebar-top { padding: 1.5rem; }
.bs-sidebar-label {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--bs-amber);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.bs-sidebar-divider { height: 1px; background: var(--bs-amber-dim); margin: 0.75rem 0; width: 100%; }
.bs-sidebar-subtitle { font-size: 0.85rem; color: var(--bs-white-30); }

.bs-button-list {
  flex: 1;
  overflow-y: auto;
  max-height: 70vh;
}
.bs-button-list::-webkit-scrollbar { width: 2px; }
.bs-button-list::-webkit-scrollbar-track { background: var(--bs-bg-panel); }
.bs-button-list::-webkit-scrollbar-thumb { background: var(--bs-amber); }

.bs-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  opacity: 0; /* for initial stagger animation */
  transform: translateX(-20px);
}
.bs-btn.show {
  opacity: 1;
  transform: translateX(0);
}
.bs-btn:hover { 
  background: rgba(255,255,255,0.02); 
  transform: translateX(5px); 
  box-shadow: inset 50px 0 50px -50px var(--bs-amber-glow); 
}
.bs-btn.active {
  background: var(--bs-bg-active);
  border-left-color: var(--bs-amber);
  transform: translateX(5px);
}

.bs-btn-icon { width: 24px; height: 24px; color: var(--bs-white-60); margin-right: 1.5rem; transition: color 0.3s ease; flex-shrink: 0; }
.bs-btn.active .bs-btn-icon { color: var(--bs-amber); }

.bs-btn-text { flex: 1; }
.bs-btn-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bs-white-90);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.bs-btn-tagline {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--bs-amber-dim);
  transition: color 0.3s ease;
}
.bs-btn.active .bs-btn-tagline { color: var(--bs-amber); opacity: 0.8; }
.bs-btn.active .bs-btn-name { color: #fff; }

.bs-btn-arrow { opacity: 0; transform: translateX(-10px); color: var(--bs-amber); transition: all 0.3s ease; }
.bs-btn.active .bs-btn-arrow { opacity: 1; transform: translateX(0); }

/* Display */
.bs-display {
  width: 65%;
  background: var(--bs-bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-3d-scene {
  width: 100%;
  max-width: min(100%, 55vh);
  margin: 0 auto;
  perspective: 1200px; /* 3D depth */
}

.bs-card {
  width: 100%;
  aspect-ratio: 2 / 3;
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--bs-bg-panel);
}

.bs-card.active-glow {
  border-color: rgba(212,175,55,0.8);
  box-shadow: 0 0 40px var(--bs-amber-glow);
}

/* Edge glow during rotation */
.bs-card-glow {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-right: 2px solid var(--bs-amber);
  opacity: 0;
  z-index: 10;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.bs-card.spinning .bs-card-glow { opacity: 1; }

.bs-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder */
.bs-card-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bs-bg-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.bs-card-placeholder.hidden { display: none; }
.bs-placeholder-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; color: var(--bs-amber); font-weight: 800; letter-spacing: 0.1em; opacity: 0.5; }
.bs-placeholder-text { font-size: 0.9rem; color: var(--bs-white-60); margin-top: 1rem; }

/* Info Strip */
.bs-info-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(27,30,34,0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 15;
}

.bs-info-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bs-amber);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.bs-info-name.fade-out { transform: translateY(20px); opacity: 0; }

.bs-info-tagline {
  font-size: 1rem;
  color: var(--bs-white-60);
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}
.bs-info-tagline.fade-out { opacity: 0; transition: opacity 0.2s ease; }

.bs-watermark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--bs-amber);
  opacity: 0.2;
  letter-spacing: 0.1em;
}

/* Footer CTA */
.bs-footer {
  margin-top: 4rem;
  text-align: center;
}
.bs-footer-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--bs-white-90);
  margin-bottom: 1.5rem;
}
.bs-btn-primary {
  background: var(--bs-amber);
  color: var(--bs-bg-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 1rem 3rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.bs-btn-primary:hover {
  background: #D4B87A;
  box-shadow: 0 0 20px var(--bs-amber-glow);
  transform: translateY(-2px);
}
.bs-footer-subtext {
  font-size: 0.85rem;
  color: var(--bs-white-60);
}

/* Responsive */
@media (max-width: 1024px) {
  .bs-sidebar { width: 40%; }
  .bs-display { width: 60%; }
  .bs-btn-tagline { display: none; }
}

@media (max-width: 768px) {
  .bs-container { flex-direction: column-reverse; }
  .bs-sidebar { width: 100%; border-left: none; border-top: 2px solid var(--bs-amber-dim); }
  .bs-display { width: 100%; padding: 2rem 0; }
  
  .bs-button-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 1rem;
  }
  .bs-btn {
    min-width: 200px;
    height: auto;
    padding: 1rem;
    border-left: none;
    border-bottom: 3px solid transparent;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .bs-btn.active {
    border-left-color: transparent;
    border-bottom-color: var(--bs-amber);
    transform: translateY(-5px);
  }
  .bs-btn:hover { transform: translateY(-5px); }
  .bs-header-top { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .bs-btn-arrow { display: none; }
}


/* Custom Cursor */
body { cursor: none; }
a, button, .bs-btn, .nav-link { cursor: none !important; }
#custom-cursor, #custom-cursor-follower { pointer-events: none; position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 10000; transition: width 0.3s ease, height 0.3s ease, background 0.3s ease; }
#custom-cursor { width: 8px; height: 8px; background: #C4A35A; mix-blend-mode: difference; }
#custom-cursor-follower { width: 40px; height: 40px; border: 1px solid rgba(212, 175, 55, 0.5); transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease; }
#custom-cursor.hover { transform: translate(-50%, -50%) scale(1.5); background: white; }
#custom-cursor-follower.hover { width: 60px; height: 60px; border-color: transparent; background: rgba(212, 175, 55, 0.2); }
@media (max-width: 1024px) { body { cursor: auto; } a, button, .bs-btn, .nav-link { cursor: pointer !important; } #custom-cursor, #custom-cursor-follower { display: none !important; } }


/* Infinite Stroke Marquee */
.marquee-stroke-section { width: 100%; overflow: hidden; background: var(--bm-tone-dark, #171A1E); padding: 2rem 0; display: flex; align-items: center; border-bottom: 1px solid rgba(196, 163, 90, 0.12); }
.marquee-stroke-content { display: flex; width: max-content; animation: marquee-stroke 20s linear infinite; will-change: transform; }
.marquee-stroke-content span { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 8rem; line-height: 1; letter-spacing: 0.05em; color: transparent; -webkit-text-stroke: 1px rgba(212, 175, 55, 0.5); padding-right: 2rem; white-space: nowrap; }
@keyframes marquee-stroke { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }
@media(max-width: 768px) { .marquee-stroke-content span { font-size: 4rem; } }


/* Text Reveal */
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-char { display: inline-block; transform: translateY(100%); opacity: 0; transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.6s ease; }
.reveal-text.is-revealed .reveal-char { transform: translateY(0); opacity: 1; }
/* -------------------------------------
   BEFORE/AFTER SLIDER
   ------------------------------------- */
.ba-section {
    padding: 6rem 2rem;
    background: var(--bm-tone-grey, #2C3138);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ba-header {
    text-align: center;
    margin-bottom: 3rem;
}
.ba-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--bs-white-90, #fff);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.ba-subtitle {
    font-family: 'DM Sans', sans-serif;
    color: var(--bs-amber, #C4A35A);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #050505;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    user-select: none;
}
.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.ba-after {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--bs-amber, #C4A35A);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--bs-amber, #C4A35A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1C1F;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
.ba-label {
    position: absolute;
    bottom: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    background: rgba(26,28,31,0.7);
    padding: 0.2rem 1rem;
    border-radius: 2px;
    z-index: 4;
}
.ba-label-before { right: 20px; }
.ba-label-after { left: 20px; }
.ba-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1000px;
    width: 100%;
}
.ba-nav-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--bs-white-60, rgba(255,255,255,0.6));
    padding: 0.5rem 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.ba-nav-btn:hover {
    color: var(--bs-amber, #C4A35A);
    border-color: var(--bs-amber, #C4A35A);
    background: rgba(212, 175, 55, 0.05);
}
.ba-nav-btn.active {
    color: #1A1C1F;
    background: var(--bs-amber, #C4A35A);
    border-color: var(--bs-amber, #C4A35A);
}
.ba-vehicle-name {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--bs-amber, #C4A35A);
    z-index: 5;
    background: rgba(26,28,31,0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.ba-img {
    transition: opacity 0.5s ease;
}
.ba-fade-out {
    opacity: 0;
}

.ba-beast-mode { color: #ff3333; background: rgba(20,0,0,0.8); border: 1px solid #ff3333; box-shadow: 0 0 15px rgba(255, 51, 51, 0.4); text-shadow: 0 0 5px rgba(255, 51, 51, 0.8); letter-spacing: 0.15em; }
/* -------------------------------------
   AUDIO MODAL & TOGGLE
   ------------------------------------- */
.audio-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 28, 31, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.audio-modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}
.audio-modal-content {
    background: #050505;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}
.audio-modal-overlay.show .audio-modal-content {
    transform: translateY(0);
}
.audio-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bs-amber, #C4A35A);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.audio-text {
    font-family: 'DM Sans', sans-serif;
    color: var(--bs-white-60, rgba(255,255,255,0.6));
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.audio-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.audio-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}
.primary-audio-btn {
    color: #050505;
    background: var(--bs-amber, #C4A35A);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.primary-audio-btn:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}
.secondary-audio-btn {
    color: var(--bs-white-60, rgba(255,255,255,0.6));
    border: 1px solid rgba(255,255,255,0.2);
}
.secondary-audio-btn:hover {
    color: #fff;
    border-color: #fff;
}
.audio-toggle-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 28, 31, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--bs-amber, #C4A35A);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.audio-toggle-btn:hover {
    transform: scale(1.1);
    border-color: var(--bs-amber, #C4A35A);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
@media (max-width: 768px) {
    .audio-modal-content { padding: 2rem; margin: 1rem; }
    .audio-buttons { flex-direction: column; }
    .audio-toggle-btn { bottom: 1rem; left: 1rem; width: 45px; height: 45px; }
}

/* -------------------------------------
   MOBILE RESPONSIVENESS FIXES
   ------------------------------------- */
@media (max-width: 992px) {
    /* Build Selector Mobile */
    .bs-container {
        flex-direction: column-reverse;
    }
    .bs-sidebar, .bs-display {
        width: 100%;
    }
    .bs-button-list {
        max-height: 40vh;
    }
    .bs-info-name {
        font-size: 2rem;
    }
    
    /* Before/After Mobile */
    .ba-vehicle-name {
        font-size: 1.2rem;
        padding: 0.3rem 1rem;
        top: 10px;
        left: 10px;
    }
    .ba-label {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }
    .ba-nav {
        gap: 0.5rem;
    }
    .ba-nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOCATIONS + BOOKING (cinematic panels)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-locations {
    position: relative;
    padding: 5.5rem 0 5rem;
    overflow: hidden;
    background-color: var(--bm-tone-dark);
}
/* Photo layer (separate from soft tone blends on ::before/::after of .tone-*) */
.section-locations .loc-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(23, 26, 30, 0.7), rgba(23, 26, 30, 0.7)),
        url("../img/bg-poster-bantengmas.jpg") center/cover no-repeat;
    pointer-events: none;
}
.section-locations .container-custom {
    position: relative;
    z-index: 2;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 900px) {
    .locations-grid { grid-template-columns: 1fr; }
}
.loc-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(42,46,52,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.loc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,134,10,0.45);
    box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,134,10,0.12);
}
.loc-card-media {
    position: relative;
    height: 160px;
    background-size: cover;
    background-position: center;
}
.loc-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(42,46,52,0.55), rgba(42,46,52,0.55));
}
.loc-card-media .loc-badge {
    position: absolute;
    left: 1rem;
    bottom: 0.85rem;
    z-index: 1;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.loc-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}
.loc-card-body .loc-address {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
    margin: 0;
}
.loc-meta {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.loc-meta strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.loc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1rem;
}
.loc-actions .btn-whatsapp,
.loc-actions .btn-directions {
    padding: 0.7rem 1rem !important;
    font-size: 0.82rem !important;
    border-radius: 999px;
}
.loc-ig {
    font-size: 0.82rem;
    opacity: 0.7;
    margin: 0.25rem 0 0;
}
.loc-ig a { color: #C4A35A; text-decoration: none; }
.loc-ig a:hover { text-decoration: underline; }

/* Booking cinematic */
.section-booking {
    position: relative;
    padding: 5.5rem 0 5.5rem;
    overflow: hidden;
    background-color: var(--bm-tone-grey);
}
/* Photo layer separate from tone blend (::before/::after on .tone-*) */
.section-booking .booking-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(44, 49, 56, 0.68), rgba(44, 49, 56, 0.68)),
        url("../img/bg-poster-build.jpg") right center / cover no-repeat;
}
.section-booking .container-custom {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}
.booking-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
    align-items: stretch;
}
.booking-layout--compact {
    max-width: 980px;
    margin: 0 auto;
}
@media (max-width: 960px) {
    .booking-layout { grid-template-columns: 1fr; }
    .booking-aside { min-height: 180px; }
}
.booking-aside {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(rgba(44,49,56,0.78), rgba(44,49,56,0.88)),
        url("../img/bg-poster-build.jpg") center/cover no-repeat;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.booking-aside-wa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}
.btn-wa-soft {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    background: rgba(18, 140, 126, 0.35);
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-wa-soft:hover {
    background: rgba(18, 140, 126, 0.55);
    border-color: rgba(37, 211, 102, 0.55);
}
.booking-aside-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C4A35A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.booking-aside h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 0 0.65rem;
    line-height: 1.15;
}
.booking-aside p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 28ch;
}
.booking-form-panel {
    background: rgba(42,46,52,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 1.35rem 1.35rem 1.2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.bf-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}
.bf-advanced {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.15rem 0.85rem;
    background: rgba(23,26,30,0.35);
}
.bf-advanced summary {
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(240,241,243,0.7);
    padding: 0.65rem 0;
    list-style: none;
    user-select: none;
}
.bf-advanced summary::-webkit-details-marker { display: none; }
.bf-advanced summary::before {
    content: '+ ';
    color: rgba(154,161,170,0.95);
    font-weight: 700;
}
.bf-advanced[open] summary::before { content: '− '; }
.bf-advanced[open] summary { border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0.75rem; }
.bf-advanced-body { padding-bottom: 0.75rem; }
.bf-file { padding: 0.5rem !important; }
.booking-status {
    font-size: 0.9rem;
    margin: 0;
    min-height: 1.2em;
}
.booking-quick-wa {
    font-size: 0.8rem;
    opacity: 0.55;
    margin: 0;
}
.booking-quick-wa a {
    color: #C4A35A;
    text-decoration: none;
}
.booking-quick-wa a:hover { text-decoration: underline; }
.booking-form-panel .bf-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.booking-form-panel .bf-input,
.booking-form-panel .bf-select,
.booking-form-panel .bf-textarea {
    width: 100%;
    padding: 0.72rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #32363D;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-form-panel .bf-input:focus,
.booking-form-panel .bf-select:focus,
.booking-form-panel .bf-textarea:focus {
    border-color: rgba(212,134,10,0.55);
    box-shadow: 0 0 0 3px rgba(212,134,10,0.15);
}
.booking-form-panel .bf-select option { background: #141414; color: #fff; }
.booking-form-panel .bf-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
@media (max-width: 640px) {
    .booking-form-panel .bf-grid-2 { grid-template-columns: 1fr; }
}
.booking-form-panel .bf-stack { display: grid; gap: 0.85rem; }
.booking-form-panel .bf-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1B1E22;
    background: #C4A35A;
    box-shadow: 0 8px 22px rgba(196, 163, 90, 0.28);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.booking-form-panel .bf-submit:hover {
    background: #D4B87A;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(196, 163, 90, 0.35);
}
.booking-form-panel .bf-submit:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}
.booking-status.ok { color: #7dffa2; }
.booking-status.err { color: #ff8a80; }
.section-locations .section-header,
.section-booking .section-header {
    margin-bottom: 2rem;
}

/* Gallery CTA strip */
.gallery-cta-wrap {
    display: flex;
    justify-content: center;
    padding: 0 1.5rem 3.5rem;
}
.btn-outline-steel {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(240, 241, 243, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.75rem 1.4rem;
    border-radius: 2px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn-outline-steel:hover {
    border-color: #C4A35A;
    color: #C4A35A;
    background: rgba(196, 163, 90, 0.08);
}

/* Footer extras */
.footer-contact-lines {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(240, 241, 243, 0.55);
}
.footer-contact-lines p { margin: 0.2rem 0; }
.footer-contact-lines strong { color: rgba(240, 241, 243, 0.75); font-weight: 600; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}
.footer-meta {
    font-size: 0.8rem;
    opacity: 0.55;
}
.footer-meta a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}
.footer-meta a:hover { color: rgba(255, 255, 255, 0.7); }

/* ═══════════════════════════════════════════════════
   SPLIT STUDIO (E) — dark hero + cream body + parallax
   ═══════════════════════════════════════════════════ */
body.theme-split-studio {
    --bm-bg-page: #F3EEE6;
    --bm-bg-section: #E8E2D8;
    --bm-bg-deep: #1A1C1F;
    --bm-bg-card: #FFFCFA;
    --bm-bg-input: #FFFCFA;
    --bm-border: #D4CDC2;
    --bm-text: #1A1C1F;
    --bm-text-muted: #5C636B;
    --bm-accent: #C45C26;
    --bm-accent-soft: #E07A45;
    --bm-accent-steel: #5C636B;
    --bm-tone-dark: #14161A;
    --bm-tone-grey: #E8E2D8;
    --bm-tone-mid: #F3EEE6;
    --bm-cream: #F3EEE6;
    --bm-stone: #E8E2D8;
    --bm-ink: #1A1C1F;
    --bs-amber: #C45C26;
    background: var(--bm-cream);
    color: var(--bm-ink);
}

body.theme-split-studio .tone-light {
    background-color: var(--bm-cream);
}
body.theme-split-studio .tone-cream {
    background-color: var(--bm-stone);
}
body.theme-split-studio .tone-dark {
    background-color: var(--bm-tone-dark);
}
body.theme-split-studio .hero-section.tone-dark {
    background-color: transparent;
}

/* Parallax layers */
.has-parallax {
    position: relative;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -18%;
    height: 136%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}
.parallax-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.parallax-veil--cream {
    background: rgba(243, 238, 230, 0.9);
}
.parallax-veil--cream-soft {
    background: rgba(243, 238, 230, 0.86);
}
.parallax-veil--stone {
    background: rgba(232, 226, 216, 0.9);
}
.parallax-veil--ink {
    background: rgba(20, 22, 26, 0.72);
}
.has-parallax > .container-custom,
.has-parallax > .ba-header,
.has-parallax > .ba-slider-container,
.has-parallax > .ba-nav {
    position: relative;
    z-index: 2;
}

/* Process + Fleet panels (horizontal scenes 05–06) */
.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.process-step {
    background: rgba(255, 252, 250, 0.88);
    border: 1px solid rgba(26, 28, 31, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1.1rem 1.35rem;
    box-shadow: 0 12px 32px rgba(26, 28, 31, 0.08);
}
.process-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--bm-accent, #C45C26);
    margin-bottom: 0.55rem;
}
.process-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--bm-ink, #1A1C1F);
    margin: 0 0 0.45rem;
}
.process-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--bm-text-muted, #5C636B);
    margin: 0;
}
.process-cta {
    margin-top: 1.75rem;
    text-align: center;
}
.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    max-width: 820px;
    margin: 0 auto 1.75rem;
}
.fleet-chip {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 252, 250, 0.9);
    border: 1px solid rgba(26, 28, 31, 0.12);
    color: var(--bm-ink, #1A1C1F);
    box-shadow: 0 8px 20px rgba(26, 28, 31, 0.06);
}
.fleet-chip--accent {
    background: var(--bm-accent, #C45C26);
    border-color: transparent;
    color: #fff;
}
.fleet-note {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--bm-text-muted, #5C636B);
}
.fleet-note p { margin: 0 0 0.75rem; }
.fleet-note strong { color: var(--bm-ink, #1A1C1F); }
/* Transformasi: dark cinematic — same palette family as Kunjungi kami */
.ba-section--vertical,
.ba-section--on-dark {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
    background-color: var(--bm-tone-dark, #14161A);
}
.ba-section--vertical .ba-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(20, 22, 26, 0.72), rgba(20, 22, 26, 0.78)),
        url("../img/bg-poster-transform.jpg") center/cover no-repeat;
}
.ba-section--vertical .ba-section-content {
    position: relative;
    z-index: 2;
}
body.theme-split-studio .ba-section--vertical .ba-title,
body.theme-split-studio .ba-section--on-dark .ba-title {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
body.theme-split-studio .ba-section--vertical .ba-subtitle,
body.theme-split-studio .ba-section--on-dark .ba-subtitle {
    color: rgba(224, 122, 69, 0.95);
}
body.theme-split-studio .ba-section--vertical .cine-title-rule {
    background: var(--bm-accent, #C45C26);
    box-shadow: 0 0 12px rgba(196, 92, 38, 0.35);
}
body.theme-split-studio .ba-section--vertical .ba-nav-btn {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(42, 46, 52, 0.55);
    backdrop-filter: blur(10px);
}
body.theme-split-studio .ba-section--vertical .ba-nav-btn:hover,
body.theme-split-studio .ba-section--vertical .ba-nav-btn.active {
    color: #fff;
    border-color: rgba(196, 92, 38, 0.55);
    background: rgba(196, 92, 38, 0.25);
}
body.theme-split-studio .ba-section--vertical .ba-vehicle-name {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
body.theme-split-studio .ba-section--vertical .cine-ba-frame {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 28px 80px rgba(0, 0, 0, 0.55);
}
@media (max-width: 960px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Scenes 03–06: BG diam + konten horizontal (pin + scrub) */
.scene-band-mid-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: var(--bm-cream, #F3EEE6);
}

/* Still background — never translates */
.scene-band-mid-wrap > .h-bg-still {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.scene-band-mid-wrap .h-bg-still-img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.scene-band-mid-wrap .h-bg-still-veil {
    position: absolute;
    inset: 0;
    background: rgba(243, 238, 230, 0.55);
}

/* Viewport for horizontal panels */
.scene-band-mid-wrap .h-content-viewport {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.scene-band-mid-wrap .h-content-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    width: max-content;
    will-change: transform;
}
.scene-band-mid-wrap .h-panel {
    position: relative;
    flex: 0 0 100vw;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    overflow: hidden; /* no vertical scrollbar in panel */
    background: transparent !important;
    background-color: transparent !important;
    padding: 0;
    box-sizing: border-box;
}
.scene-band-mid-wrap .h-panel-inner {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.25rem 1.25rem 2.75rem;
    box-sizing: border-box;
}
.scene-band-mid-wrap .h-panel-inner--fit {
    justify-content: center;
    gap: 0.85rem;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}
.scene-band-mid-wrap .h-panel .section-services,
.scene-band-mid-wrap .section-services,
.scene-band-mid-wrap .section-about,
.scene-band-mid-wrap .section-process,
.scene-band-mid-wrap .section-fleet {
    padding-top: 0;
    padding-bottom: 0;
}

/* ── Scene 03: equal 2×2 cards, fits one viewport ── */
.scene-band-mid-wrap .h-head-compact {
    margin-bottom: 0 !important;
    flex-shrink: 0;
}
.scene-band-mid-wrap .h-head-compact .section-title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    margin-bottom: 0.35rem;
}
.scene-band-mid-wrap .h-head-compact .section-subtitle {
    font-size: 0.95rem;
    max-width: 36rem;
}
.scene-band-mid-wrap .h-head-compact .cine-title-rule {
    margin: 0.55rem auto 0.55rem;
}
.scene-band-mid-wrap .h-head-compact .section-kicker {
    margin-bottom: 0.35rem;
}

/* Scene 03: bulletproof photo cards */
.scene-band-mid-wrap .services-bento--fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(160px, 1fr) minmax(160px, 1fr);
    gap: 0.75rem;
    flex: 1 1 auto;
    min-height: 320px;
    max-height: min(56vh, 460px);
    width: 100%;
}
.scene-band-mid-wrap .services-bento--fit .svc-card--photo {
    position: relative !important;
    min-height: 160px !important;
    height: 100% !important;
    border-radius: 14px;
    overflow: hidden;
    display: block !important; /* not flex — media absolute fills card */
    background: #1a1c1f !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    /* NEVER stay invisible */
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
.scene-band-mid-wrap .svc-card-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    background: #2a2e34;
}
.scene-band-mid-wrap .svc-card-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}
.scene-band-mid-wrap .svc-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(17, 18, 20, 0.1) 0%,
        rgba(17, 18, 20, 0.35) 50%,
        rgba(17, 18, 20, 0.88) 100%
    );
    pointer-events: none;
}
.scene-band-mid-wrap .services-bento--fit .svc-card-body {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2 !important;
    padding: 0.85rem 1rem 1rem;
    background: transparent !important;
    width: 100%;
    box-sizing: border-box;
}
.scene-band-mid-wrap .services-bento--fit .svc-num {
    font-size: 0.72rem;
    margin-bottom: 0.2rem;
    color: rgba(224, 122, 69, 0.95);
}
.scene-band-mid-wrap .services-bento--fit .svc-title {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    margin-bottom: 0.25rem;
    color: #F0F1F3;
}
.scene-band-mid-wrap .services-bento--fit .svc-desc {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: none;
    color: rgba(240, 241, 243, 0.8);
    margin: 0;
}
.scene-band-mid-wrap .services-bento--fit .svc-link {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #E07A45;
}
/* Kill decorative overlays that could mask photos */
.scene-band-mid-wrap .svc-card--photo::after,
.scene-band-mid-wrap .svc-card--photo::before {
    display: none !important;
    content: none !important;
}

/* ── Scene 04: side-by-side stats + copy, one screen ── */
.scene-band-mid-wrap .about-grid--fit {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 1.75rem 2rem;
    align-items: center;
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    max-height: min(62vh, 480px);
}
.scene-band-mid-wrap .about-stats--fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.scene-band-mid-wrap .about-stats--fit .stat-item {
    background: rgba(255, 252, 250, 0.88);
    border: 1px solid rgba(26, 28, 31, 0.1);
    border-radius: 12px;
    padding: 0.85rem 0.65rem;
    box-shadow: 0 8px 22px rgba(26, 28, 31, 0.06);
}
.scene-band-mid-wrap .about-stats--fit .stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.25rem;
}
.scene-band-mid-wrap .about-stats--fit .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
.scene-band-mid-wrap .about-content--fit .about-title {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}
.scene-band-mid-wrap .about-content--fit .about-text {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
}
.scene-band-mid-wrap .about-content--fit .cine-title-rule {
    margin: 0.4rem 0 0.65rem;
}
.scene-band-mid-wrap .about-features--fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-top: 0;
}
.scene-band-mid-wrap .about-features--fit .feature-item {
    font-size: 0.82rem;
    padding: 0.5rem 0.65rem;
}

/* Process / fleet also no scroll */
.scene-band-mid-wrap .process-steps {
    flex-shrink: 1;
    min-height: 0;
}
.scene-band-mid-wrap .section-header {
    margin-bottom: 1.25rem;
}

/* Progress dots */
.scene-band-mid-wrap .h-panel-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.55rem;
    pointer-events: none;
}
.scene-band-mid-wrap .h-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(26, 28, 31, 0.22);
    transition: width 0.25s ease, background 0.25s ease;
}
.scene-band-mid-wrap .h-dot.is-active {
    width: 22px;
    background: var(--bm-accent, #C45C26);
}

body.theme-split-studio .scene-band-mid {
    background-color: transparent;
}
body.theme-split-studio .scene-band-mid-wrap .section-services,
body.theme-split-studio .scene-band-mid-wrap .section-about,
body.theme-split-studio .scene-band-mid-wrap .ba-section {
    background: transparent !important;
    background-color: transparent !important;
}

/* Fallback: stack vertically if JS disabled / reduced motion class */
.scene-band-mid-wrap.is-stacked {
    height: auto;
    overflow: visible;
}
.scene-band-mid-wrap.is-stacked .h-content-viewport {
    overflow: visible;
    height: auto;
}
.scene-band-mid-wrap.is-stacked .h-content-track {
    display: block;
    width: 100%;
    transform: none !important;
}
.scene-band-mid-wrap.is-stacked .h-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: none;
    overflow: visible;
}
.scene-band-mid-wrap.is-stacked .h-panel-inner,
.scene-band-mid-wrap.is-stacked .h-panel-inner--fit {
    min-height: 0;
    height: auto;
    padding: 3.5rem 1.25rem;
    max-height: none;
}
.scene-band-mid-wrap.is-stacked .services-bento--fit {
    max-height: none;
    grid-auto-rows: minmax(140px, auto);
}
.scene-band-mid-wrap.is-stacked .about-grid--fit {
    max-height: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.scene-band-mid-wrap.is-stacked .h-panel-dots {
    display: none;
}
.scene-band-mid-wrap.is-stacked .h-bg-still {
    position: absolute;
    inset: 0;
    height: 100%;
}

@media (max-width: 900px) {
    .scene-band-mid-wrap .about-grid--fit {
        grid-template-columns: 1fr;
        max-height: none;
        gap: 1rem;
    }
    .scene-band-mid-wrap .services-bento--fit {
        max-height: min(48vh, 360px);
    }
}
@media (max-width: 768px) {
    .scene-band-mid-wrap .h-panel-inner,
    .scene-band-mid-wrap .h-panel-inner--fit {
        padding: 4rem 1rem 2.5rem;
        justify-content: flex-start;
    }
}

/* Light-section typography (transform/BA dark section excluded) */
body.theme-split-studio .section-services .section-title,
body.theme-split-studio .section-about .about-title,
body.theme-split-studio .section-process .section-title,
body.theme-split-studio .section-fleet .section-title,
body.theme-split-studio .section-booking .section-title {
    color: var(--bm-ink);
}
body.theme-split-studio .section-services .section-subtitle,
body.theme-split-studio .section-process .section-subtitle,
body.theme-split-studio .section-fleet .section-subtitle,
body.theme-split-studio .section-booking .section-subtitle,
body.theme-split-studio .about-text {
    color: var(--bm-text-muted);
}
body.theme-split-studio .section-kicker {
    color: rgba(92, 99, 107, 0.95);
}
body.theme-split-studio .section-header--on-dark .section-kicker,
body.theme-split-studio .section-header--on-dark .section-title,
body.theme-split-studio .section-header--on-dark .section-subtitle,
body.theme-split-studio .section-header--on-dark .gallery-title,
body.theme-split-studio .gallery-header.section-header--on-dark .section-kicker,
body.theme-split-studio .gallery-header.section-header--on-dark .gallery-title {
    color: rgba(255, 255, 255, 0.95);
}
body.theme-split-studio .section-header--on-dark .section-subtitle {
    color: rgba(230, 232, 236, 0.75);
}
body.theme-split-studio .section-header--on-dark .section-kicker,
body.theme-split-studio .gallery-header.section-header--on-dark .section-kicker {
    color: rgba(224, 122, 69, 0.9);
}

body.theme-split-studio .cine-title-rule {
    background: var(--bm-accent);
    box-shadow: 0 0 12px rgba(196, 92, 38, 0.28);
}

/* Navbar on cream page */
body.theme-split-studio .navbar {
    background: transparent;
}
body.theme-split-studio .navbar.scrolled {
    background: rgba(243, 238, 230, 0.9);
    border-bottom: 1px solid rgba(26, 28, 31, 0.08);
    box-shadow: 0 8px 28px rgba(26, 28, 31, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
body.theme-split-studio .navbar.scrolled .nav-link {
    color: rgba(26, 28, 31, 0.72);
}
body.theme-split-studio .navbar.scrolled .nav-link:hover {
    color: var(--bm-ink);
}
body.theme-split-studio .navbar.scrolled .mobile-menu-toggle span {
    background: rgba(26, 28, 31, 0.8);
}
body.theme-split-studio .nav-cta,
body.theme-split-studio .hero-cta,
body.theme-split-studio .booking-form-panel .bf-submit {
    background: var(--bm-accent);
    color: #fff;
    box-shadow: 0 8px 22px rgba(196, 92, 38, 0.28);
}
body.theme-split-studio .nav-cta:hover,
body.theme-split-studio .hero-cta:hover,
body.theme-split-studio .booking-form-panel .bf-submit:hover {
    background: var(--bm-accent-soft);
    color: #fff;
}
body.theme-split-studio .mobile-nav-cta {
    background: var(--bm-accent);
    color: #fff !important;
}
body.theme-split-studio .mobile-menu {
    background: rgba(243, 238, 230, 0.98);
    border-top-color: rgba(196, 92, 38, 0.25);
}
body.theme-split-studio .mobile-nav-link {
    color: rgba(26, 28, 31, 0.85);
    border-bottom-color: rgba(26, 28, 31, 0.08);
}

/* About light */
body.theme-split-studio .stat-number {
    color: var(--bm-accent);
    text-shadow: none;
}
body.theme-split-studio .stat-label {
    color: var(--bm-text-muted);
}
body.theme-split-studio .feature-item {
    color: var(--bm-ink);
    background: rgba(196, 92, 38, 0.08);
    border-left-color: var(--bm-accent);
}
body.theme-split-studio .section-about.tone-dark,
body.theme-split-studio .section-about.tone-cream {
    background-color: transparent;
}
body.theme-split-studio .section-services.tone-grey,
body.theme-split-studio .section-services.tone-light {
    background-color: transparent;
}

/* Service cards keep photo + dark text panel feel */
body.theme-split-studio .svc-link {
    color: #E07A45;
}
body.theme-split-studio .svc-card {
    border-color: rgba(26, 28, 31, 0.1);
    box-shadow: 0 16px 40px rgba(26, 28, 31, 0.12);
}

/* BA / Transform: keep dark on-dark styling (see .ba-section--on-dark above) */
body.theme-split-studio .ba-section:not(.ba-section--on-dark) {
    background: transparent;
}
body.theme-split-studio .ba-section--on-dark {
    background-color: var(--bm-tone-dark, #14161A);
}

/* Booking light panel */
body.theme-split-studio .section-booking {
    background-color: transparent;
}
body.theme-split-studio .section-booking .booking-bg-photo {
    display: none; /* replaced by parallax-bg */
}
body.theme-split-studio .section-locations .loc-bg-photo {
    display: none;
}
body.theme-split-studio .booking-form-panel {
    background: rgba(255, 252, 250, 0.94);
    border: 1px solid rgba(26, 28, 31, 0.1);
    box-shadow: 0 18px 48px rgba(26, 28, 31, 0.12);
    color: var(--bm-ink);
}
body.theme-split-studio .booking-form-panel .bf-label {
    color: rgba(26, 28, 31, 0.55);
}
body.theme-split-studio .booking-form-panel .bf-input,
body.theme-split-studio .booking-form-panel .bf-select,
body.theme-split-studio .booking-form-panel .bf-textarea {
    background: #FFFCFA;
    border-color: rgba(26, 28, 31, 0.14);
    color: var(--bm-ink);
}
body.theme-split-studio .booking-form-panel .bf-input:focus,
body.theme-split-studio .booking-form-panel .bf-select:focus,
body.theme-split-studio .booking-form-panel .bf-textarea:focus {
    border-color: rgba(196, 92, 38, 0.55);
    box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.12);
}
body.theme-split-studio .booking-form-panel .bf-select option {
    background: #FFFCFA;
    color: var(--bm-ink);
}
body.theme-split-studio .bf-advanced {
    background: rgba(26, 28, 31, 0.03);
    border-color: rgba(26, 28, 31, 0.1);
}
body.theme-split-studio .bf-advanced summary {
    color: rgba(26, 28, 31, 0.7);
}
body.theme-split-studio .booking-quick-wa {
    opacity: 0.75;
}
body.theme-split-studio .booking-quick-wa a {
    color: var(--bm-accent);
}
body.theme-split-studio .booking-aside {
    background:
        linear-gradient(rgba(20, 22, 26, 0.72), rgba(20, 22, 26, 0.82)),
        url("../img/bg-poster-build.jpg") center/cover no-repeat;
    color: #fff;
    border-color: rgba(26, 28, 31, 0.12);
}
body.theme-split-studio .booking-aside-kicker {
    color: #E07A45;
}
body.theme-split-studio .booking-status.ok { color: #1f7a45; }
body.theme-split-studio .booking-status.err { color: #c0392b; }

/* Locations dark cards on photo */
body.theme-split-studio .section-locations {
    background-color: transparent;
}
body.theme-split-studio .loc-card {
    background: rgba(255, 252, 250, 0.94);
    border-color: rgba(26, 28, 31, 0.1);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
body.theme-split-studio .loc-card:hover {
    border-color: rgba(196, 92, 38, 0.45);
}
body.theme-split-studio .loc-card-body .loc-address,
body.theme-split-studio .loc-meta {
    color: rgba(26, 28, 31, 0.78);
}
body.theme-split-studio .loc-meta strong {
    color: rgba(26, 28, 31, 0.92);
}
body.theme-split-studio .loc-ig a {
    color: var(--bm-accent);
}
body.theme-split-studio .loc-card-media::after {
    background: linear-gradient(rgba(20, 22, 26, 0.25), rgba(20, 22, 26, 0.55));
}
body.theme-split-studio .loc-actions .btn-directions {
    color: var(--bm-ink);
    border-color: rgba(26, 28, 31, 0.25);
    background: transparent;
}
body.theme-split-studio .loc-actions .btn-directions:hover {
    border-color: var(--bm-accent);
    color: var(--bm-accent);
}

/* Gallery stays dark */
body.theme-split-studio .section-gallery {
    background: var(--bm-tone-dark);
}
body.theme-split-studio .btn-outline-steel {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
}
body.theme-split-studio .btn-outline-steel:hover {
    border-color: var(--bm-accent-soft);
    color: var(--bm-accent-soft);
    background: rgba(196, 92, 38, 0.1);
}

/* Footer dark */
body.theme-split-studio .footer {
    background: var(--bm-tone-dark);
    color: rgba(240, 241, 243, 0.85);
    border-top-color: rgba(255, 255, 255, 0.06);
}
body.theme-split-studio .footer-text,
body.theme-split-studio .footer-column a,
body.theme-split-studio .footer-bottom p,
body.theme-split-studio .footer-contact-lines {
    color: rgba(168, 173, 181, 1);
}
body.theme-split-studio .footer-heading {
    color: rgba(255, 255, 255, 0.9);
}
body.theme-split-studio .footer-column a:hover {
    color: var(--bm-accent-soft);
}
body.theme-split-studio .footer::before {
    color: rgba(154, 161, 170, 0.4);
}

/* Loading + accent chrome */
body.theme-split-studio .loading-screen {
    background: #14161A;
}
body.theme-split-studio .loading-bar,
body.theme-split-studio .loading-percent,
body.theme-split-studio .loading-reel {
    color: var(--bm-accent-soft);
}
body.theme-split-studio .loading-bar {
    background: var(--bm-accent);
    box-shadow: 0 0 12px rgba(196, 92, 38, 0.4);
}
body.theme-split-studio .scroll-top-btn {
    background: var(--bm-accent);
}
body.theme-split-studio .scroll-top-btn:hover {
    background: var(--bm-accent-soft);
}
body.theme-split-studio #custom-cursor {
    background: var(--bm-accent);
}
body.theme-split-studio #custom-cursor-follower {
    border-color: rgba(196, 92, 38, 0.45);
}
body.theme-split-studio .cine-frame-tag {
    color: rgba(224, 122, 69, 0.85);
}

/* Vignette + grain thinner for split studio (hero still cinematic) */
body.theme-split-studio .cine-vignette {
    opacity: 0.45;
    background:
        radial-gradient(ellipse 80% 75% at 50% 40%, transparent 50%, rgba(0, 0, 0, 0.28) 100%);
}
body.theme-split-studio.cine-content .cine-vignette {
    opacity: 0.18;
}
body.theme-split-studio .cine-grain {
    opacity: 0.032;
    mix-blend-mode: multiply;
}
body.theme-split-studio .cine-scanlines {
    opacity: 0.018;
}
body.theme-split-studio.cine-ready .cine-letterbox-bar {
    height: clamp(10px, 2vh, 26px);
}

/* ═══════════════════════════════════════════════════
   CINEMATIC THEME — letterbox, grain, vignette, grade
   (solid section tones preserved; no soft blend bands)
   ═══════════════════════════════════════════════════ */

/* Fixed atmosphere layers */
.cine-letterbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
}
.cine-letterbox-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    background: #0a0b0c;
    transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}
.cine-letterbox-top { top: 0; }
.cine-letterbox-bottom { bottom: 0; }
body.theme-cinematic.cine-ready .cine-letterbox-bar {
    height: clamp(14px, 2.8vh, 36px);
}
body.theme-cinematic.cine-letterbox-hide .cine-letterbox-bar {
    height: 0;
}

.cine-vignette {
    position: fixed;
    inset: 0;
    z-index: 8990;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 70% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.42) 100%);
    opacity: 0.85;
}

/* Film grain — thin by default; Split Studio even lighter */
.cine-grain {
    position: fixed;
    inset: -20%;
    width: 140%;
    height: 140%;
    z-index: 8985;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    animation: cine-grain-shift 0.45s steps(2) infinite;
}
@keyframes cine-grain-shift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-1.5%, 1%); }
    50% { transform: translate(1%, -1.2%); }
    75% { transform: translate(-0.8%, -0.6%); }
    100% { transform: translate(0.5%, 0.8%); }
}

/* Very subtle scanlines */
.cine-scanlines {
    position: fixed;
    inset: 0;
    z-index: 8980;
    pointer-events: none;
    opacity: 0.035;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 2px,
        rgba(0, 0, 0, 0.45) 2px,
        rgba(0, 0, 0, 0.45) 3px
    );
}

/* Hero cinematic frame + color grade */
.cine-hero-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 0 120px rgba(0, 0, 0, 0.45);
}
.cine-hero-grade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% 40%, transparent 35%, rgba(10, 12, 14, 0.55) 100%),
        linear-gradient(180deg, rgba(23, 26, 30, 0.25) 0%, transparent 30%, transparent 60%, rgba(23, 26, 30, 0.65) 100%);
    mix-blend-mode: multiply;
    opacity: 0.9;
}
.hero-section .hero-text {
    z-index: 3;
}
.cine-frame-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(196, 163, 90, 0.75);
    margin: 0 0 0.85rem;
    text-transform: uppercase;
}
.hero-brand {
    text-shadow:
        0 2px 24px rgba(0, 0, 0, 0.75),
        0 0 60px rgba(196, 163, 90, 0.12);
}
.hero-headline {
    text-shadow:
        0 2px 28px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 0, 0, 0.4);
}

/* Section cinematic headers */
.cine-header {
    position: relative;
}
.cine-title-rule {
    width: 48px;
    height: 2px;
    margin: 0.9rem auto 1rem;
    background: #C4A35A;
    box-shadow: 0 0 12px rgba(196, 163, 90, 0.35);
}
.cine-title-rule--left {
    margin-left: 0;
    margin-right: auto;
}
.section-title,
.about-title,
.gallery-title,
.ba-title {
    letter-spacing: 0.06em;
}

/* Cards — film-still framing */
.svc-card,
.loc-card,
.booking-form-panel,
.booking-aside {
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.loc-card {
    position: relative;
    overflow: hidden;
}
.svc-card::after,
.loc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
    border-radius: inherit;
    z-index: 1;
}
.svc-card-body,
.loc-card-body {
    position: relative;
    z-index: 2;
}

/* Before/After as cinema frame */
.cine-ba-frame {
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 28px 80px rgba(0, 0, 0, 0.55);
}
.cine-ba-frame::before,
.cine-ba-frame::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 5;
    pointer-events: none;
    border-color: rgba(196, 163, 90, 0.55);
    border-style: solid;
}
.cine-ba-frame::before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}
.cine-ba-frame::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

/* Gallery film strip feel */
.section-gallery .gallery-item {
    position: relative;
}
.section-gallery .gallery-placeholder {
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    filter: saturate(0.92) contrast(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}
.section-gallery .gallery-item:hover .gallery-placeholder {
    filter: saturate(1.05) contrast(1.08);
    transform: scale(1.02);
}

/* Scroll-in cinematic reveal for major blocks */
.cine-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.cine-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   Scene fade-in: panels, cards, forms — all UI
   ═══════════════════════════════════════════ */
.scene-fade,
.scene-fade-item,
.scene-fade-panel {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--stagger-delay, var(--fade-delay, 0ms));
    will-change: opacity, transform;
}
.scene-fade.is-in,
.scene-fade-item.is-in,
.scene-fade-panel.is-in,
.scene-fade-panel.is-scene-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* When parent scene is revealed, all tagged children fade in (stagger via --stagger-delay) */
.scene-fade.is-in .scene-fade-item,
.scene-fade-stagger.is-in .scene-fade-item,
.scene-fade-root.is-in .scene-fade-item,
.h-panel.is-in .scene-fade-item,
.h-panel.is-scene-active .scene-fade-item,
.h-panel-inner.is-in .scene-fade-item,
#transform.is-in .scene-fade-item,
#gallery.is-in .scene-fade-item,
#locations.is-in .scene-fade-item,
#booking.is-in .scene-fade-item,
footer.is-in .scene-fade-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Scene 3 photo cards: always visible (fade system must never hide photos) */
.h-panel .svc-card--photo,
#scene-band-mid .svc-card--photo,
.h-panel .svc-card--photo.scene-fade-item,
#scene-band-mid .svc-card--photo.scene-fade-item {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Process / fleet / stats cards same language */
.h-panel .process-step,
.h-panel .fleet-chip,
.h-panel .stat-item,
.h-panel .feature-item {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--stagger-delay, 0ms);
}
.h-panel.is-in .process-step,
.h-panel.is-scene-active .process-step,
.h-panel.is-in .fleet-chip,
.h-panel.is-scene-active .fleet-chip,
.h-panel.is-in .stat-item,
.h-panel.is-scene-active .stat-item,
.h-panel.is-in .feature-item,
.h-panel.is-scene-active .feature-item,
.h-panel .process-step.is-in,
.h-panel .fleet-chip.is-in,
.h-panel .stat-item.is-in,
.h-panel .feature-item.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* Vertical scene UI blocks */
#transform .ba-slider-container.scene-fade-item,
#transform .ba-header.scene-fade-item,
#locations .loc-card.scene-fade-item,
#booking .booking-aside.scene-fade-item,
#booking .booking-form-panel.scene-fade-item,
#gallery .gallery-item.scene-fade-item {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
}
#transform.is-in .ba-slider-container.scene-fade-item,
#transform.is-in .ba-header.scene-fade-item,
#locations.is-in .loc-card.scene-fade-item,
#booking.is-in .booking-aside.scene-fade-item,
#booking.is-in .booking-form-panel.scene-fade-item,
#gallery.is-in .gallery-item.scene-fade-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .scene-fade,
    .scene-fade-item,
    .scene-fade-panel,
    .scene-fade-stagger > .scene-fade-item,
    .cine-reveal,
    .h-panel .svc-card,
    .h-panel .process-step,
    .h-panel .fleet-chip,
    .h-panel .stat-item,
    .h-panel .feature-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Navbar glass when scrolled — more filmic */
.navbar.scrolled {
    background: rgba(23, 26, 30, 0.82);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Audio modal — projector card */
.audio-modal-content {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.65);
    position: relative;
}
.audio-modal-content::before {
    content: 'AUDIO TRACK';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    color: rgba(154, 161, 170, 0.75);
}

/* Stats with subtle glow */
.stat-number {
    text-shadow: 0 0 28px rgba(196, 163, 90, 0.15);
}

/* Booking panel spot light (solid panel, soft inner glow only) */
.booking-form-panel {
    position: relative;
}
.booking-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.45), transparent);
    pointer-events: none;
}

/* Footer end-credits feel */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.footer::before {
    content: 'END CREDITS';
    display: block;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(154, 161, 170, 0.4);
    padding: 1.25rem 0 0;
}

/* Reduce motion / mobile grain intensity */
@media (prefers-reduced-motion: reduce) {
    .cine-grain { animation: none; opacity: 0.025; }
    .cine-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    body.theme-cinematic.cine-ready .cine-letterbox-bar { height: 0; }
    .has-parallax > .parallax-bg { transform: none !important; }
}
@media (max-width: 768px) {
    .cine-grain { opacity: 0.028; }
    body.theme-split-studio .cine-grain { opacity: 0.024; }
    .cine-scanlines { opacity: 0.015; }
    body.theme-cinematic.cine-ready .cine-letterbox-bar {
        height: clamp(8px, 1.6vh, 18px);
    }
    .cine-frame-tag { font-size: 0.65rem; letter-spacing: 0.18em; }
    .cine-ba-frame::before,
    .cine-ba-frame::after {
        width: 18px;
        height: 18px;
    }
}

/* Optional: hide letterbox when user prefers full view (class toggled in JS) */
body.cine-immersive .cine-letterbox-bar { height: 0 !important; }

/* ═════════════════════════════════════════════════════════════════════
   RIVIAN AESTHETIC DESIGN SYSTEM (theme-rivian)
   Core: Clean outdoor luxury, light base, charcoal typography, sunset amber accent,
   pill components, rounded-3xl containers, generous macro whitespace.
   ═════════════════════════════════════════════════════════════════════ */
:root {
  --rivian-base: #F4F5F2;
  --rivian-card: #FFFFFF;
  --rivian-slate: #E5E8E2;
  --rivian-charcoal: #141716;
  --rivian-muted: #59615D;
  --rivian-accent: #D97706; /* Sunset Amber / Warm Ochre */
  --rivian-accent-hover: #B45309;
  --rivian-radius-sm: 12px;
  --rivian-radius-md: 20px;
  --rivian-radius-lg: 28px;
  --rivian-radius-xl: 36px;
  --rivian-radius-pill: 9999px;
  --rivian-shadow-subtle: 0 4px 20px -2px rgba(20, 23, 22, 0.05), 0 2px 6px -1px rgba(20, 23, 22, 0.03);
  --rivian-shadow-card: 0 12px 36px -4px rgba(20, 23, 22, 0.08), 0 4px 12px -2px rgba(20, 23, 22, 0.04);
  --rivian-shadow-hover: 0 24px 50px -8px rgba(20, 23, 22, 0.12), 0 8px 20px -4px rgba(20, 23, 22, 0.06);
}

body.theme-rivian {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background-color: var(--rivian-base) !important;
  color: var(--rivian-charcoal) !important;
}

/* 1. TYPOGRAPHY: Massive bold geometric headings + clean regular body */
body.theme-rivian h1,
body.theme-rivian h2,
body.theme-rivian h3,
body.theme-rivian .hero-brand,
body.theme-rivian .section-title,
body.theme-rivian .ba-title,
body.theme-rivian .gallery-title,
body.theme-rivian .svc-title,
body.theme-rivian .about-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

body.theme-rivian .hero-brand {
  font-size: clamp(3.2rem, 8.5vw, 6.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  color: #FFFFFF !important;
}

body.theme-rivian .hero-location {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.02em !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

body.theme-rivian .hero-subheadline {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

body.theme-rivian .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem) !important;
  color: var(--rivian-charcoal) !important;
  margin-bottom: 0.75rem !important;
}

body.theme-rivian .section-kicker {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--rivian-accent) !important;
}

body.theme-rivian .section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  color: var(--rivian-muted) !important;
}

/* 2. FLOATING PILL NAVBAR */
body.theme-rivian .navbar {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1280px;
  border-radius: var(--rivian-radius-pill);
  padding: 0.65rem 1.25rem;
  background: rgba(244, 245, 242, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(20, 23, 22, 0.08);
  box-shadow: var(--rivian-shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-rivian .navbar.scrolled {
  top: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 23, 22, 0.1);
  box-shadow: var(--rivian-shadow-card);
  padding: 0.55rem 1.25rem;
}

body.theme-rivian .navbar-container {
  padding: 0;
  max-width: 100%;
}

body.theme-rivian .navbar-links {
  gap: 1.75rem;
}

body.theme-rivian .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--rivian-charcoal) !important;
  transition: color 0.2s ease;
}

body.theme-rivian .nav-link::after {
  display: none !important;
}

body.theme-rivian .nav-link:hover {
  color: var(--rivian-accent) !important;
}

/* 3. BUTTONS: FULLY ROUNDED PILL BUTTONS + SUNSET AMBER */
body.theme-rivian .nav-cta,
body.theme-rivian .hero-cta--primary,
body.theme-rivian .bf-submit,
body.theme-rivian .btn-wa-soft {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  border-radius: var(--rivian-radius-pill) !important;
  background: var(--rivian-accent) !important;
  color: #FFFFFF !important;
  padding: 0.65rem 1.5rem !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.28) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

body.theme-rivian .nav-cta:hover,
body.theme-rivian .hero-cta--primary:hover,
body.theme-rivian .bf-submit:hover,
body.theme-rivian .btn-wa-soft:hover {
  background: var(--rivian-accent-hover) !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.38) !important;
  transform: translateY(-2px) !important;
}

/* Hero Actions Container */
.hero-actions-rivian {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta--secondary {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em !important;
  border-radius: var(--rivian-radius-pill) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  padding: 0.85rem 1.75rem !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px) !important;
}

body.theme-rivian .hero-text-2 .hero-cta--primary {
  padding: 0.85rem 2rem !important;
  font-size: 0.95rem !important;
}

/* 4. CARD CONTAINERS: ROUNDED-3XL WITH SOFT SHADOWS & NEGATIVE SPACE */
body.theme-rivian .svc-card,
body.theme-rivian .scene-band-mid-wrap .services-bento--fit .svc-card--photo {
  border-radius: var(--rivian-radius-lg) !important;
  border: 1px solid rgba(20, 23, 22, 0.06) !important;
  background: var(--rivian-card) !important;
  box-shadow: var(--rivian-shadow-card) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.theme-rivian .svc-card:hover,
body.theme-rivian .scene-band-mid-wrap .services-bento--fit .svc-card--photo:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--rivian-shadow-hover) !important;
}

body.theme-rivian .svc-card-body {
  padding: 1.5rem !important;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 23, 22, 0.85) 60%, rgba(20, 23, 22, 0.95) 100%) !important;
}

body.theme-rivian .svc-num {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  color: var(--rivian-accent) !important;
}

body.theme-rivian .svc-title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.35rem !important;
}

body.theme-rivian .svc-desc {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* 5. ABOUT SECTION & STAT CARDS ALA RIVIAN METRICS */
body.theme-rivian .about-stats--fit,
body.theme-rivian .about-stats {
  gap: 1.5rem !important;
}

body.theme-rivian .stat-item {
  background: var(--rivian-card) !important;
  padding: 1.75rem 1.25rem !important;
  border-radius: var(--rivian-radius-md) !important;
  border: 1px solid rgba(20, 23, 22, 0.06) !important;
  box-shadow: var(--rivian-shadow-subtle) !important;
  transition: transform 0.3s ease;
}

body.theme-rivian .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--rivian-shadow-card);
}

body.theme-rivian .stat-number {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  color: var(--rivian-charcoal) !important;
  text-shadow: none !important;
}

body.theme-rivian .stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--rivian-muted) !important;
}

body.theme-rivian .about-content--fit .about-title {
  color: var(--rivian-charcoal) !important;
}

body.theme-rivian .about-content--fit .about-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: var(--rivian-muted) !important;
}

body.theme-rivian .feature-item {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  border-radius: var(--rivian-radius-pill) !important;
  background: rgba(217, 119, 6, 0.08) !important;
  color: var(--rivian-charcoal) !important;
  border-left: none !important;
  border: 1px solid rgba(217, 119, 6, 0.2) !important;
  padding: 0.55rem 1.1rem !important;
}

/* 6. FLEET CHIPS: MINIMALIST PILLS */
body.theme-rivian .fleet-chip {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border-radius: var(--rivian-radius-pill) !important;
  background: var(--rivian-card) !important;
  color: var(--rivian-charcoal) !important;
  border: 1px solid rgba(20, 23, 22, 0.08) !important;
  box-shadow: var(--rivian-shadow-subtle) !important;
  padding: 0.65rem 1.4rem !important;
  transition: all 0.2s ease !important;
}

body.theme-rivian .fleet-chip:hover {
  background: var(--rivian-charcoal) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

body.theme-rivian .fleet-chip--accent {
  background: var(--rivian-accent) !important;
  color: #FFFFFF !important;
  border-color: var(--rivian-accent) !important;
}

/* 7. PROCESS STEPS: ELEGANT NUMBERED CARDS */
body.theme-rivian .process-step {
  background: var(--rivian-card) !important;
  border-radius: var(--rivian-radius-lg) !important;
  padding: 1.75rem !important;
  border: 1px solid rgba(20, 23, 22, 0.06) !important;
  box-shadow: var(--rivian-shadow-subtle) !important;
}

body.theme-rivian .process-num {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--rivian-accent) !important;
}

body.theme-rivian .process-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--rivian-charcoal) !important;
}

body.theme-rivian .process-desc {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--rivian-muted) !important;
}

/* 8. BEFORE/AFTER SLIDER & GALLERY */
body.theme-rivian .ba-slider-container {
  border-radius: var(--rivian-radius-xl) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: var(--rivian-shadow-hover) !important;
}

body.theme-rivian .ba-label {
  border-radius: var(--rivian-radius-pill) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 0.4rem 1.2rem !important;
}

body.theme-rivian .ba-label-after {
  background: var(--rivian-accent) !important;
  color: #FFFFFF !important;
}

body.theme-rivian .ba-nav-btn {
  border-radius: var(--rivian-radius-pill) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  transition: all 0.2s ease !important;
}

body.theme-rivian .ba-nav-btn.active,
body.theme-rivian .ba-nav-btn:hover {
  background: var(--rivian-accent) !important;
  border-color: var(--rivian-accent) !important;
  color: #FFFFFF !important;
}

body.theme-rivian .gallery-item {
  border-radius: var(--rivian-radius-lg) !important;
  overflow: hidden !important;
}

/* 9. LOCATIONS & BOOKING CARDS */
body.theme-rivian .loc-card {
  border-radius: var(--rivian-radius-xl) !important;
  border: 1px solid rgba(20, 23, 22, 0.08) !important;
  background: var(--rivian-card) !important;
  box-shadow: var(--rivian-shadow-card) !important;
  overflow: hidden !important;
}

body.theme-rivian .booking-layout {
  gap: 2.5rem !important;
}

body.theme-rivian .booking-aside {
  border-radius: var(--rivian-radius-xl) !important;
  padding: 2.5rem !important;
  box-shadow: var(--rivian-shadow-card) !important;
}

body.theme-rivian .booking-form-panel {
  border-radius: var(--rivian-radius-xl) !important;
  padding: 2.5rem !important;
  background: var(--rivian-card) !important;
  border: 1px solid rgba(20, 23, 22, 0.08) !important;
  box-shadow: var(--rivian-shadow-card) !important;
}

body.theme-rivian .bf-input,
body.theme-rivian .bf-select,
body.theme-rivian .bf-textarea {
  border-radius: var(--rivian-radius-md) !important;
  border: 1px solid var(--rivian-slate) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.95rem !important;
  padding: 0.85rem 1.15rem !important;
  transition: all 0.2s ease !important;
}

body.theme-rivian .bf-input:focus,
body.theme-rivian .bf-select:focus,
body.theme-rivian .bf-textarea:focus {
  border-color: var(--rivian-accent) !important;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15) !important;
  outline: none !important;
}

body.theme-rivian .bf-advanced {
  border-radius: var(--rivian-radius-md) !important;
}

/* 10. SCROLL TO TOP & CURSOR */
body.theme-rivian .scroll-top-btn {
  border-radius: var(--rivian-radius-pill) !important;
  background: var(--rivian-accent) !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35) !important;
}

body.theme-rivian #custom-cursor {
  background: var(--rivian-accent) !important;
}

body.theme-rivian #custom-cursor-follower {
  border-color: rgba(217, 119, 6, 0.5) !important;
}

body.theme-rivian .cine-title-rule {
  background: var(--rivian-accent) !important;
  height: 3px !important;
  border-radius: 999px !important;
}

