/* ============================================================
   HERO — Full screen video below navbar, centered sleek content
   ============================================================ */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* This wrapper is what actually fills the screen — stats live
   outside it so they sit below the fold until the user scrolls.
   Height is capped to the viewport MINUS the navbar's own height,
   so navbar + hero together equal exactly one screen. */
.hero__screen {
    position: relative;
    height: 88vh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.hero__grid-overlay {
    display: none !important;
}
.hero__accent-line {
    display: none !important;
}
.hero__scroll {
    display: none !important;
}

/* Content — centered, sleek */
.hero__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 0 clamp(24px, 5vw, 60px);
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(10px);
    animation: hero-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}
.hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(14px);
    animation: hero-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.hero__title em {
    font-style: italic;
    color: var(--color-gold-light);
    display: block;
}

/* Two centered ghost buttons — transparent, white border, white text */
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    animation: hero-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

.hero__btn-primary,
.hero__btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.hero__btn-primary:hover,
.hero__btn-secondary:hover {
    background: #fff;
    color: var(--color-black);
    border-color: #fff;
}

@keyframes hero-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats — slim editorial row, sits below the full-screen hero */
.hero__stats {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-black);
    border-top: 1px solid var(--color-gold-border);
}

.hero__stat {
    padding: clamp(24px, 2.8vw, 34px) clamp(16px, 3vw, 40px);
    text-align: left;
    border-right: 1px solid var(--color-gray-border);
    transition: background 0.3s;
    cursor: default;
}
.hero__stat:last-child {
    border-right: none;
}
.hero__stat:hover {
    background: var(--color-gold-ghost);
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 400;
    color: var(--color-gold-light);
    display: block;
    line-height: 1;
}
.hero__stat-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray);
    display: block;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero__stat:nth-child(2) {
        border-right: none;
    }
    .hero__stat:nth-child(1),
    .hero__stat:nth-child(2) {
        border-bottom: 1px solid var(--color-gray-border);
    }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__btn-primary,
    .hero__btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
