:root {
    --ink: #1b1b1b;
    --paper: #f4f1eb;
    --lime: #d5eb4e;
    --pink: #f06d85;
    --line: #d0cdc4
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif
}

.wrap {
    max-width: 1280px;
    margin: auto;
    padding-left: 42px;
    padding-right: 42px
}

.nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2
}

.brand {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -1.3px;
    text-decoration: none;
    color: inherit
}

.brand i {
    font-family: "Playfair Display";
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -1px
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 31px;
    font-size: 13px
}

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

.nav-cta,
.button {
    background: var(--ink);
    color: var(--paper) !important;
    padding: 12px 16px;
    border: 0;
    border-radius: 100px;
    font: inherit;
    cursor: pointer
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font: inherit
}

.hero {
    min-height: 690px;
    position: relative;
    padding-top: 74px;
    padding-bottom: 58px
}

.eyebrow,
.section-label,
.article-meta,
.admin-kicker {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: .09em
}

.eyebrow {
    display: flex;
    gap: 8px;
    align-items: center
}

.eyebrow span {
    width: 7px;
    height: 7px;
    background: var(--pink);
    border-radius: 50%
}

.hero h1 {
    font-size: clamp(62px, 9.5vw, 143px);
    line-height: .85;
    letter-spacing: -.085em;
    font-weight: 600;
    margin: 78px 0 48px;
    max-width: 1000px
}

.hero h1 em,
h2 em {
    font-family: "Playfair Display";
    font-weight: 500;
    letter-spacing: -.075em
}

.hero-bottom {
    max-width: 710px;
    margin-left: auto
}

.hero-bottom p {
    font-size: 17px;
    line-height: 1.5;
    max-width: 390px;
    margin: 0
}

.hero-stamp {
    position: absolute;
    right: 42px;
    bottom: 55px;
    width: 134px;
    height: 134px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: background .28s, color .28s, transform .28s, box-shadow .28s
}

.hero-stamp b {
    font-family: "Playfair Display";
    font-size: 48px;
    line-height: 1;
    transition: transform .28s
}

.hero-stamp span {
    position: absolute;
    inset: 8px;
    display: grid;
    place-items: start center;
    font: 9px "DM Mono";
    letter-spacing: 3px;
    transform: rotate(-52deg);
    animation: spin 18s linear infinite
}

.hero-stamp small {
    position: absolute;
    bottom: 28px;
    font: 8px "DM Mono";
    letter-spacing: .08em;
    opacity: 0;
    transform: translateY(6px);
    transition: .2s
}

.hero-stamp:hover,
.hero-stamp:focus-visible {
    background: var(--ink);
    color: var(--lime);
    transform: scale(1.07);
    box-shadow: 7px 7px 0 var(--pink);
    outline: none
}

.hero-stamp:hover b,
.hero-stamp:focus-visible b {
    transform: translateY(-10px)
}

.hero-stamp:hover small,
.hero-stamp:focus-visible small {
    opacity: 1;
    transform: translateY(0)
}

@keyframes spin {
    to {
        transform: rotate(308deg)
    }
}

.manifesto {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 50px;
    padding-top: 145px;
    padding-bottom: 145px;
    border-top: 1px solid var(--line)
}

.manifesto-copy h2,
.method h2,
.blog-preview h2 {
    font-size: clamp(38px, 5.35vw, 76px);
    line-height: .96;
    letter-spacing: -.06em;
    margin: 0
}

.manifesto-copy p {
    margin: 52px 0 0;
    max-width: 480px;
    font-size: 17px;
    line-height: 1.55
}

.services {
    background: var(--ink);
    color: var(--paper);
    padding: 118px 0
}

.section-head {
    display: flex;
    justify-content: space-between
}

.section-head h2 {
    font-size: clamp(47px, 7vw, 102px);
    line-height: .85;
    letter-spacing: -.075em;
    margin: 70px 0 0
}

.service-list {
    margin-top: 98px;
    border-top: 1px solid #565656
}

.service {
    display: grid;
    grid-template-columns: 70px 1fr 30px;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid #565656;
    align-items: start;
    transition: .2s
}

.service:hover {
    padding-left: 16px;
    color: var(--lime)
}

.service>span,
.pillars b {
    font: 10px "DM Mono";
    padding-top: 6px
}

.service h3 {
    font-size: 28px;
    letter-spacing: -.04em;
    margin: 0
}

.service p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 510px;
    margin: 12px 0 0;
    color: #bbb
}

.service>b {
    font-size: 23px;
    font-weight: 400
}

.method {
    padding-top: 140px;
    padding-bottom: 140px
}

.method-title {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin: 62px 0 105px
}

.method-title p {
    font-size: 17px;
    line-height: 1.55;
    max-width: 370px;
    align-self: end;
    margin: 0
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ink)
}

.pillars>div {
    padding: 23px 28px 0 0;
    min-height: 210px;
    border-right: 1px solid var(--ink)
}

.pillars>div+div {
    padding-left: 28px
}

.pillars>div:last-child {
    border: 0
}

.pillars h3 {
    font-size: 24px;
    letter-spacing: -.04em;
    margin: 55px 0 11px
}

.pillars p {
    font-size: 14px;
    line-height: 1.45;
    max-width: 300px;
    margin: 0
}

.statement {
    background: var(--lime);
    padding: 93px 0
}

.statement .wrap {
    display: flex;
    justify-content: space-between;
    align-items: start
}

.statement p {
    font: clamp(31px, 4.8vw, 64px)/.99 "Playfair Display";
    letter-spacing: -.055em;
    max-width: 940px;
    margin: 0
}

.statement span {
    font-size: 40px
}

.blog-preview {
    padding-top: 140px;
    padding-bottom: 145px
}

.text-link,
.article,
.blog-nav a,
.blog-footer a {
    font-size: 13px;
    color: inherit;
    text-decoration: none
}

.blog-preview>h2 {
    margin: 58px 0 74px
}

.article-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.article-visual,
.blog-cover {
    height: 230px;
    position: relative;
    padding: 17px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.article-1 .article-visual,
.c0 {
    background: var(--pink)
}

.article-2 .article-visual,
.c1 {
    background: #c6c0b7
}

.article-3 .article-visual,
.c2 {
    background: #adbbdf
}

.article-visual span,
.blog-cover small {
    font: 10px "DM Mono";
    text-transform: uppercase
}

.article-visual b,
.blog-cover b {
    font: 80px "Playfair Display";
    line-height: .75
}

.article-meta {
    margin: 21px 0 10px
}

.article h3 {
    font-size: 22px;
    line-height: 1.06;
    letter-spacing: -.04em;
    margin: 0
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.45;
    margin: 13px 0;
    color: #555
}

.read {
    font-size: 13px;
    display: inline-block;
    margin-top: 7px
}

.faq {
    padding-top: 135px;
    padding-bottom: 135px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px
}

.faq-heading h2 {
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: .9;
    letter-spacing: -.07em;
    margin: 54px 0 33px
}

.faq-heading>p:last-child {
    max-width: 310px;
    font-size: 15px;
    line-height: 1.5
}

.faq-list {
    border-top: 1px solid var(--ink)
}

.faq-item {
    border-bottom: 1px solid var(--ink)
}

.faq-item button {
    width: 100%;
    display: grid;
    grid-template-columns: 45px 1fr 28px;
    gap: 12px;
    align-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 22px 0;
    text-align: left;
    cursor: pointer;
    font: inherit
}

.faq-item button span {
    font: 10px "DM Mono"
}

.faq-item button strong {
    font-size: 18px;
    letter-spacing: -.025em;
    font-weight: 500
}

.faq-item button b {
    font-size: 25px;
    font-weight: 400;
    text-align: right
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    max-width: 600px;
    font-size: 15px;
    line-height: 1.55;
    color: #555
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr
}

.faq-item.active .faq-answer p {
    padding: 0 42px 24px 57px
}

.contact {
    background: var(--pink);
    padding: 118px 0 28px
}

.contact h2 {
    font-size: clamp(48px, 7vw, 100px);
    line-height: .86;
    letter-spacing: -.075em;
    margin: 75px 0
}

.contact-link {
    color: inherit;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 9px
}

.footer-row {
    border-top: 1px solid rgba(27, 27, 27, .55);
    margin-top: 120px;
    padding-top: 18px;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    font-size: 12px
}

.footer-row span {
    margin-right: auto
}

.footer-row a {
    color: inherit;
    text-decoration: none
}

.blog-page {
    min-height: 100vh
}

.blog-nav,
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5vw;
    border-bottom: 1px solid var(--line);
    font-size: 12px
}

.blog-hero {
    padding: 106px 5vw 80px;
    border-bottom: 1px solid var(--line)
}

.blog-hero>p {
    font: 10px "DM Mono";
    letter-spacing: .09em
}

.blog-hero h1 {
    font-size: clamp(58px, 9vw, 130px);
    line-height: .85;
    letter-spacing: -.08em;
    margin: 47px 0 35px
}

.blog-grid {
    padding: 72px 5vw 120px;
    gap: 66px 25px
}

.blog-card {
    border-top: 1px solid var(--ink);
    padding-top: 13px
}

.blog-cover {
    height: 205px
}

.post-date {
    font: 10px "DM Mono";
    text-transform: uppercase;
    margin: 18px 0 10px
}

.blog-card h2 {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -.045em;
    margin: 0
}

.blog-card>p:not(.post-date) {
    font-size: 14px;
    line-height: 1.45;
    color: #5a5853
}

.blog-footer {
    background: var(--ink);
    color: var(--paper);
    border-color: #555
}

.article-page {
    min-height: 100vh
}

.article-shell {
    max-width: 1100px;
    margin: auto;
    padding: 90px 28px 130px
}

.article-intro {
    max-width: 970px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 54px
}

.article-tag,
.article-byline {
    font: 10px "DM Mono";
    letter-spacing: .07em
}

.article-intro h1 {
    font-size: clamp(49px, 7.1vw, 102px);
    line-height: .87;
    letter-spacing: -.08em;
    margin: 40px 0
}

.article-lead {
    max-width: 670px;
    font: clamp(20px, 2.2vw, 27px)/1.3 "Playfair Display";
    letter-spacing: -.025em
}

.article-body {
    max-width: 670px;
    margin: 65px auto 0
}

.article-body p {
    font-size: 18px;
    line-height: 1.62;
    margin: 0 0 25px;
    white-space: pre-line
}

.article-cta {
    background: var(--lime);
    padding: 32px;
    margin-top: 60px
}

.article-cta p {
    font: 25px/1.08 "Playfair Display";
    margin-bottom: 28px
}

.article-cta a {
    color: inherit;
    font-size: 14px
}

.admin {
    min-height: 100vh;
    background: #e9e5dd
}

.admin header {
    height: 76px;
    padding: 0 5vw;
    border-bottom: 1px solid #bdb9af;
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 12px
}

.admin header span {
    margin-left: auto;
    color: #666
}

.admin header a {
    color: inherit;
    text-decoration: none
}

.admin-content {
    max-width: 800px;
    margin: auto;
    padding: 88px 26px
}

.admin h1 {
    font-size: clamp(50px, 7vw, 94px);
    line-height: .85;
    letter-spacing: -.08em;
    margin: 28px 0
}

.admin h1 em {
    font-family: "Playfair Display";
    font-weight: 500
}

.admin-intro {
    font-size: 16px;
    line-height: 1.5;
    max-width: 510px;
    margin-bottom: 52px
}

.admin form {
    border-top: 1px solid var(--ink);
    padding-top: 24px
}

.admin label {
    display: block;
    font-size: 13px;
    margin: 0 0 22px
}

.admin input,
.admin textarea,
.admin select {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid #929088;
    background: transparent;
    outline: none;
    color: var(--ink);
    font: 16px "DM Sans"
}

.admin textarea {
    resize: vertical;
    line-height: 1.5
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.notice {
    padding: 13px 16px;
    background: #d5eb4e;
    font-size: 14px
}

.error {
    background: #ffdbe1
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 38px 0
}

.table th,
.table td {
    border-bottom: 1px solid #bdb9af;
    padding: 13px 8px;
    text-align: left;
    font-size: 14px
}

.table th {
    font: 10px "DM Mono";
    letter-spacing: .08em
}

.text-button {
    color: inherit;
    background: none;
    border: 0;
    border-bottom: 1px solid;
    cursor: pointer;
    font: inherit;
    padding: 0
}

.auth-box {
    max-width: 460px;
    margin: 10vh auto;
    padding: 32px
}

.auth-box h1 {
    font-size: 52px
}

.muted {
    color: #666;
    font-size: 14px;
    line-height: 1.5
}

@media(max-width:700px) {
    .wrap {
        padding-left: 22px;
        padding-right: 22px
    }

    .nav {
        height: 68px
    }

    .menu-toggle {
        display: block
    }

    .nav nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 67px;
        padding: 20px 22px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start
    }

    .nav nav.open {
        display: flex
    }

    .hero {
        min-height: 620px;
        padding-top: 50px
    }

    .hero h1 {
        margin: 70px 0 45px;
        font-size: 61px
    }

    .hero-bottom p {
        font-size: 15px;
        max-width: 255px
    }

    .hero-stamp {
        right: 22px;
        bottom: 35px;
        width: 92px;
        height: 92px
    }

    .hero-stamp b {
        font-size: 36px
    }

    .hero-stamp small {
        bottom: 18px;
        font-size: 6px
    }

    .hero-stamp span {
        font-size: 7px;
        letter-spacing: 2px
    }

    .manifesto,
    .faq,
    .method-title {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .manifesto,
    .services,
    .method,
    .blog-preview {
        padding-top: 84px;
        padding-bottom: 84px
    }

    .manifesto-copy p {
        margin-top: 35px
    }

    .service-list {
        margin-top: 63px
    }

    .service {
        grid-template-columns: 33px 1fr 20px
    }

    .service h3 {
        font-size: 23px
    }

    .method-title {
        margin: 50px 0 65px
    }

    .pillars,
    .article-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .pillars>div,
    .pillars>div+div {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
        min-height: auto
    }

    .pillars h3 {
        margin: 31px 0 8px
    }

    .statement {
        padding: 65px 0
    }

    .article-grid {
        gap: 42px
    }

    .contact {
        padding-top: 85px
    }

    .contact h2 {
        margin: 53px 0
    }

    .footer-row {
        margin-top: 85px;
        gap: 13px;
        flex-wrap: wrap
    }

    .footer-row span {
        width: 100%;
        margin-bottom: 12px
    }

    .faq {
        padding-top: 84px;
        padding-bottom: 84px
    }

    .faq-item button {
        grid-template-columns: 30px 1fr 18px
    }

    .faq-item button strong {
        font-size: 16px
    }

    .faq-item.active .faq-answer p {
        padding-left: 30px
    }

    .blog-grid {
        padding-top: 55px;
        gap: 48px
    }

    .blog-hero {
        padding-top: 78px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .admin header {
        gap: 13px
    }

    .admin header span {
        display: none
    }

    .admin-content {
        padding-top: 65px
    }

    .article-shell {
        padding-top: 65px;
        padding-bottom: 85px
    }

    .article-body {
        margin-top: 48px
    }

    .article-body p {
        font-size: 16px
    }
}