:root {
    --sparrow-accent: #b49a67;
    --sparrow-warm: #d8c7a4;
}

.sparrow-shell {
    background:
        radial-gradient(circle at 86% 9%, rgb(180 154 103 / 7%), transparent 23rem),
        var(--surface);
}

.sparrow-label {
    margin: 0;
    color: var(--sparrow-accent);
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: clamp(0.67rem, 0.75vw, 0.78rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.sparrow-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.62fr);
    min-height: min(40rem, calc(100vh - 8rem));
    border-bottom: 1px solid var(--line);
}

.sparrow-hero__copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(3.75rem, 6.5vw, 7rem) clamp(2.5rem, 6vw, 6.5rem);
}

.sparrow-title {
    display: flex;
    gap: clamp(0.85rem, 1.4vw, 1.25rem);
    align-items: center;
    width: 100%;
    margin: clamp(1.4rem, 2.5vw, 2rem) 0 1.6rem;
}

.sparrow-title img {
    width: clamp(3.35rem, 4.2vw, 4.6rem);
    height: clamp(3.35rem, 4.2vw, 4.6rem);
    flex: 0 0 auto;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 35%);
}

.sparrow-title h1 {
    min-width: 0;
    margin: 0;
    font-size: clamp(3rem, 5vw, 5.6rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.92;
    white-space: nowrap;
}

.sparrow-hero__copy > h2 {
    max-width: 14ch;
    margin: 0;
    color: #b5b3b0;
    font-size: clamp(1.55rem, 2.45vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.sparrow-hero__intro {
    max-width: 32rem;
    margin: clamp(1.25rem, 2.2vw, 1.8rem) 0 0;
    color: #7f7e82;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.6;
}

.sparrow-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.sparrow-actions > span {
    color: #646469;
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: 0.67rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.sparrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.8rem 1.2rem;
    border-radius: 0.45rem;
    color: #111112;
    background: #efeee9;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

.sparrow-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.sparrow-hero__visual {
    display: grid;
    min-width: 0;
    place-items: center;
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4.5rem) clamp(2rem, 4vw, 4rem) 0;
}

.hero-slideshow {
    position: relative;
    width: min(100%, 23rem);
    min-height: 0;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid #2b2a28;
    border-radius: 0.8rem;
    background: #111;
}

#hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 520ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0b0b0c;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgb(4 4 5 / 88%) 0%, rgb(4 4 5 / 12%) 48%, transparent 70%),
        linear-gradient(to right, rgb(4 4 5 / 18%), transparent 35%);
}

.hero-slide__label {
    position: absolute;
    right: 1.5rem;
    bottom: 1.45rem;
    left: 1.5rem;
    color: #f5f3ed;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 650;
    letter-spacing: -0.03em;
}

.hero-slideshow-dots {
    position: absolute;
    z-index: 3;
    top: 1.2rem;
    left: 1.25rem;
    display: flex;
    gap: 0.4rem;
}

.hero-dot {
    width: 1.6rem;
    height: 0.18rem;
    padding: 0;
    border: 0;
    border-radius: 1rem;
    background: rgb(255 255 255 / 32%);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #f4f1e9;
}

.hero-prev,
.hero-next {
    position: absolute;
    z-index: 4;
    top: 1rem;
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 50%;
    color: #f1f0eb;
    background: rgb(8 8 9 / 48%);
    font: inherit;
    cursor: pointer;
    backdrop-filter: blur(0.5rem);
}

.hero-prev {
    right: 3.7rem;
}

.hero-next {
    right: 1.25rem;
}

.sparrow-featured {
    padding: clamp(4.5rem, 8vw, 8rem) var(--side);
    border-bottom: 1px solid var(--line);
}

.sparrow-featured__heading {
    max-width: 52rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.sparrow-featured__heading h2 {
    margin: 1.1rem 0 1rem;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.sparrow-featured__heading > p:last-child {
    max-width: 44rem;
    margin: 0;
    color: #858489;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.6;
}

.sparrow-featured__story {
    display: grid;
    grid-template-columns: minmax(10rem, 15rem) minmax(18rem, 34rem);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    max-width: 58rem;
    margin: 0 auto;
}

.sparrow-featured__poster {
    width: 100%;
    margin: 0;
}

.sparrow-featured__poster img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 1px solid #2a2927;
    border-radius: 0.6rem;
    object-fit: contain;
    background: #0b0b0c;
    box-shadow: 0 2rem 5rem rgb(0 0 0 / 30%);
}

.sparrow-featured__copy {
    max-width: 34rem;
}

.sparrow-featured__copy h3 {
    margin: 1rem 0 1.2rem;
    font-size: clamp(1.9rem, 3.4vw, 3.5rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.sparrow-featured__copy > p:not(.sparrow-label) {
    margin: 0;
    color: #858489;
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.65;
}

.sparrow-text-link {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    margin-top: 2rem;
    color: var(--sparrow-warm);
    font-weight: 650;
    text-decoration: none;
}

.sparrow-text-link span:last-child {
    transition: transform 160ms ease;
}

.sparrow-text-link:hover span:last-child {
    transform: translate(0.18rem, -0.18rem);
}

.ff-trailer {
    max-width: 58rem;
    margin: clamp(3.5rem, 6vw, 6rem) auto 0;
}

.ff-trailer__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border: 1px solid #2a2927;
    border-radius: 0.75rem;
    background: #050506;
}

.ff-trailer__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sparrow-statement {
    display: grid;
    grid-template-columns: minmax(18rem, 0.75fr) minmax(28rem, 1.25fr);
    gap: clamp(3rem, 7vw, 8rem);
    padding: clamp(5rem, 9vw, 9rem) var(--side);
    border-bottom: 1px solid var(--line);
}

.sparrow-statement__heading h2 {
    margin: 1.2rem 0 1.4rem;
    font-size: clamp(2.6rem, 5vw, 5rem);
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.sparrow-statement__heading > p:last-child {
    max-width: 33rem;
    margin: 0;
    color: #858489;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
}

.sparrow-principles {
    border-top: 1px solid var(--line);
}

.sparrow-principles article {
    display: grid;
    grid-template-columns: 2.5rem minmax(8rem, 0.55fr) minmax(12rem, 1fr);
    gap: 1.4rem;
    align-items: baseline;
    padding: 1.7rem 0;
    border-bottom: 1px solid var(--line);
}

.sparrow-principles article > span {
    color: #5d5d62;
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: 0.68rem;
}

.sparrow-principles h3 {
    margin: 0;
    font-size: 1.25rem;
}

.sparrow-principles p {
    margin: 0;
    color: #77767b;
    line-height: 1.55;
}

.sparrow-cta {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: clamp(3rem, 8vw, 9rem);
    align-items: end;
    padding: clamp(5rem, 9vw, 9rem) var(--side);
    background:
        linear-gradient(120deg, rgb(180 154 103 / 13%), transparent 42%),
        #0d0d0f;
    border-bottom: 1px solid var(--line);
}

.sparrow-cta h2 {
    margin: 1.25rem 0 0;
    font-size: clamp(3rem, 6.5vw, 7rem);
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.sparrow-cta > div:last-child {
    max-width: 32rem;
}

.sparrow-cta > div:last-child p {
    margin: 0 0 2rem;
    color: #87868b;
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .sparrow-hero {
        grid-template-columns: 1fr;
    }

    .sparrow-hero__copy {
        padding-bottom: 3.5rem;
    }

    .sparrow-hero__visual {
        padding: 0 var(--side) clamp(3rem, 7vw, 5rem);
    }

    .hero-slideshow {
        width: min(100%, 20rem);
    }
}

@media (max-width: 760px) {
    .sparrow-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .sparrow-hero__visual {
        padding-inline: var(--side);
    }

    .hero-slideshow {
        width: min(100%, 18rem);
    }

    .sparrow-featured__story,
    .sparrow-statement,
    .sparrow-cta {
        grid-template-columns: 1fr;
    }

    .sparrow-featured__story {
        max-width: 34rem;
        margin: 0;
    }

    .sparrow-featured__poster {
        max-width: 13rem;
    }

    .sparrow-principles article {
        grid-template-columns: 2rem minmax(7rem, 0.65fr) 1fr;
        gap: 0.8rem;
    }
}

@media (max-width: 520px) {
    .sparrow-hero__copy {
        padding-inline: var(--side);
    }

    .sparrow-title {
        gap: 0.75rem;
    }

    .sparrow-title img {
        width: 3rem;
        height: 3rem;
        border-radius: 0.8rem;
    }

    .sparrow-title h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .hero-slideshow {
        width: min(100%, 16rem);
    }

    .sparrow-principles article {
        grid-template-columns: 2rem 1fr;
    }

    .sparrow-principles p {
        grid-column: 2;
    }
}
