:root {
    --black: #050505;
    --white: #fff;
    --paper: #f2f2ef;
    --cherry: #a91f46;
    --cherry-on-black: #ff7198;
    --line: 4px solid var(--black);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--black);
    background: var(--paper);
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 1440px;
    min-width: 280px;
    margin: 0 auto;
    background: var(--white);
    border-inline: var(--line);
}

a {
    color: inherit;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 2px;
}

a:focus-visible {
    outline: 4px solid var(--black);
    outline-offset: 4px;
}

.brand {
    color: var(--cherry);
}

.site-header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 4vw, 64px);
    border-bottom: var(--line);
}

.wordmark {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--black);
    border-radius: 50%;
}

.hero {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(56px, 9vw, 130px) clamp(20px, 6vw, 92px);
    border-bottom: var(--line);
}

.eyebrow {
    margin: 0 0 28px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
p {
    overflow-wrap: break-word;
}

h1 {
    max-width: 1120px;
    margin: 0;
    font-size: clamp(3rem, 7.7vw, 7.5rem);
    line-height: 0.91;
    letter-spacing: -0.075em;
}

.hero-slogan {
    max-width: 1050px;
    margin: 34px 0 0;
    font-size: clamp(2rem, 4.4vw, 4.75rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-copy {
    max-width: 790px;
    margin: 42px 0 34px;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.45;
}

.text-link {
    font-weight: 900;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: var(--line);
}

.card {
    min-height: 520px;
    padding: clamp(34px, 5vw, 76px);
}

.card + .card {
    border-left: var(--line);
}

.card-numbered {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: clamp(16px, 3vw, 48px);
}

.number {
    font-size: 0.9rem;
    font-weight: 900;
}

h2 {
    margin: 0 0 34px;
    font-size: clamp(2.3rem, 4.6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.card p,
.statement p,
.collaboration-copy p {
    margin: 0 0 24px;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.55;
}

.statement {
    padding: clamp(56px, 10vw, 140px) clamp(20px, 9vw, 140px);
    color: var(--white);
    background: var(--black);
    border-bottom: var(--line);
}

.statement .brand {
    color: var(--cherry-on-black);
}

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

.statement > p:last-child {
    max-width: 880px;
    margin-bottom: 0;
}

.collaboration {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-bottom: var(--line);
}

.collaboration-heading,
.collaboration-copy {
    padding: clamp(42px, 6vw, 90px);
}

.collaboration-heading {
    border-right: var(--line);
}

.collaboration-copy {
    background: var(--paper);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 20px;
    border: 3px solid var(--black);
    background: var(--white);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--black);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
    transform: translate(5px, 5px);
    box-shadow: none;
}

.button-inverse {
    color: var(--white);
    background: var(--black);
}

footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px clamp(20px, 4vw, 64px);
    font-size: 0.85rem;
}

footer p {
    margin: 0;
}

.copyright {
    text-align: right;
}

@media (max-width: 800px) {
    body {
        border-inline: 0;
    }

    .hero {
        min-height: auto;
    }

    .grid,
    .collaboration {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: auto;
    }

    .card + .card {
        border-top: var(--line);
        border-left: 0;
    }

    .collaboration-heading {
        border-right: 0;
        border-bottom: var(--line);
    }

    footer {
        grid-template-columns: 1fr;
    }

    .copyright {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    h1 {
        font-size: clamp(2.65rem, 15vw, 4rem);
    }

    .card-numbered {
        grid-template-columns: 1fr;
    }

    .actions,
    .button {
        width: 100%;
    }
}

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

    .button {
        transition: none;
    }
}
