/* ============================================================
   HERO SECTION — extracted from HeroSection.astro
   ============================================================ */

.hero--video {
    background: none !important;
}

.hero--video::before {
    display: none !important;
}

.hero--video .hero__content {
    justify-content: space-between;
}

.hero--video .hero__content::before {
    content: "";
    display: block;
    height: 72px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .hero--video .hero__content::before {
        height: 56px;
    }
}

.hero__video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
    overflow: hidden;
    background-color: var(--color-black);
    pointer-events: none;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__video.active {
    opacity: 1;
}

.hero__video-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 10%,
            transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1075px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(50%) hue-rotate(-20deg);
    background-image: linear-gradient(to bottom, black 0%, transparent 100%),
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: var(--hero-padding-y) var(--hero-padding-x);
    max-width: 1920px;
    margin: 0 auto;
}

.hero-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-footer__stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1200px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 33%;
}

.stat__icon {
    font-size: 42px;
    color: var(--color-meteor);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat__label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    text-align: center;
    max-width: 280px;
    line-height: 1.3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: pulse-down 2s ease-in-out infinite;
}

.scroll-indicator__text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    opacity: 0.6;
}

.scroll-indicator__arrow {
    font-size: 20px;
    color: var(--color-white);
    opacity: 0.8;
}

@keyframes pulse-down {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.6;
    }
}

.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
}

.headline__sub {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-sub-header);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.55);
    margin-bottom: -10px;
}

.headline__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.headline__line {
    font-size: clamp(60px, 12vw, 150px);
    font-weight: 900;
    font-style: italic;
    line-height: 0.8;
    text-transform: uppercase;
    padding: 0 0.15em;
}

.headline__line--white {
    color: var(--color-white);
}

.headline__line--gradient {
    background: linear-gradient(90deg, #D27012 0%, #BC3217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 1200px) {
    .headline__line {
        font-size: clamp(48px, 9vw, 120px);
    }

    .stat__label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100dvh;
        max-height: none;
    }

    .headline__sub {
        font-size: 14px;
    }

    .headline__line {
        font-size: clamp(32px, 11vw, 48px);
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .headline__title {
        font-size: clamp(40px, 8vw, 80px);
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-footer__stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .stat__icon {
        font-size: 32px;
    }

    .stat__label {
        font-size: 15px;
        max-width: none;
    }

    .scroll-indicator {
        align-self: center;
    }
}

/* ── Scroll Arrow ── */
.scroll-ind {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 32px;
    color: white;
    animation: pulse 2s infinite;
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-ind:hover {
    opacity: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}