/* ==========================================================
   V1.1.1 — SPOTLIGHT HOMEPAGE HERO

   Uses Adelyn's real media-day portrait as an edge-to-edge hero.
   This file is intentionally isolated so the component can be
   reviewed and reverted without disturbing the v1.0 styles.
========================================================== */

.spotlight-hero {
    position: relative;
    min-height: clamp(640px, 78vh, 860px);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(49, 168, 255, 0.28);
    background: #050b16;
}

.spotlight-hero__media,
.spotlight-hero__shade,
.spotlight-hero__glow {
    position: absolute;
    inset: 0;
}

.spotlight-hero__media {
    z-index: -4;
}

.spotlight-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 22%;
    filter: saturate(0.95) contrast(1.05);
    transform: scale(1.015);
}

.spotlight-hero__shade {
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(2, 7, 17, 0.99) 0%,
            rgba(2, 7, 17, 0.94) 26%,
            rgba(2, 7, 17, 0.62) 48%,
            rgba(2, 7, 17, 0.17) 72%,
            rgba(2, 7, 17, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 7, 17, 0.22) 0%,
            transparent 46%,
            rgba(2, 7, 17, 0.78) 100%
        );
}

.spotlight-hero__glow {
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(15, 123, 255, 0.22),
            transparent 31rem
        );
    mix-blend-mode: screen;
}

.spotlight-hero__inner {
    min-height: inherit;
    display: flex;
    align-items: center;
    padding-block: clamp(5rem, 10vh, 8rem);
}

.spotlight-hero__copy {
    width: min(660px, 55vw);
    padding-top: 1rem;
}

.spotlight-hero__eyebrow {
    margin-bottom: 1rem;
    color: #f7c948;
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 1.2vw, 1.02rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.spotlight-hero__title {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 9.5rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 0.82;
    text-transform: uppercase;
    text-wrap: balance;
}

.spotlight-hero__title span {
    display: block;
}

.spotlight-hero__identity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 2rem 0 0.75rem;
    color: #f7c948;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.spotlight-hero__identity span {
    color: #ffffff;
}

.spotlight-hero__location {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.spotlight-hero__location span {
    color: #31a8ff;
    font-size: 1.35em;
}

.spotlight-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.spotlight-hero__actions .button {
    min-width: 150px;
}

.spotlight-hero__button-icon {
    display: inline-grid;
    place-items: center;
    width: 1.45rem;
    height: 1.45rem;
    margin-left: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    font-size: 0.56rem;
    line-height: 1;
}

.spotlight-hero__edge {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(15, 123, 255, 0.95) 28%,
        rgba(49, 168, 255, 0.85) 58%,
        transparent
    );
    box-shadow: 0 0 22px rgba(15, 123, 255, 0.68);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {
    .spotlight-hero {
        min-height: 720px;
    }

    .spotlight-hero__media img {
        object-position: 58% 35%;
    }

    .spotlight-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(2, 7, 17, 0.08) 0%,
                rgba(2, 7, 17, 0.2) 35%,
                rgba(2, 7, 17, 0.9) 71%,
                #020711 100%
            ),
            linear-gradient(
                90deg,
                rgba(2, 7, 17, 0.74) 0%,
                rgba(2, 7, 17, 0.18) 66%,
                transparent 100%
            );
    }

    .spotlight-hero__inner {
        align-items: flex-end;
        padding-bottom: 4.5rem;
    }

    .spotlight-hero__copy {
        width: min(680px, 100%);
    }

    .spotlight-hero__title {
        font-size: clamp(4.7rem, 15vw, 7.5rem);
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 560px) {
    .spotlight-hero {
        min-height: 680px;
    }

    .spotlight-hero__media img {
        object-position: 55% 22%;
        transform: scale(1.01);
    }

    .spotlight-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(2, 7, 17, 0.03) 0%,
                rgba(2, 7, 17, 0.16) 34%,
                rgba(2, 7, 17, 0.82) 61%,
                #020711 88%
            );
    }

    .spotlight-hero__inner {
        align-items: flex-end;
        padding-block: 4rem 3.5rem;
    }

    .spotlight-hero__copy {
        width: 100%;
        padding-top: 0;
    }

    .spotlight-hero__eyebrow {
        display: none;
    }

    .spotlight-hero__title {
        font-size: clamp(3.8rem, 18vw, 5.6rem);
        line-height: 0.88;
    }

    .spotlight-hero__identity {
        gap: 0.4rem;
        margin-top: 1.25rem;
        font-size: 0.98rem;
    }

    .spotlight-hero__location {
        font-size: 0.94rem;
    }

    .spotlight-hero__actions {
        flex-direction: column;
        margin-top: 1.4rem;
    }

    .spotlight-hero__actions .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spotlight-hero__media img {
        transform: none;
    }
}
