:root {
    --paper: #f4efe5;
    --ink: #151515;
    --red: #e43d2e;
    --yellow: #f2bd35;
    --muted: #716e66;
    --border: #cfc8bb;
    --display: 'Archivo Black', Impact, sans-serif;
    --body: 'Space Grotesk', Arial, sans-serif;
    --mono: 'DM Mono', monospace
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.section-pad {
    padding-left: clamp(1.25rem, 5vw, 6.5rem);
    padding-right: clamp(1.25rem, 5vw, 6.5rem)
}

.mono,
.eyebrow,
.card-label {
    font-family: var(--mono);
    font-size: .67rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.eyebrow {
    color: var(--muted);
    margin: 0
}

.site-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.25rem, 5vw, 6.5rem);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5
}

.brand {
    font-family: var(--display);
    font-size: 1.25rem;
    letter-spacing: -.07em
}

.brand-dot {
    color: var(--red);
    font-size: .9em;
    margin-left: 3px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    text-transform: uppercase;
    font: 500 .7rem var(--mono)
}

.menu-toggle span {
    font-size: 1.1rem;
    margin-left: 8px
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 3vw, 3.5rem);
    font-size: .85rem;
    font-weight: 600
}

.nav-cta {
    border: 1px solid var(--ink);
    border-radius: 100px;
    padding: .7rem 1rem
}

.nav-cta span,
.button span {
    margin-left: .6rem
}

.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow: hidden
}

.hero-copy {
    position: relative;
    z-index: 1
}

.hero h1,
.contact-section h2,
.section-heading h2 {
    font: normal clamp(4.3rem, 10vw, 10.5rem)/.86 var(--display);
    letter-spacing: -.085em;
    margin: 1.4rem 0 2rem
}

.hero h1 em,
.section-heading h2 em,
.contact-section h2 em {
    font-style: normal;
    color: var(--red)
}

.hero-intro {
    max-width: 330px;
    line-height: 1.5;
    color: #4d4a44
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-top: 2.4rem
}

.button {
    display: inline-block;
    padding: 1rem 1.25rem;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    transition: transform .2s
}

.button:hover {
    transform: translateY(-3px)
}

.button-dark {
    background: var(--ink);
    color: var(--paper)
}

.button-red {
    background: var(--red);
    color: var(--paper);
    font-size: .85rem
}

.text-link {
    font-size: .8rem;
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: .35rem
}

.text-link span {
    font-size: 1.1rem;
    margin-left: .4rem
}

.hero-art {
    height: min(78vh, 700px);
    position: relative;
    margin-left: 5%;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-image {
    height: 88%;
    width: 74%;
    background: linear-gradient(150deg, transparent 10%, rgba(0, 0, 0, .1)), url('https://images.unsplash.com/photo-1590246814883-57c511e15b4c?auto=format&fit=crop&w=1000&q=85') center/cover;
    filter: grayscale(1);
    position: relative;
    z-index: 1
}

.sunburst {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    background: repeating-conic-gradient(from 5deg, #f2bd35 0 8deg, transparent 8deg 19deg);
    border-radius: 50%;
    opacity: .9
}

.hero-sticker {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 14%;
    background: var(--red);
    color: var(--paper);
    border-radius: 50%;
    width: 112px;
    height: 112px;
    display: grid;
    place-content: center;
    text-align: center;
    font: normal 1.05rem/.9 var(--display);
    transform: rotate(13deg)
}

.hero-sticker b {
    color: var(--yellow)
}

.hero-caption {
    position: absolute;
    z-index: 2;
    bottom: 6%;
    left: 4%;
    line-height: 1.5
}

.hero-footer {
    position: absolute;
    bottom: 2rem;
    left: clamp(1.25rem, 5vw, 6.5rem);
    right: clamp(1.25rem, 5vw, 6.5rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted)
}

.hero-footer .line {
    height: 1px;
    background: var(--border);
    flex: 1
}

.marquee {
    background: var(--red);
    color: var(--paper);
    white-space: nowrap;
    overflow: hidden;
    padding: .9rem 0;
    font: normal 1rem var(--display);
    letter-spacing: .06em
}

.marquee div {
    word-spacing: 1.2rem;
    animation: move 25s linear infinite
}

@keyframes move {
    to {
        transform: translateX(-30%)
    }
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem
}

.intro {
    padding-top: 10rem;
    padding-bottom: 10rem
}

.section-content h2 {
    font: normal clamp(3rem, 6vw, 6.6rem)/.9 var(--display);
    letter-spacing: -.08em;
    margin: 0 0 2.5rem
}

.section-content h2 span {
    color: var(--red)
}

.large-copy {
    max-width: 650px;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.3
}

.stat-row {
    display: flex;
    gap: clamp(2rem, 8vw, 8rem);
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem
}

.stat-row strong {
    font: normal 2.7rem var(--display);
    display: block
}

.stat-row small {
    font: .68rem var(--mono);
    text-transform: uppercase;
    color: var(--muted)
}

.work-section {
    background: var(--ink);
    color: var(--paper);
    padding-top: 7rem;
    padding-bottom: 8rem
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3.5rem
}

.section-heading .eyebrow {
    color: #9e9b92
}

.section-heading h2 {
    font-size: clamp(3.8rem, 8vw, 8rem);
    margin: 1.2rem 0 0
}

.section-heading .text-link {
    border-color: var(--paper)
}

.gallery {
    display: grid;
    grid-template-columns: 1.05fr 1.5fr .75fr;
    grid-template-rows: 310px 220px;
    gap: 1rem
}

.gallery-card {
    border: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: #333;
    text-align: left;
    color: var(--paper);
    cursor: pointer
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform .5s, filter .5s
}

.gallery-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0)
}

.card-tall {
    grid-row: span 2
}

.card-wide {
    grid-column: span 1
}

.card-small {
    grid-column: 3
}

.card-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem
}

.info-section {
    padding-top: 9rem;
    padding-bottom: 9rem
}

.info-symbol {
    color: var(--red);
    font-size: 5rem;
    display: block;
    margin-top: 5rem
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.info-grid h3 {
    font: normal 1.7rem var(--display);
    letter-spacing: -.05em;
    margin: 0 0 1rem
}

.info-grid p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
    margin: 0
}

.contact-section {
    background: var(--yellow);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
    overflow: hidden
}

.contact-section h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    margin: 1.2rem 0 2.5rem
}

.contact-stamp {
    border: 2px solid var(--ink);
    border-radius: 50%;
    width: 155px;
    height: 155px;
    display: grid;
    place-content: center;
    text-align: center;
    font: normal 1.6rem/.85 var(--display);
    transform: rotate(-16deg)
}

.contact-stamp span {
    color: var(--red)
}

.contact-details {
    font-size: .72rem;
    line-height: 1.5;
    justify-self: end
}

.contact-details p+p {
    margin-top: 2rem
}

.contact-details a {
    text-decoration: underline;
    text-underline-offset: 4px
}

.site-footer {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font: .6rem var(--mono);
    text-transform: uppercase;
    color: var(--muted)
}

.lightbox {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: min(90vw, 1000px)
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .88)
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    display: block
}

.lightbox-close {
    position: absolute;
    right: -2.5rem;
    top: -1rem;
    background: none;
    border: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer
}

@media(max-width:700px) {
    .site-header {
        height: 68px
    }

    .menu-toggle {
        display: block
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 1.25rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem
    }

    .site-nav.is-open {
        display: flex
    }

    .nav-cta {
        text-align: center
    }

    .hero {
        display: block;
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 5rem
    }

    .hero h1 {
        font-size: clamp(4.1rem, 20vw, 7rem)
    }

    .hero-art {
        height: 470px;
        margin: 3rem -1.25rem 0
    }

    .hero-image {
        width: 68%;
        height: 87%
    }

    .sunburst {
        width: 75%
    }

    .hero-sticker {
        right: 8%;
        top: 12%
    }

    .hero-footer {
        bottom: 1.4rem
    }

    .split-section {
        display: block
    }

    .intro,
    .info-section {
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .intro .eyebrow,
    .info-section .eyebrow {
        margin-bottom: 3rem
    }

    .stat-row {
        gap: 1.5rem;
        justify-content: space-between
    }

    .stat-row strong {
        font-size: 2rem
    }

    .stat-row small {
        font-size: .55rem
    }

    .work-section {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .section-heading {
        display: block
    }

    .section-heading .text-link {
        display: inline-block;
        margin-top: 1rem
    }

    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 200px
    }

    .card-tall {
        grid-row: span 1
    }

    .card-wide {
        grid-column: span 2;
        grid-row: 2
    }

    .card-small {
        grid-column: auto;
        display: none
    }

    .info-symbol {
        margin-top: 0;
        margin-bottom: 3rem
    }

    .info-grid {
        display: block
    }

    .info-grid>div {
        padding: 1.4rem 0;
        border-top: 1px solid var(--border)
    }

    .contact-section {
        display: block;
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .contact-stamp {
        position: absolute;
        right: -2rem;
        top: 2rem;
        width: 120px;
        height: 120px;
        font-size: 1.2rem
    }

    .contact-details {
        margin-top: 4rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem
    }

    .site-footer {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        display: block;
        line-height: 2
    }

    .site-footer span {
        display: block
    }

    .site-footer span:nth-child(2) {
        display: none
    }

    .lightbox-close {
        right: 0;
        top: -3rem
    }
}