
    :root {
        --paper: #f5f4ef;
        --ink: #111111;
        --muted: #6b6b6b;
        --line: rgba(17, 17, 17, 0.12);
        --soft: #f1f1ee;
    }

    * {
        box-sizing: border-box;
    }

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

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -2;
        background:
            linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px),
            radial-gradient(circle at 20% 20%, rgba(0, 0, 0, .03), transparent 28%),
            radial-gradient(circle at 80% 35%, rgba(0, 0, 0, .025), transparent 25%);
        background-size: 36px 36px, 36px 36px, auto, auto;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        opacity: .18;
        background-image: url("data:image/svg+xml,%3Csvg width='900' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120 C160 40 250 190 400 100 C560 10 620 200 780 100 C850 60 900 80 940 100' fill='none' stroke='%23000' stroke-width='1' opacity='.28'/%3E%3Cpath d='M-40 260 C130 180 250 310 420 210 C590 100 650 340 820 230 C900 180 960 210 1000 230' fill='none' stroke='%23000' stroke-width='1' opacity='.22'/%3E%3Cpath d='M-20 390 C150 320 250 440 430 340 C620 240 700 470 880 360 C940 320 1000 340 1040 370' fill='none' stroke='%23000' stroke-width='1' opacity='.18'/%3E%3C/svg%3E");
        background-size: cover;
        background-repeat: repeat-y;
    }



    .container {
        width: min(1180px, calc(100% - 48px));
        margin: 0 auto;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 34px 0;
        position: relative;
        z-index: 10;
    }

    .logo {
        font-family: "Playfair Display", serif;
        font-size: clamp(36px, 5vw, 62px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -2px;
    }

    .nav-links {
        display: flex;
        gap: 28px;
        align-items: center;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .nav-links a {
        color: var(--ink);
        text-decoration: none;
    }

    .btn-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(17, 17, 17, .12);
        border-radius: 999px;
        padding: 10px 18px;
        background: transparent;
        color: var(--ink);
        text-decoration: none;
        font-size: 13px;
        font-weight: 900;
        transition: .2s ease;
        cursor: pointer;
    }

    .btn-pill:hover {
        background: rgba(17, 17, 17, .06);
        color: var(--ink);
    }

    .hero {
        min-height: 78vh;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 52px;
        padding: 48px 0 80px;
        position: relative;
    }

    .kicker {
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .14em;
        margin-bottom: 18px;
    }

    .hero-title {
        font-family: "Anton", sans-serif;
        font-size: clamp(70px, 12vw, 168px);
        line-height: 1.02;
        letter-spacing: -2px;
        text-transform: uppercase;
        margin: 0;
    }

    .gradient-text {
        color: var(--ink);
    }

    .hero-copy {
        max-width: 620px;
        font-family: Georgia, serif;
        font-size: clamp(20px, 2.2vw, 31px);
        line-height: 1.12;
        margin: 34px 0;
    }

    .hero-art {
        position: relative;
        min-height: 520px;
        display: grid;
        place-items: center;
    }

    .line-art-card {
        width: 100%;
        max-width: 470px;
        aspect-ratio: 1 / 1;
        border: none;
        border-radius: 50%;
        display: grid;
        place-items: center;
        position: relative;
        background: rgba(255, 255, 255, .25);
    }

    .line-art-card::before,
    .line-art-card::after {
        content: "";
        position: absolute;
        border: 2px solid var(--ink);
        border-radius: 50%;
    }

    .line-art-card::before {
        width: 74%;
        height: 74%;
        opacity: .6;
    }

    .line-art-card::after {
        width: 38%;
        height: 38%;
        opacity: .8;
    }

    .doodle {
        position: absolute;
        color: var(--ink);
        font-size: 110px;
        line-height: 1;
        font-weight: 300;
    }

    .doodle.one {
        top: 40px;
        left: 0;
        transform: rotate(-12deg);
    }

    .doodle.two {
        right: -8px;
        bottom: 40px;
        transform: rotate(14deg);
    }

    .doodle.three {
        left: 24px;
        bottom: 120px;
        font-size: 70px;
    }

    .section {
        padding: 92px 0;
        position: relative;
    }

    .section-title {
        font-family: "Anton", sans-serif;
        font-size: clamp(58px, 8vw, 118px);
        line-height: 1.06;
        text-transform: uppercase;
        margin: 0 0 36px;
        letter-spacing: -1px;
    }

    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: end;
    }

    .intro-text {
        font-family: Georgia, serif;
        font-size: clamp(21px, 2.3vw, 30px);
        line-height: 1.13;
    }

    .scribble-box {
        min-height: 380px;
        border: 2px solid var(--ink);
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, .25);
    }

    .scribble-box svg {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
    }

    .clients {
        background: #fffdf5;
        border: none;
    }

    .client-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
    }

    .client-card {
        min-height: 92px;
        border: none;
        display: grid;
        place-items: center;
        font-weight: 900;
        font-size: 20px;
        background: var(--paper);
    }

    .work-section {
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .work-section::before {
        content: "";
        position: absolute;
        width: 540px;
        height: 540px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .03);
        top: -120px;
        right: -160px;
        filter: blur(10px);
    }

    .work-title {
        font-family: "Anton", sans-serif;
        font-size: clamp(54px, 9vw, 130px);
        line-height: 1.02;
        text-align: left;
        text-transform: uppercase;
        margin: 0 auto 72px;
        max-width: 760px;
        position: relative;
        z-index: 2;
    }

    .work-top {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 40px;
        margin-bottom: 70px;
        position: relative;
        z-index: 2;
    }

    .work-intro {
        max-width: 360px;
        font-size: 16px;
        line-height: 1.7;
        color: var(--muted);
    }

    .work-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 26px;
        align-items: stretch;
        position: relative;
        z-index: 2;
    }

    .work-card.large {
        grid-column: span 7;
    }

    .work-card.medium {
        grid-column: span 5;
    }

    .work-card.small {
        grid-column: span 4;
    }

    .work-card.wide {
        grid-column: span 8;
    }

    .work-image {
        width: 100%;
        aspect-ratio: 16 / 11;
        object-fit: cover;
        filter: grayscale(.1) contrast(1.02);
        transition: .3s ease;
    }

    .work-card {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, .38);
        backdrop-filter: blur(4px);
    }

    .work-card:hover .work-image {
        transform: scale(1.03);
    }

    .work-content {
        padding-top: 16px;
    }

    .work-category {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .18em;
        font-weight: 800;
        color: var(--muted);
        margin-bottom: 10px;
    }

    .work-heading {
        font-family: "Anton", sans-serif;
        text-transform: uppercase;
        font-size: clamp(24px, 3vw, 42px);
        line-height: 1.08;
        margin-bottom: 12px;
    }

    .work-description {
        color: var(--muted);
        line-height: 1.7;
        max-width: 90%;
        font-size: 14px;
    }

    .work-label {
        display: none;
    }

    .work-card {
        cursor: pointer;
    }

    .work-card .work-image {
        display: block;
        border-radius: 0;
        margin-bottom: 16px;
    }

    .work-card .work-content {
        padding: 0 0 8px;
    }

    .work-card:hover .work-heading {
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 6px;
    }

    .enquiry-section {
        padding: 96px 0 112px;
        background: #fffdf5;
        position: relative;
        overflow: hidden;
    }

    .enquiry-section::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border: 1px solid rgba(17, 17, 17, .12);
        border-radius: 50%;
        top: -240px;
        right: -180px;
    }

    .enquiry-wrap {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 56px;
        align-items: start;
        position: relative;
        z-index: 2;
    }

    .enquiry-copy p {
        font-family: Georgia, serif;
        font-size: clamp(20px, 2vw, 28px);
        line-height: 1.22;
        margin: 0 0 24px;
        max-width: 520px;
    }

    .enquiry-meta {
        display: grid;
        gap: 12px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.5;
    }

    .enquiry-form {
        background: var(--paper);
        border: 2px solid var(--ink);
        padding: 32px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-field {
        display: grid;
        gap: 8px;
    }

    .form-field.full {
        grid-column: 1 / -1;
    }

    .form-field label {
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .12em;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        width: 100%;
        border: 1px solid rgba(17, 17, 17, .18);
        background: #fffdf5;
        color: var(--ink);
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        padding: 14px 14px;
        outline: none;
    }

    .form-field textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
        border-color: var(--ink);
    }

    .form-actions {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .form-status {
        font-size: 13px;
        font-weight: 700;
        color: var(--muted);
    }


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

    .achievement-card {
        border: 2px solid var(--ink);
        padding: 28px;
        min-height: 180px;
        background: rgba(255, 255, 255, .34);
    }

    .achievement-number {
        font-family: "Anton", sans-serif;
        font-size: 64px;
        line-height: 1;
        color: var(--ink);
    }

    .achievement-text {
        font-weight: 900;
        text-transform: uppercase;
        margin-top: 16px;
    }

    .cta {
        text-align: center;
        padding: 110px 0;
    }

    .cta h2 {
        font-family: "Anton", sans-serif;
        font-size: clamp(56px, 9vw, 126px);
        line-height: 1.04;
        text-transform: uppercase;
        margin: 0 auto 28px;
        max-width: 960px;
        background: linear-gradient(90deg, var(--blue), var(--violet));
        -webkit-background-clip: text;
        /*      color: transparent;*/
    }

    .footer {
        background: #111111;
        color: #f5f4ef;
        padding: 84px 0 36px;
    }

    .footer-hash {
        font-family: "DM Sans", sans-serif;
        font-size: clamp(42px, 7vw, 90px);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 58px;
    }

    .footer-hash span:first-child {
        color: #d1d1d1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 38px;
        font-size: 14px;
    }

    .footer h4 {
        font-size: 14px;
        text-transform: uppercase;
        margin: 0 0 16px;
    }

    .footer p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        line-height: 1.5;
    }

    .footer-bottom {
        margin-top: 60px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, .12);
        display: flex;
        justify-content: space-between;
        color: rgba(255, 255, 255, .72);
        font-size: 12px;
    }

    @media (max-width: 980px) {
        .container {
            width: min(100% - 32px, 920px);
        }

        .hero,
        .intro-grid,
        .enquiry-wrap {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero {
            min-height: auto;
            padding: 20px 0 60px;
        }

        .hero-title {
            font-size: clamp(58px, 12vw, 110px);
        }

        .hero-copy {
            max-width: 100%;
        }

        .hero-art {
            min-height: 360px;
        }

        .client-grid {
            grid-template-columns: repeat(3, 1fr);
        }

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

        .work-card.large,
        .work-card.medium,
        .work-card.small,
        .work-card.wide {
            grid-column: auto;
        }

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

    @media (max-width: 640px) {
        .container {
            width: min(100% - 22px, 100%);
        }

        .nav {
            padding: 22px 0;
            align-items: center;
        }

        .logo {
            font-size: 38px;
        }

        .nav-links {
            display: none;
        }

        .hero {
            min-height: auto;
            gap: 28px;
            padding: 12px 0 42px;
        }

        .hero-title {
            font-size: clamp(54px, 18vw, 78px);
            line-height: .95;
        }

        .hero-copy {
            font-size: 18px;
            line-height: 1.45;
            margin: 22px 0;
        }

        .hero-art {
            min-height: 240px;
        }

        .line-art-card {
            max-width: 260px;
        }

        .section {
            padding: 58px 0;
        }

        .section-title,
        .work-title,
        .cta h2 {
            font-size: clamp(44px, 15vw, 72px);
            line-height: 1;
        }

        .intro-grid {
            gap: 30px;
        }

        .intro-text {
            font-size: 18px;
            line-height: 1.6;
        }

        .scribble-box {
            min-height: 240px;
        }

        .client-grid,
        .work-grid,
        .achievements,
        .footer-grid {
            grid-template-columns: 1fr;
        }

        .client-card {
            min-height: 76px;
            padding: 18px;
        }

        .work-top {
            display: block;
            margin-bottom: 34px;
        }

        .work-title {
            margin-bottom: 18px;
        }

        .work-intro {
            max-width: 100%;
        }

        .work-description {
            max-width: 100%;
        }

        .achievement-card {
            min-height: auto;
        }

        .achievement-number {
            font-size: 48px;
        }

        .cta {
            padding: 70px 0;
        }

        .footer {
            padding: 60px 0 28px;
        }

        .footer-hash {
            margin-bottom: 36px;
        }

        .enquiry-section {
            padding: 60px 0 70px;
        }

        .enquiry-form {
            grid-template-columns: 1fr;
            padding: 22px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 12px;
        }
    }
.client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.client-card {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 18px;
    background: var(--paper, #fffdf5);
}

.client-logo {
    width: 100%;
    max-width: 130px;
    height: 56px;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-card {
        min-height: 84px;
        padding: 14px;
    }
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 20px 0;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.footer-bottom span {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

.social-links i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}