.hero {
    margin-top: 95px;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 224, 0, 0.45), transparent 55%),
        radial-gradient(circle at 85% -10%, rgba(255, 248, 196, 0.9), transparent 55%),
        linear-gradient(180deg, #fffdf5 0%, #ffffff 45%, #fff9d4 100%);
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 5.5rem);
}

.hero__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lnu-black);
    background-color: rgba(255, 224, 0, 0.35);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    align-self: flex-start;
    border: 1px solid rgba(255, 224, 0, 0.45);
}

.hero__heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 0;
    color: var(--lnu-black);
}

.hero__lead {
    font-size: 1.1rem;
    color: var(--lnu-gray);
    margin: 0;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0.5rem;
}

.hero__media {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.hero-highlights {
    position: relative;
    border-radius: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 224, 0, 0.95) 0%, rgba(255, 224, 0, 0.8) 50%, #fff6b0 110%);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
    color: var(--lnu-black);
    overflow: hidden;
    border: 1px solid rgba(255, 224, 0, 0.35);
}

.hero-highlights::before,
.hero-highlights::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(4px);
}

.hero-highlights::before {
    top: -40px;
    right: -30px;
}

.hero-highlights::after {
    bottom: -50px;
    left: -10px;
    background: rgba(255, 224, 0, 0.25);
}

.hero-highlights__header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.hero-highlights__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin: 0 0 6px;
    color: rgba(18, 13, 38, 0.75);
}

.hero-highlights__caption {
    margin: 0;
    color: rgba(18, 13, 38, 0.7);
}

.hero-highlights__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero-stat-card {
    background: #fff;
    border: 1px solid rgba(18, 13, 38, 0.08);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.hero-stat-card__label {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(18, 13, 38, 0.6);
}

.hero-stat-card__value {
    margin: 10px 0 4px;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lnu-black);
}

.hero-stat-card__subtext {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(18, 13, 38, 0.55);
}

.hero-highlight-event {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    background: #fff;
    color: var(--lnu-black);
    padding: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-highlight-event__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: rgba(255, 180, 0, 0.9);
}

.hero-highlight-event__name {
    margin: 6px 0;
    font-size: 1.3rem;
}

.hero-highlight-event__date {
    margin: 0;
    color: var(--lnu-gray);
}

@media (max-width: 640px) {
    .hero {
        padding-top: 6rem;
    }

    .hero__inner {
        text-align: center;
    }

    .hero__content {
        align-items: center;
    }

    .hero__eyebrow {
        align-self: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero-highlights {
        padding: 24px;
    }

    .hero-highlights__stats {
        grid-template-columns: 1fr;
    }
}
