:root {
    --black: #0d0d0d;
    --white: #fff;
    --off: #f5f5f3;
    --red: #c1121f;
    --muted: #717171;
    --line: rgba(13, 13, 13, .14);
    --max: 1380px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--off);
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit
}

.site {
    position: relative;
    isolation: isolate
}

.site:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    background: linear-gradient(rgba(13, 13, 13, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 13, 13, .026) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none
}

.site:after {
    content: "";
    position: fixed;
    width: 520px;
    height: 520px;
    right: -170px;
    top: -210px;
    border: 78px solid rgba(193, 18, 31, .055);
    transform: rotate(45deg);
    z-index: -2;
    pointer-events: none
}

.container {
    width: min(calc(100% - 64px), var(--max));
    margin: 0 auto
}

.topbar {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--line)
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .22em
}

.brand svg {
    width: 29px;
    height: 29px;
    color: var(--red)
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none
}

.nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #3b3b3b;
    transition: .18s ease
}

.nav a:hover {
    color: var(--red)
}

.nav-cta {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid var(--black);
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--black);
    transition: .2s ease;
}

.menu-toggle span {
    transform: translateY(0);
}

.menu-toggle:before {
    transform: translateY(-6px);
}

.menu-toggle:after {
    transform: translateY(6px);
}

.menu-toggle.active span {
    opacity: 0;
}

.menu-toggle.active:before {
    transform: rotate(45deg);
}

.menu-toggle.active:after {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    align-items: center;
    gap: clamp(48px, 7vw, 120px);
    padding: 90px 0 80px;
    position: relative
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 24px
}

.eyebrow:before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--red)
}

h1 {
    max-width: 900px;
    font-size: clamp(58px, 8vw, 124px);
    line-height: .9;
    letter-spacing: -.06em;
    text-transform: uppercase;
    font-weight: 900
}

h1 span {
    display: block;
    color: var(--red)
}

.hero-copy {
    max-width: 650px;
    margin-top: 34px;
    color: #3d3d3d;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.6
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.btn {
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    transition: .18s ease;
    border: 1px solid var(--black)
}

.btn-primary {
    background: var(--black);
    color: var(--white)
}

.btn-primary:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px)
}

.btn-secondary {
    background: transparent
}

.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px)
}

.hero-mark {
    min-height: 540px;
    position: relative;
    display: grid;
    place-items: center
}

.hero-mark .giant-a {
    position: absolute;
    width: min(38vw, 520px);
    color: rgba(13, 13, 13, .055)
}

.hero-mark-card {
    position: relative;
    width: min(100%, 440px);
    padding: 30px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(8px)
}

.hero-mark-card .small {
    color: var(--red);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 14px
}

.hero-mark-card strong {
    display: block;
    font-size: clamp(28px, 3vw, 28px);
    line-height: 1;
    text-transform: uppercase
}

.hero-mark-card strong span {
    color: var(--red)
}

.hero-mark-card p {
    margin-top: 20px;
    color: #555;
    line-height: 1.55;
    font-size: 14px
}

section {
    padding: 110px 0;
    border-top: 1px solid var(--line)
}

.section-head {
    display: block;
    margin-bottom: 64px
}

.section-kicker {
    color: var(--red);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: 12px
}

h2 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: .96;
    text-transform: uppercase;
    letter-spacing: -.04em
}

.section-intro {
    max-width: 650px;
    margin-top: 24px;
    color: #484848;
    font-size: 17px;
    line-height: 1.65;
    padding-top: 0
}

.section-para {
    margin-top: 12px;
    color: #484848;
    font-size: 17px;
    line-height: 1.65;
    padding-top: 0
}

.section-title {
    color: var(--red);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: 12px;
    margin-top: 17px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, .35)
}

.service {
    min-height: 190px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.service-num {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 40px
}

.service h3 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 12px
}

.service p {
    color: #5b5b5b;
    font-size: 14px;
    line-height: 1.55
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.project-card {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    transition: .2s ease;
    overflow: hidden
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193, 18, 31, .5)
}

.project-visual {
    aspect-ratio: 4/3;
    display: grid;
    place-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    overflow: hidden
}

.project-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px
}

.project-placeholder {
    color: #8b8b8b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-align: center;
    padding: 24px
}

.project-body {
    padding: 24px
}

.project-index {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 10px
}

.project-body h3 {
    font-size: 23px;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 14px
}

.project-meta {
    color: #646464;
    font-size: 13px;
    line-height: 1.55
}

.portfolio-cta {
    margin-top: 36px;
    display: flex;
    justify-content: flex-start
}

.workflow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 44px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.workflow-step {
    min-height: 210px;
    padding: 26px 24px;
    border-right: 1px solid var(--line)
}

.workflow-step:last-child {
    border-right: 0
}

.workflow-step .n {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 52px
}

.workflow-step h3 {
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.workflow-step p {
    color: #5f5f5f;
    font-size: 13px;
    line-height: 1.5
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.why-item {
    padding: 24px 20px;
    border-top: 2px solid var(--red);
    background: rgba(255, 255, 255, .55);
    min-height: 150px
}

.why-item strong {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px
}

.why-item p {
    color: #5d5d5d;
    font-size: 13px;
    line-height: 1.5
}

.contact {
    padding-bottom: 74px
}

.contact-box {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
    padding: 48px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.contact-box:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -110px;
    bottom: -170px;
    border: 54px solid rgba(193, 18, 31, .24);
    transform: rotate(45deg)
}

.contact-box h2 {
    color: var(--white);
    max-width: 750px;
    position: relative;
    z-index: 1
}

.contact-box h2 span {
    color: var(--red)
}

.contact-copy {
    margin-top: 22px;
    max-width: 620px;
    color: #c8c8c8;
    line-height: 1.6;
    position: relative;
    z-index: 1
}

.contact-details {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px
}

.contact-row {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .22)
}

.contact-row span {
    display: block;
    color: #999;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    margin-bottom: 6px
}

.contact-row a,
.contact-row strong {
    font-size: 16px;
    text-decoration: none;
    color: var(--white)
}

footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 32px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

footer strong {
    color: var(--black)
}

@media(max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .work-grid {
        grid-template-columns: 1fr 1fr
    }

    .workflow {
        grid-template-columns: 1fr
    }

    .workflow-step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        min-height: auto
    }

    .workflow-step:last-child {
        border-bottom: 0
    }

    .workflow-step .n {
        margin-bottom: 24px
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {
    .container {
        width: min(calc(100% - 40px), var(--max))
    }

    .nav {
        display: none
    }

    .menu-toggle {
        display: inline-flex
    }

    .mobile-nav {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        z-index: 15;
        background: rgba(245, 245, 243, .98);
        border-bottom: 1px solid var(--line);
        padding: 10px 20px 18px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
    }

    .mobile-nav.open {
        display: grid;
    }

    .mobile-nav a {
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .14em;
        padding: 16px 10px;
        border-bottom: 1px solid var(--line);
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 72px 0
    }

    .hero-mark {
        display: none;
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 34px
    }
}

@media(max-width:650px) {
    .container {
        width: min(calc(100% - 28px), var(--max))
    }

    .topbar {
        min-height: 74px
    }

    .mobile-nav {
        top: 74px;
    }

    .brand {
        font-size: 15px
    }

    h1 {
        font-size: clamp(52px, 18vw, 82px)
    }

    section {
        padding: 78px 0
    }

    .services-grid,
    .work-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .hero-mark-card {
        padding: 24px
    }

    .contact-box {
        padding: 28px 22px
    }
}