/* Project status page with an immediate, unambiguous empty state. */
.projects-page {
    background: #121417;
    color: #fff;
}

.projects-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: min(44rem, 88vh);
    padding: calc(var(--header-height) + 5rem) var(--page-gutter) 5rem;
    overflow: hidden;
    isolation: isolate;
}

.projects-hero__image,
.projects-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.projects-hero__image {
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.projects-hero__shade {
    z-index: -1;
    background: rgba(10, 13, 17, 0.78);
}

.projects-hero__inner {
    width: min(100%, 72rem);
    margin: 0 auto;
}

.projects-kicker {
    margin: 0 0 0.9rem;
    color: #90b2ff;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.projects-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}

.projects-status {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 48rem;
    margin-top: 2rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.48);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.projects-status__indicator {
    flex: 0 0 auto;
    width: 0.72rem;
    height: 0.72rem;
    margin-top: 0.48rem;
    border: 2px solid #90b2ff;
    border-radius: 999px;
    background: transparent;
}

.projects-status p {
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.25;
}

.projects-hero__copy {
    max-width: 40rem;
    margin: 1.3rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

.projects-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
}

.projects-text-link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.projects-text-link:hover,
.projects-text-link:focus-visible {
    color: #b9cdff;
}

@media (max-width: 600px) {
    .projects-hero {
        min-height: min(38rem, 84vh);
        padding-block: calc(var(--header-height) + 3.5rem) 3.5rem;
    }

    .projects-hero h1 {
        font-size: 2.7rem;
    }

    .projects-status p {
        font-size: 1.35rem;
    }

    .projects-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .projects-hero__actions .button,
    .projects-text-link {
        width: 100%;
        text-align: center;
    }
}

@media print {
    .projects-hero {
        min-height: 0;
        padding: 0;
    }

    .projects-hero__image,
    .projects-hero__shade,
    .projects-hero__actions,
    .site-header,
    .site-footer {
        display: none !important;
    }

    .projects-page,
    .projects-hero h1,
    .projects-status p,
    .projects-hero__copy {
        background: #fff;
        color: #171b21;
    }
}
