/* ═══════════════════════════════════════════════════════════════
   Elite Luxe Journeys — template-hero-slider.css
   Hero Video Slider — Ultra-Premium Luxury Redesign v17.0
   "Bespoke Grand Luxury" — Navy · Gold · White

   ALL colour, font, shadow & spacing values reference main.css
   CSS custom properties. DO NOT hardcode brand values here.
   DO NOT inline this file in any HTML template.
═══════════════════════════════════════════════════════════════ */


/* ── 1. CONTAINER ──────────────────────────────────────────── */
.hero-video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
    background-color: var(--color-navy-deep);
    cursor: default;
}


/* ── 2. POSTER IMAGE ───────────────────────────────────────── */
.hero-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 1.8s ease;
}

.hero-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transform: scale(1.04);
    animation: hero-ken-burns 26s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
    from { transform: scale(1.04) translate(0, 0); }
    to   { transform: scale(1.14) translate(-1.5%, -1%); }
}


/* ── 3. BACKGROUND VIDEO ───────────────────────────────────── */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 1;
}


/* ── 4. LAYERED CINEMATIC OVERLAY — PREMIUM LUXURY ─────────── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        /* Strong left vignette — content legibility */
        linear-gradient(
            108deg,
            rgba(var(--color-navy-rgb), 0.97) 0%,
            rgba(var(--color-navy-rgb), 0.86) 25%,
            rgba(var(--color-navy-rgb), 0.52) 50%,
            rgba(var(--color-navy-rgb), 0.18) 72%,
            transparent 100%
        ),
        /* Rich bottom fade */
        linear-gradient(
            to top,
            rgba(var(--color-navy-rgb), 0.88) 0%,
            rgba(var(--color-navy-rgb), 0.38) 28%,
            transparent 55%
        ),
        /* Top gold-tinted scrim — luxury signature */
        linear-gradient(
            to bottom,
            rgba(var(--color-navy-rgb), 0.60) 0%,
            transparent 22%
        );
}

/* Subtle gold shimmer at top — crown line */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--color-gold-rgb), 0.35) 25%,
        rgba(var(--color-gold-rgb), 0.75) 50%,
        rgba(var(--color-gold-rgb), 0.35) 75%,
        transparent 100%
    );
    pointer-events: none;
}


/* ── 5. DECORATIVE ACCENT BORDERS ──────────────────────────── */
.hero-accent-border {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

/* Thin vertical gold ember line */
.hero-accent-border::before {
    content: '';
    position: absolute;
    left: clamp(56px, 5.5vw, 88px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(var(--color-gold-rgb), 0.06) 6%,
        rgba(var(--color-gold-rgb), 0.40) 22%,
        rgba(var(--color-gold-rgb), 0.65) 45%,
        rgba(var(--color-gold-rgb), 0.65) 55%,
        rgba(var(--color-gold-rgb), 0.40) 78%,
        rgba(var(--color-gold-rgb), 0.06) 94%,
        transparent 100%
    );
    filter: blur(0.5px);
}

/* Bottom gold bar — luxury footer line */
.hero-accent-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(
        90deg,
        rgba(var(--color-gold-rgb), 0.50) 0%,
        rgba(var(--color-gold-rgb), 0.80) 20%,
        rgba(var(--color-gold-rgb), 0.98) 50%,
        rgba(var(--color-gold-rgb), 0.80) 80%,
        rgba(var(--color-gold-rgb), 0.50) 100%
    );
    box-shadow: 0 0 12px rgba(var(--color-gold-rgb), 0.30);
}


/* ── 6. SLIDE NUMBER RAIL ──────────────────────────────────── */
.hero-slide-rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: clamp(52px, 5.2vw, 84px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-slide-current {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4.4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--color-gold-light);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow:
        0 2px 18px rgba(var(--color-gold-rgb), 0.55),
        0 0 40px rgba(var(--color-gold-rgb), 0.20);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide-divider {
    width: 1px;
    height: clamp(24px, 3vw, 40px);
    background: linear-gradient(
        180deg,
        var(--color-gold),
        rgba(var(--color-gold-rgb), 0.15)
    );
    margin: 10px 0;
}

.hero-slide-total {
    font-family: var(--font-primary);
    font-size: clamp(0.55rem, 0.85vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-white-35);
    line-height: 1;
}


/* ── 7. HERO CONTENT PANEL ─────────────────────────────────── */
@keyframes panel-entrance {
    from { opacity: 0; transform: translateY(44px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding-left: clamp(82px, 9vw, 144px);
    padding-right: clamp(20px, 4vw, 60px);
    padding-bottom: clamp(64px, 9vh, 120px);
    /* No entrance animation on initial load — added by JS after ready */
    transition: opacity 0.52s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.hero-content-panel.is-ready {
    animation: panel-entrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content-panel.is-out {
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
}

.hero-content-panel.is-in {
    opacity: 1;
    transform: translateY(0);
}


/* ── 8. EYEBROW — LUXURY REFINEMENT ───────────────────────── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: clamp(0.58rem, 0.82vw, 0.70rem);
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 clamp(12px, 1.6vh, 20px) 0;
    line-height: 1;
    opacity: 0.98;
    /* Premium left-ruled underline treatment */
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.22);
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: clamp(28px, 2.8vw, 44px);
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-gold), rgba(var(--color-gold-rgb), 0.25));
    flex-shrink: 0;
}

.hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
    margin-left: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.90);
}


/* ── 9. TITLE — LUXURY EDITORIAL ───────────────────────────── */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.0vw, 5.4rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.02;
    letter-spacing: -0.028em;
    color: var(--color-white);
    margin: 0 0 clamp(14px, 2vh, 26px) 0;
    max-width: clamp(300px, 52vw, 700px);
    text-shadow:
        0 2px 10px rgba(var(--color-navy-rgb), 0.65),
        0 10px 40px rgba(var(--color-navy-rgb), 0.45);
}

/* Last-word gold accent — premium signature */
.hero-title-em {
    color: var(--color-gold-light);
    font-style: normal;
    position: relative;
    /* Soft glow under last word */
    text-shadow:
        0 0 30px rgba(var(--color-gold-rgb), 0.45),
        0 2px 8px rgba(var(--color-navy-rgb), 0.50);
}


/* ── 10. DESCRIPTION ───────────────────────────────────────── */
.hero-description {
    font-family: var(--font-secondary);
    font-size: clamp(0.88rem, 1.22vw, 1.08rem);
    font-weight: 400;
    line-height: 1.70;
    color: var(--color-white-80);
    margin: 0 0 clamp(20px, 2.8vh, 36px) 0;
    max-width: clamp(280px, 40vw, 540px);
    letter-spacing: 0.015em;
}


/* ── 11. STAT PILLS — PREMIUM GLASS LUXURY ─────────────────── */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 0.9vw, 14px);
    margin: 0 0 clamp(22px, 3.2vh, 44px) 0;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    font-family: var(--font-primary);
    font-size: clamp(0.58rem, 0.76vw, 0.68rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white-85, rgba(255,255,255,0.85));
    background: rgba(var(--color-navy-rgb), 0.50);
    border: 1px solid rgba(var(--color-gold-rgb), 0.30);
    border-radius: 1px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.22s ease;
    /* Luxury inner top-highlight */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-stat-pill:hover {
    background: rgba(var(--color-gold-rgb), 0.16);
    border-color: rgba(var(--color-gold-rgb), 0.60);
    color: var(--color-white-95);
    transform: translateY(-1px);
}

.hero-stat-pill i {
    color: var(--color-gold);
    font-size: 0.78em;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(var(--color-gold-rgb), 0.55));
}


/* ── 12. CTA BUTTON — ULTRA-PREMIUM ───────────────────────── */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: clamp(14px, 1.6vh, 20px) clamp(28px, 2.8vw, 44px);
    font-family: var(--font-primary);
    font-size: clamp(0.72rem, 0.94vw, 0.84rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-navy-deep);
    background: linear-gradient(
        135deg,
        var(--color-gold-light) 0%,
        var(--color-gold) 50%,
        var(--color-gold-dark) 100%
    );
    border: none;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 5px 28px rgba(var(--color-gold-rgb), 0.55),
        0 2px 10px rgba(var(--color-navy-rgb), 0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.30s ease,
                color 0.22s ease;
}

/* Top-light gloss */
.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.04) 55%,
        transparent 100%
    );
    pointer-events: none;
}

/* Animated shimmer sweep */
.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.38) 50%,
        transparent 100%
    );
    transform: skewX(-22deg);
    transition: left 0.70s ease;
}

.hero-cta:hover::after {
    left: 170%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.025);
    box-shadow:
        0 10px 44px rgba(var(--color-gold-rgb), 0.70),
        0 5px 20px rgba(var(--color-navy-rgb), 0.55);
    color: var(--color-navy-deep);
    text-decoration: none;
}

.hero-cta:active {
    transform: translateY(-1px) scale(0.99);
}

.hero-cta-icon {
    font-size: 0.95em;
    flex-shrink: 0;
}

.hero-cta-arrow {
    font-size: 0.75em;
    flex-shrink: 0;
    transition: transform 0.28s ease;
    margin-left: -4px;
}

.hero-cta:hover .hero-cta-arrow {
    transform: translateX(5px);
}


/* ── 13. SLIDE INDICATOR DOTS ──────────────────────────────── */
.hero-indicators {
    position: absolute;
    right: clamp(20px, 3vw, 52px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-dot {
    display: block;
    width: 3px;
    height: clamp(20px, 2.6vh, 34px);
    background: rgba(255, 255, 255, 0.20);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background 0.35s ease,
                height 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.35s ease;
    position: relative;
    overflow: hidden;
}

.hero-dot.is-active {
    background: rgba(255, 255, 255, 0.28);
    height: clamp(38px, 4.8vh, 60px);
    transform: scaleX(1.6);
}

.hero-dot.is-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(
        180deg,
        var(--color-gold-light) 0%,
        var(--color-gold) 100%
    );
    border-radius: 2px;
    animation: dot-progress var(--slide-interval, 6000ms) linear forwards;
    box-shadow: 0 0 6px rgba(var(--color-gold-rgb), 0.55);
}

@keyframes dot-progress {
    from { height: 0%; }
    to   { height: 100%; }
}

.hero-dot:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.hero-dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.42);
    height: clamp(26px, 3.2vh, 42px);
}


/* ── 14. VIDEO CONTROLS ────────────────────────────────────── */
.hero-video-controls {
    position: absolute;
    bottom: clamp(22px, 3.2vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
    pointer-events: all;
}

.hero-ctrl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--color-navy-rgb), 0.62);
    border: 1px solid rgba(var(--color-gold-rgb), 0.20);
    border-radius: 50%;
    color: var(--color-white-70);
    cursor: pointer;
    font-size: 0.78rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.22s ease,
                color 0.22s ease,
                border-color 0.22s ease,
                transform 0.22s ease,
                box-shadow 0.22s ease;
    pointer-events: all;
    position: relative;
    z-index: 21;
    box-shadow: 0 2px 10px rgba(var(--color-navy-rgb), 0.40);
}

.hero-ctrl-btn:hover {
    background: rgba(var(--color-gold-rgb), 0.24);
    border-color: rgba(var(--color-gold-rgb), 0.55);
    color: var(--color-gold-light);
    transform: scale(1.10);
    box-shadow: 0 4px 18px rgba(var(--color-gold-rgb), 0.35);
}

.hero-ctrl-btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}


/* ── 15. TRUST BADGE — PREMIUM MEDAL ───────────────────────── */
.hero-trust-badge {
    position: absolute;
    top: clamp(22px, 4.2vh, 44px);
    right: clamp(22px, 3.2vw, 52px);
    z-index: 15;
    animation: badge-entrance 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.9s;
}

@keyframes badge-entrance {
    from { opacity: 0; transform: translateY(-18px) scale(0.88); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.trust-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: clamp(72px, 7.2vw, 96px);
    height: clamp(72px, 7.2vw, 96px);
    background: rgba(var(--color-navy-rgb), 0.72);
    border: 1.5px solid rgba(var(--color-gold-rgb), 0.60);
    border-radius: 50%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 5px 28px rgba(var(--color-navy-rgb), 0.55),
        0 0 0 5px rgba(var(--color-gold-rgb), 0.07),
        0 0 0 10px rgba(var(--color-navy-rgb), 0.15),
        inset 0 1px 0 rgba(var(--color-gold-rgb), 0.20);
    text-align: center;
    padding: 10px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    cursor: default;
}

.trust-badge-inner:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow:
        0 8px 36px rgba(var(--color-navy-rgb), 0.65),
        0 0 0 6px rgba(var(--color-gold-rgb), 0.12),
        0 0 0 12px rgba(var(--color-navy-rgb), 0.10),
        inset 0 1px 0 rgba(var(--color-gold-rgb), 0.25);
}

.trust-badge-icon {
    font-size: clamp(1.1rem, 1.6vw, 1.55rem);
    color: var(--color-gold);
    display: block;
    margin-bottom: 3px;
    filter:
        drop-shadow(0 0 8px rgba(var(--color-gold-rgb), 0.70))
        drop-shadow(0 2px 4px rgba(var(--color-navy-rgb), 0.50));
}

.trust-badge-line1 {
    font-family: var(--font-display);
    font-size: clamp(0.88rem, 1.45vw, 1.25rem);
    font-weight: 700;
    font-style: italic;
    color: var(--color-white-95);
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-badge-line2 {
    font-family: var(--font-primary);
    font-size: clamp(0.42rem, 0.60vw, 0.54rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-pale);
    line-height: 1.3;
    text-align: center;
}


/* ── 16. SCROLL HINT ───────────────────────────────────────── */
.hero-scroll-hint {
    position: absolute;
    bottom: clamp(18px, 2.8vh, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    transition: opacity 0.5s ease;
}

.hero-scroll-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-hint-line {
    display: block;
    width: 1px;
    height: clamp(30px, 4vh, 48px);
    background: linear-gradient(
        180deg,
        rgba(var(--color-gold-rgb), 0.85) 0%,
        rgba(var(--color-gold-rgb), 0.08) 100%
    );
    animation: scroll-pulse 2.6s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(var(--color-gold-rgb), 0.30);
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.45; transform: scaleY(0.65); transform-origin: top; }
    50%       { opacity: 1.00; transform: scaleY(1.00); transform-origin: top; }
}

.scroll-hint-label {
    font-family: var(--font-primary);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(var(--color-gold-rgb), 0.70);
}


/* ── 17. GRAIN TEXTURE OVERLAY ─────────────────────────────── */
.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
}


/* ── 18. RESPONSIVE — TABLET ───────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title {
        max-width: 72vw;
    }
    .hero-description {
        max-width: 62vw;
    }
    .hero-content-panel {
        padding-left: clamp(74px, 8vw, 104px);
    }
}


/* ── 19. RESPONSIVE — MOBILE ───────────────────────────────── */
@media (max-width: 768px) {
    .hero-video-container {
        height: 100svh;
        min-height: 520px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(var(--color-navy-rgb), 0.65) 0%,
                rgba(var(--color-navy-rgb), 0.42) 28%,
                rgba(var(--color-navy-rgb), 0.75) 65%,
                rgba(var(--color-navy-rgb), 0.96) 100%
            );
    }

    .hero-content-panel {
        left: 0;
        right: 0;
        padding-left: clamp(20px, 5vw, 32px);
        padding-right: clamp(20px, 5vw, 32px);
        padding-bottom: clamp(76px, 10vh, 104px);
        text-align: left;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(1.9rem, 7.5vw, 2.9rem);
    }

    .hero-description {
        max-width: 100%;
        font-size: 0.90rem;
    }

    .hero-stats {
        gap: 6px;
    }

    .hero-stat-pill {
        font-size: 0.58rem;
        padding: 5px 10px 5px 8px;
    }

    /* Hide slide rail on mobile */
    .hero-slide-rail {
        display: none;
    }

    /* Move accent border off screen on mobile */
    .hero-accent-border::before {
        left: -10px;
    }

    /* Indicators → bottom row on mobile */
    .hero-indicators {
        flex-direction: row;
        inset: auto auto clamp(22px, 3.2vh, 36px) 50%;
        transform: translateX(-50%);
        gap: 8px;
    }

    .hero-dot {
        width: clamp(18px, 4.5vw, 30px);
        height: 3px;
    }

    .hero-dot.is-active {
        width: clamp(36px, 8vw, 52px);
        height: 3px;
        transform: scaleY(1.5);
    }

    .hero-dot.is-active::after {
        height: 100%;
        width: 0%;
        animation: dot-progress-h var(--slide-interval, 6000ms) linear forwards;
    }

    /* Trust badge — smaller on mobile */
    .trust-badge-inner {
        width: 62px;
        height: 62px;
    }

    /* Video controls — center bottom */
    .hero-video-controls {
        bottom: clamp(16px, 2.5vh, 24px);
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .hero-ctrl-btn {
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
    }
}


/* ── 19b. MOBILE PROGRESS ANIMATION ────────────────────────── */
@keyframes dot-progress-h {
    from { width: 0%; }
    to   { width: 100%; }
}


/* ── 20. REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero-poster-img,
    .hero-content-panel,
    .hero-trust-badge,
    .scroll-hint-line {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .hero-dot.is-active::after {
        animation: none !important;
    }
}
