/*
    Landing page
*/

.landing {
    position: relative;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    background-color: #0a0a0a;
    color: var(--color-white);
    font-family: "ABC Monument Grotesk Greek", "General Sans", Helvetica, -apple-system, BlinkMacSystemFont, arial, sans-serif;
    font-weight: 500;
}

/* Slideshow */
.landing-slides {
    position: absolute;
    inset: 0;
}

.landing-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.landing-slide.is-active {
    opacity: 1;
}

.landing-slide .figure {
    position: absolute;
    inset: 0;
    margin: 0;
}

.landing-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.landing-slide img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) grayscale(1);
}

.landing-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Wordmark */
.landing-wordmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: clamp(56px, 13vw, 212px);
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* Description */
.landing-description {
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    max-width: 1100px;
    font-size: 14px;
    line-height: 1.4;
    z-index: 5;
}

.landing-description p {
    display: inline;
    margin: 0;
}

.landing-description-short--mobile {
    display: none;
}

.landing-description-full {
    display: none;
}

.landing-description-full p {
    margin-bottom: 1rem;
    display: block;
}

.landing-description.is-expanded {
    font-size: 20px;
}

.landing-description.is-expanded .landing-description-short {
    display: none;
}

.landing-description.is-expanded .landing-description-full {
    display: block;
}

/* Fullscreen blur backdrop behind the text, shown only while expanded */
.landing-description-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 200ms ease;
}

.landing-description.is-expanded .landing-description-backdrop {
    opacity: 1;
}

.landing-description-toggle {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    cursor: pointer;
    transition: color 150ms ease;
    padding: 0;
}

.landing-description-toggle:hover,
.landing-description-toggle:focus-visible {
    color: rgba(255, 255, 255, 0.8);
}

/* Credits */
.landing-credits {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    font-size: 14px;
    line-height: 1.4;
}

.landing-credits p {
    margin: 0;
}

.landing-credits u {
    text-underline-offset: 0.15em;
}

.landing-credits-financed {
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 48rem) {
    .landing-wordmark {
        font-size: clamp(48px, 21vw, 80px);
    }

    .landing-description.is-expanded {
        font-size: 14px;
    }

    .landing-description-short--desktop {
        display: none;
    }

    .landing-description-short--mobile {
        display: block;
    }

    .landing-credits {
        display: none;
    }
}
