:root {
    --bg: #f7f6f2;
    --paper: #fbfaf7;
    --ink: #151515;
    --muted: #67635e;
    --line: #d8d6cf;
    --dark: #111210;
    --accent: #d8ff58
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, sans-serif
}

a {
    color: inherit
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 4vw;
    background: rgba(247, 246, 242, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.brand>span:last-child {
    display: flex;
    flex-direction: column
}

.monogram {
    font-family: "Playfair Display";
    font-size: 34px
}

.brand strong {
    font-size: 13px
}

.brand small {
    font-size: 10px;
    color: var(--muted)
}

.site-header nav {
    display: flex;
    gap: 28px
}

.site-header nav a {
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase
}

.connect {
    justify-self: end;
    text-decoration: none;
    font-size: 12px
}

.section {
    padding: 85px 4vw
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr .75fr .18fr;
    gap: 36px;
    align-items: center;
    min-height: 760px
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted)
}

h1,
h2,
h3,
blockquote {
    font-family: "Playfair Display", serif;
    font-weight: 500
}

.hero h1 {
    font-size: clamp(58px, 6.6vw, 104px);
    line-height: .95;
    margin: 20px 0 30px
}

.hero-sub {
    max-width: 660px;
    font-size: 16px;
    line-height: 1.8;
    color: #56514c
}

.text-link {
    display: inline-flex;
    margin-top: 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .08em;
    border-bottom: 1px solid;
    padding-bottom: 6px
}

.hero-portrait {
    position: relative;
    height: 560px;
    background: #efeee9;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.stats div {
    padding: 28px 0;
    border-bottom: 1px solid var(--line)
}

.stats strong {
    font-family: "Playfair Display";
    font-size: 32px;
    display: block
}

.stats span {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--muted)
}

.feature {
    background: var(--dark);
    color: white;
    border-radius: 5px;
    display: grid;
    grid-template-columns: .42fr .38fr .2fr;
    gap: 20px;
    padding: 34px;
    min-height: 540px
}

.light {
    color: #aaa
}

.feature h2 {
    font-size: 48px;
    margin: 15px 0 8px
}

.feature-sub {
    font-size: 13px;
    color: #ddd
}

.feature-copy>p:not(.eyebrow):not(.feature-sub) {
    font-size: 13px;
    line-height: 1.7;
    color: #bbb
}

.feature ul {
    list-style: none;
    padding: 0
}

.feature li {
    font-size: 11px;
    color: #bbb;
    margin: 7px 0
}

.feature li:before {
    content: "→";
    margin-right: 10px;
    color: white
}

.feature-stats {
    display: flex;
    gap: 38px
}

.feature-stats strong {
    display: block;
    font-size: 20px
}

.feature-stats span,
.feature-metrics span {
    font-size: 8px;
    text-transform: uppercase;
    color: #999
}

.feature-visual {
    position: relative;
    min-height: 460px
}

.scatter i {
    position: absolute;
    border-radius: 50%;
    background: #7f63ff;
    opacity: .75
}

.scatter i.hot {
    background: #58c6ff
}

.feature-metrics {
    align-self: center;
    border: 1px solid #333;
    padding: 25px
}

.feature-metrics div {
    margin-bottom: 28px
}

.feature-metrics strong {
    font-size: 26px;
    display: block
}

.light-link {
    color: white
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 22px
}

.tile {
    border: 1px solid var(--line);
    background: var(--paper)
}

.tile-art {
    height: 210px
}

.art-one {
    background: linear-gradient(135deg, #f8f7f4 0 20%, #e2dfd7 20% 35%, #f6f4ed 35% 55%, #d7d4cc 55% 72%, #f2f0e9 72%)
}

.art-two {
    background: radial-gradient(circle at 65% 65%, #111 0 15%, transparent 16%), radial-gradient(circle, #111 1.5px, transparent 2px);
    background-size: auto, 15px 15px;
    background-color: #f3f2ed
}

.art-three {
    background: linear-gradient(135deg, #101010, #333 35%, #111 36% 50%, #777 51% 52%, #111 53%)
}

.art-four {
    background: linear-gradient(120deg, #ece9e1, #f8f7f4 40%, #d9d5cc)
}

.tile-copy {
    padding: 24px
}

.tile-copy>p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.7;
    color: #5f5a55;
    min-height: 88px
}

.tile-copy a {
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: none
}

.career-head {
    display: grid;
    grid-template-columns: .35fr .65fr;
    align-items: end;
    margin-bottom: 70px
}

.career-head h2 {
    font-size: 70px;
    line-height: .95;
    margin: 0
}

.career-row {
    display: grid;
    grid-template-columns: 60px .48fr .52fr;
    gap: 34px;
    align-items: center;
    padding: 50px 0;
    border-top: 1px solid var(--line)
}

.career-image {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display";
    font-size: 74px
}

.image-l3 {
    background: #d8d4cc
}

.image-intel {
    background: #1c1f25;
    color: white
}

.image-cod {
    background: #272727;
    color: #ddd
}

.image-digital {
    background: #c4b7a2
}

.image-mobile {
    background: #a8a39a
}

.image-award {
    background: radial-gradient(circle, #5d4827, #1b1813 60%);
    color: #d3b369
}

.career-copy h3 {
    font-size: 46px;
    margin: 10px 0 20px
}

.career-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5651;
    max-width: 520px
}

.testimonial {
    background: #dedbd2;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 140px
}

.testimonial blockquote {
    font-size: 64px;
    line-height: 1.05;
    margin: 0 auto 35px;
    max-width: 1100px
}

.testimonial p {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted)
}

.about {
    display: grid;
    grid-template-columns: .2fr .32fr .48fr;
    gap: 34px;
    align-items: center
}

.portrait-small {
    height: 160px;
    background: #cbc8c1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display";
    font-size: 48px
}

.about h2 {
    font-size: 40px;
    line-height: 1.05
}

.about p {
    font-size: 13px;
    line-height: 1.8;
    color: #5b5752
}

footer {
    padding: 32px 4vw;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #777
}

footer div {
    display: flex;
    gap: 18px
}

footer a {
    text-decoration: none
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .site-header {
        grid-template-columns: 1fr
    }

    .site-header nav,
    .connect {
        display: none
    }

    .hero {
        grid-template-columns: 1fr
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .feature {
        grid-template-columns: 1fr
    }

    .tile-grid {
        grid-template-columns: 1fr 1fr
    }

    .career-head,
    .career-row,
    .about {
        grid-template-columns: 1fr
    }

    .testimonial blockquote {
        font-size: 44px
    }
}

@media(max-width:600px) {
    .section {
        padding: 65px 5vw
    }

    .hero h1 {
        font-size: 50px
    }

    .tile-grid {
        grid-template-columns: 1fr
    }

    .feature-wrap {
        padding-left: 0;
        padding-right: 0
    }

    .feature {
        border-radius: 0
    }

    .career-head h2 {
        font-size: 48px
    }
}