:root {
    --cream: #f3f0ce;
    --red: #ff0403;
    --ink: #111111;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Red Hat Display", sans-serif;
}

img,
video {
    display: block;
    width: 100%;
}

a {
    color: inherit;
}

.fshirt-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 18px clamp(20px, 4vw, 64px);
    color: var(--white);
}

.fshirt-logo {
    display: block;
    width: 58px;
}

.fshirt-logo img {
    filter: brightness(0) invert(1);
}

.header-link {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.header-link:hover,
.header-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.hero {
    position: relative;
    min-height: min(92vh, 920px);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center 48%;
}

.hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.03) 40%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-copy {
    position: absolute;
    z-index: 2;
    right: clamp(20px, 5vw, 72px);
    bottom: clamp(38px, 8vh, 96px);
    left: clamp(20px, 5vw, 72px);
}

.eyebrow,
.intro-index {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: clamp(76px, 15vw, 190px);
    font-weight: 900;
    line-height: 0.8;
}

.hero-link,
.shop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border: 2px solid currentColor;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease;
}

.hero-link:hover,
.hero-link:focus-visible {
    color: var(--ink);
    background: var(--white);
}

.intro {
    display: grid;
    grid-template-columns: minmax(130px, 0.5fr) minmax(300px, 1.4fr) minmax(240px, 0.8fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: end;
    padding: clamp(64px, 10vw, 150px) clamp(20px, 5vw, 72px);
}

.intro h2,
.shop h2 {
    margin: 0;
    font-size: clamp(44px, 7vw, 104px);
    font-weight: 900;
    line-height: 0.92;
}

.intro h2 {
    color: var(--red);
}

.intro-copy {
    max-width: 420px;
    margin: 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
}

.lookbook {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 32px);
    padding: 0 clamp(16px, 3vw, 44px) clamp(80px, 10vw, 150px);
    background: var(--white);
}

.media {
    grid-column: span 6;
    margin: 0;
    padding-top: clamp(16px, 3vw, 44px);
}

.media img,
.media video {
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #d8d8d8;
}

.media-photo img {
    cursor: zoom-in;
}

.media-photo img:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
}

.media-wide {
    grid-column: 2 / span 10;
}

.media-wide video {
    aspect-ratio: 16 / 10;
}

.media figcaption {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.statement {
    grid-column: span 6;
    display: flex;
    align-items: center;
    min-height: 70vw;
    margin: 0;
    padding: clamp(28px, 6vw, 88px);
    color: var(--white);
    background: var(--red);
}

.statement p {
    margin: 0;
    font-size: clamp(42px, 7vw, 100px);
    font-weight: 900;
    line-height: 0.9;
}

.shop {
    padding: clamp(80px, 12vw, 180px) clamp(20px, 5vw, 72px);
    color: var(--white);
    background: var(--ink);
}

.shop h2 {
    max-width: 1000px;
}

.shop > p:not(.eyebrow) {
    max-width: 500px;
    margin: 32px 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4;
}

.shop-link {
    color: var(--white);
}

.shop-link:hover,
.shop-link:focus-visible {
    color: var(--ink);
    background: var(--white);
}

.fshirt-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px clamp(20px, 5vw, 72px);
    color: var(--red);
    background: var(--cream);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.fshirt-footer img {
    width: 50px;
}

.fshirt-footer p {
    margin: 0;
}

.fshirt-footer a {
    justify-self: end;
    text-decoration: none;
}

.fshirt-footer a:hover,
.fshirt-footer a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.photo-lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: clamp(54px, 7vw, 80px) clamp(16px, 4vw, 56px) 24px;
    border: 0;
    color: var(--white);
    background: rgba(17, 17, 17, 0.96);
    overflow: hidden;
}

.photo-lightbox[open] {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    justify-items: center;
}

.photo-lightbox::backdrop {
    background: rgba(17, 17, 17, 0.96);
}

.photo-lightbox img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: calc(100dvh - 110px);
    object-fit: contain;
}

.photo-lightbox p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.lightbox-close {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    font: 400 40px/1 "Red Hat Display", sans-serif;
    cursor: pointer;
}

.lightbox-close:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

@media (max-width: 760px) {
    .fshirt-header {
        min-height: 68px;
    }

    .fshirt-logo {
        width: 48px;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-image {
        object-position: 54% center;
    }

    .hero h1 {
        font-size: clamp(68px, 25vw, 112px);
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .intro-copy {
        max-width: 34rem;
    }

    .lookbook {
        display: block;
    }

    .media {
        padding-top: 16px;
    }

    .media-video {
        overflow: hidden;
    }

    .media-video video {
        width: calc(100% + 4px);
        max-width: none;
    }

    .media-wide video {
        aspect-ratio: 3 / 4;
    }

    .statement {
        min-height: 92vw;
        margin-top: 16px;
    }

    .fshirt-footer {
        grid-template-columns: 1fr auto;
    }

    .fshirt-footer p {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
