.page-hero {
    margin-top: 95px;
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 60%, #fff8cf 100%);
}

.page-hero--sunrise {
    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%);
}

.page-hero--calm {
    background:
        radial-gradient(circle at 0% 10%, rgba(213, 239, 255, 0.55), transparent 50%),
        radial-gradient(circle at 85% 10%, rgba(255, 224, 219, 0.5), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

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

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

.page-hero__eyebrow {
    font-size: 0.9rem;
    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.45rem 1.25rem;
    align-self: flex-start;
    border: 1px solid rgba(255, 224, 0, 0.45);
}

.page-hero__heading {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    margin: 0;
    color: var(--lnu-black);
}

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

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

.page-hero__metrics {
    display: grid;
    gap: 14px;
}

.page-hero__metric-card {
    background: #ffffff;
    border: 1px solid rgba(18, 13, 38, 0.08);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.page-hero__metric-label {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(18, 13, 38, 0.7);
}

.page-hero__metric-value {
    margin: 0.5rem 0 0.25rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--lnu-black);
}

.page-hero__metric-subtext {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(18, 13, 38, 0.6);
}

.page-hero__pill-label {
    margin: 0 0 6px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(18, 13, 38, 0.65);
}

.page-hero__pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.page-hero__pill-list li {
    background: rgba(18, 13, 38, 0.04);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--lnu-black);
    border: 1px solid rgba(18, 13, 38, 0.05);
}

.page-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-hero__visual-card {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.page-hero__quote {
    font-size: 1rem;
    color: rgba(18, 13, 38, 0.8);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.page-hero__visual-card cite {
    display: block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--lnu-black);
    font-style: normal;
}

@media (max-width: 640px) {
    .page-hero__inner {
        text-align: center;
    }

    .page-hero__content {
        align-items: center;
    }

    .page-hero__eyebrow {
        align-self: center;
    }

    .page-hero__actions {
        justify-content: center;
    }

    .page-hero__metrics {
        width: 100%;
    }
}
