/* ============================
   HERO WRAPPER
   ============================ */
.hero-header {
    width: 100%;
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1rem 1.75rem;
    color: var(--color-white, #ffffff);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgb(246 204 79 / 0.13),
            transparent 25rem
        ),
        linear-gradient(
            135deg,
            var(--color-navy, #071f4a) 0%,
            var(--color-navy-light, #0d2d61) 65%,
            #05611d 140%
        );
    border-bottom: 4px solid var(--color-gold, #f6cc4f);
    opacity: 0;
    transform: translateY(0.75rem);
    animation: heroFadeIn 0.8s ease-out 0.15s forwards;
}

.hero-section::before {
    position: absolute;
    top: -7rem;
    right: -7rem;
    width: 15rem;
    height: 15rem;
    content: "";
    border: 1px solid rgb(246 204 79 / 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 2rem rgb(246 204 79 / 0.035),
        0 0 0 4rem rgb(246 204 79 / 0.025);
    pointer-events: none;
}

.hero-section::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        to bottom,
        rgb(0 0 0 / 0.08),
        transparent 45%
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 72rem;
    margin: 0 auto;
}

.hero-est {
    color: var(--color-gold, #f6cc4f);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 60rem;
    margin: 0.4rem 0 0;
    color: var(--color-white, #ffffff);
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    text-wrap: balance;
    text-shadow: 0 3px 12px rgb(0 0 0 / 0.22);
}

.hero-divider {
    width: min(100%, 48rem);
    height: 1px;
    margin-top: 0.8rem;
    background: linear-gradient(
        to right,
        var(--color-gold, #f6cc4f),
        rgb(246 204 79 / 0)
    );
}

.hero-tagline {
    max-width: 42rem;
    margin: 0.65rem 0 0;
    color: var(--color-cream, #f7f2d8);
    font-size: clamp(0.9rem, 3.8vw, 1rem);
    line-height: 1.4;
}

@media (min-width: 640px) {
    .hero-section {
        padding: 2.25rem 1.25rem 2.5rem;
    }

    .hero-section::before {
        top: -9rem;
        right: -7rem;
        width: 21rem;
        height: 21rem;
    }

    .hero-est {
        font-size: 0.75rem;
    }

    .hero-title {
        margin-top: 0.5rem;
        font-size: clamp(2.25rem, 5vw, 3.25rem);
    }

    .hero-divider {
        margin-top: 1rem;
    }

    .hero-tagline {
        margin-top: 0.75rem;
        font-size: clamp(1rem, 2vw, 1.15rem);
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 2.75rem;
        padding-bottom: 3rem;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
