@font-face {
    font-family: "Knockout-HTF48-Featherweight";
    src: url("assets/fonts/knockout_featherweight/Knockout-HTF48-Featherweight-TrueType.woff2")
        format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gabriel Sans";
    src: url("assets/fonts/gabriel_sans/Gabriel-Sans-Medium.woff2")
        format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gabriel Sans";
    src: url("assets/fonts/gabriel_sans/Gabriel-Sans-Bold.woff2")
        format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("assets/fonts/inter/Inter-VariableFont.ttf")
        format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url("assets/fonts/inter/Inter-Italic-VariableFont.ttf")
        format("truetype-variations");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
:root {
    --forest: #02483a;
    --blue: #7db1ed;
    --ink: #1a1f26;
    --sage: #e3ea9d;
    --paper: #f7f5f0;
    --warm: #f0ece4;
    --display: "Knockout-HTF48-Featherweight", "Arial Narrow", sans-serif;
    --label: "Gabriel Sans", Arial, sans-serif;
    --body: "Inter", sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.6;
}
body.menu-open {
    overflow: hidden;
}
img,
svg {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}
button {
    font: inherit;
}
::selection {
    background: var(--blue);
    color: var(--ink);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--ink);
    color: white;
    transform: translateY(-150%);
}
.skip-link:focus {
    transform: none;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 48px;
    transition:
        padding 0.3s,
        background 0.3s,
        box-shadow 0.3s;
}
.site-header.is-scrolled {
    padding-block: 14px;
    background: rgba(247, 245, 240, 0.9);
    box-shadow: 0 1px 0 rgba(26, 31, 38, 0.08);
    backdrop-filter: blur(12px);
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.brand img {
    width: 44px;
    height: 44px;
}
.brand__words {
    display: flex;
    height: 44px;
    flex-direction: column;
    justify-content: flex-start;
}
.brand__words > span {
    font: 500 28px/1 var(--display);
    letter-spacing: 0.01em;
}
.brand__words small {
    font: 500 10px/1 var(--label);
    letter-spacing: 1.77px;
    margin-top: 2px;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.site-nav > a:not(.button) {
    font: 500 14px var(--label);
    text-decoration: none;
}
.site-nav > a:hover {
    color: var(--forest);
}
.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px;
}
.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px;
    background: var(--ink);
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    padding: 16px 30px;
    background: var(--forest);
    box-shadow: 0 10px 24px rgba(2, 72, 58, 0.2);
    color: var(--paper);
    font: 500 15px var(--label);
    text-decoration: none;
    transition:
        transform 0.2s,
        background 0.2s,
        border-color 0.2s;
}
.icon {
    width: 1.1em;
    height: 1.1em;
    flex: none;
    overflow: visible;
}
.icon--badge {
    width: 14px;
    height: 14px;
}
.button:hover {
    background: var(--ink);
    transform: translateY(-2px);
}
.button--small {
    padding: 12px 24px;
    box-shadow: none;
    font-size: 14px;
}
.button--outline {
    border: 1.5px solid rgba(26, 31, 38, 0.28);
    background: transparent;
    box-shadow: none;
    color: var(--ink);
}
.button--outline:hover {
    border-color: var(--ink);
    background: transparent;
}
.button--dark {
    background: var(--ink);
    box-shadow: 0 10px 24px rgba(26, 31, 38, 0.24);
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 64px 48px 130px;
    background:
        radial-gradient(
            ellipse 60% 50% at 18% 8%,
            rgba(125, 177, 237, 0.35),
            transparent 60%
        ),
        radial-gradient(
            ellipse 55% 45% at 85% 88%,
            rgba(2, 72, 58, 0.16),
            transparent 60%
        ),
        var(--paper);
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: auto;
    text-align: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 24px;
    padding: 8px 16px;
    border: 2px solid var(--forest);
    border-radius: 999px;
    background: var(--paper);
    color: var(--forest);
    font: 700 14px var(--label);
    transform: rotate(-4deg);
}
h1,
h2 {
    font-family: var(--display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0.005em;
}
h1 {
    margin: 0 0 28px;
    font-size: clamp(44px, 7vw, 92px);
}
.underline {
    position: relative;
    display: inline-block;
    z-index: 0;
}
.underline svg {
    position: absolute;
    z-index: -1;
    left: -2%;
    bottom: -0.08em;
    width: 104%;
    height: 0.32em;
    overflow: visible;
}
.underline path {
    fill: none;
    stroke: var(--blue);
    stroke-width: 14;
    stroke-linecap: round;
}
.hero__intro {
    max-width: 620px;
    margin: 0 auto 44px;
    color: rgba(26, 31, 38, 0.68);
    font-size: 19px;
}
.hero__icon {
    position: absolute;
    opacity: 0.3;
    transition: translate 0.15s ease-out;
}
.hero__icon--one {
    top: 7%;
    right: 7%;
    width: 150px;
    animation: floaty 7s ease-in-out infinite;
}
.hero__icon--two {
    bottom: 2%;
    left: 3%;
    width: 110px;
    rotate: 18deg;
}
.shape {
    position: absolute;
    animation: shape-float 6.5s ease-in-out infinite;
}
.shape--circle {
    top: 3%;
    right: 1.5%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.5;
}
.shape--dot {
    bottom: 13%;
    left: 14%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--forest);
    opacity: 0.4;
    animation-delay: -2.4s;
}
.shape--triangle {
    top: 22%;
    left: 4%;
    border-right: 14px solid transparent;
    border-bottom: 24px solid var(--sage);
    border-left: 14px solid transparent;
    opacity: 0.6;
    rotate: -18deg;
    animation-delay: -4.1s;
}
.shape--circle-small {
    top: 45%;
    left: 1.5%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.3;
    animation-delay: -1.2s;
}
.shape--dot-small {
    top: 34%;
    right: 2.5%;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--forest);
    opacity: 0.35;
    animation-delay: -3.3s;
}
.shape--triangle-small {
    right: 6%;
    bottom: 14%;
    border-right: 10px solid transparent;
    border-bottom: 18px solid var(--sage);
    border-left: 10px solid transparent;
    opacity: 0.5;
    rotate: 24deg;
    animation-delay: -5s;
}
@keyframes floaty {
    50% {
        translate: 0 -14px;
    }
}
@keyframes shape-float {
    50% {
        translate: 0 -10px;
    }
}
.marquee {
    overflow: hidden;
    border-block: 1px solid rgba(2, 72, 58, 0.25);
    padding: 28px 0;
    background: var(--forest);
}
.marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee-scroll var(--marquee-duration, 30s) linear infinite;
}
.marquee__group {
    display: flex;
    flex: none;
    align-items: center;
    gap: 64px;
    padding-right: 64px;
}
.marquee__group span {
    color: rgba(247, 245, 240, 0.65);
    font: 700 15px var(--label);
    letter-spacing: 0.14em;
    white-space: nowrap;
}
@keyframes marquee-scroll {
    to {
        transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0);
    }
}
.section {
    padding: 140px 48px;
}
.container,
.services,
.about {
    max-width: 1280px;
    margin-inline: auto;
}
.section-heading {
    max-width: 700px;
    margin-bottom: 72px;
}
.section-heading h2,
.about h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 58px);
}
.section-heading > p:last-child {
    max-width: 680px;
    margin: 0;
    color: rgba(26, 31, 38, 0.62);
}
.eyebrow {
    margin: 0 0 18px;
    color: var(--forest);
    font: 500 12px var(--label);
    letter-spacing: 0.22em;
}
.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 20px 0 40px;
}
.service-card {
    position: relative;
    display: flex;
    width: 280px;
    flex: 0 0 280px;
    flex-direction: column;
    gap: 14px;
    padding: 36px 32px;
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--ink);
}
.service-card.reveal {
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        translate 0.25s ease,
        box-shadow 0.25s ease;
}
.service-card:nth-child(2),
.service-card:nth-child(4) {
    background: #eaf3fd;
}
.service-card:nth-child(3) {
    background: var(--sage);
}
.service-card:nth-child(2) {
    margin-top: 38px;
}
.service-card:nth-child(3) {
    margin-top: -14px;
}
.service-card:nth-child(4) {
    margin-top: 26px;
}
.service-card:nth-child(5) {
    margin-top: 4px;
}
.service-card:hover {
    translate: -3px -3px;
    box-shadow: 9px 9px 0 var(--ink);
}
.service-card__hook {
    position: absolute;
    top: -24px;
    left: 30px;
    width: 30px;
    height: 30px;
    color: var(--ink);
    rotate: -8deg;
}
.service-card:nth-child(even) .service-card__hook {
    rotate: 7deg;
}
.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.service-card__top b {
    color: var(--forest);
    font: 500 36px/1 var(--display);
}
.service-card__top span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(26, 31, 38, 0.08);
    font: 700 10px var(--label);
    white-space: nowrap;
}
.service-card h3 {
    margin: 0;
    font: 700 19px var(--label);
}
.service-card p {
    margin: 0;
    color: rgba(26, 31, 38, 0.68);
    font-size: 14px;
    line-height: 1.55;
}
.process {
    background: var(--warm);
}
.process__body {
    display: flex;
    gap: 64px;
}
.process__line {
    position: relative;
    width: 3px;
    flex: none;
    border-radius: 2px;
    background: rgba(26, 31, 38, 0.12);
}
.process__line span {
    position: absolute;
    inset: 0 0 auto;
    height: 0;
    border-radius: 2px;
    background: var(--forest);
}
.process__copy {
    display: flex;
    max-width: 720px;
    flex-direction: column;
    gap: 44px;
}
.process__copy > p {
    margin: 0;
    color: rgba(26, 31, 38, 0.75);
    font-size: 17px;
}
.process__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
}
.process__cta span {
    color: rgba(26, 31, 38, 0.58);
    font-size: 14px;
}
.process__cta span a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: none;
}
.results {
    max-width: none;
    background: var(--ink);
    color: var(--paper);
}
.results .eyebrow {
    color: var(--blue);
}
.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(247, 245, 240, 0.12);
}
.stats article {
    padding: 36px 28px;
    background: var(--ink);
}
.stats strong {
    color: var(--blue);
    font: 500 clamp(42px, 4vw, 56px)/1 var(--display);
}
.stats article:nth-child(even) strong {
    color: var(--sage);
}
.stats p {
    margin: 14px 0 0;
    color: rgba(247, 245, 240, 0.68);
    font-size: 14px;
}
.results__actions {
    margin-top: 72px;
}
.work-hero {
    position: relative;
    display: flex;
    min-height: min(760px, 76svh);
    align-items: center;
    overflow: hidden;
    padding: 76px 48px 88px;
    background:
        radial-gradient(
            ellipse 48% 60% at 100% 0%,
            rgba(125, 177, 237, 0.16),
            transparent 65%
        ),
        radial-gradient(
            ellipse 44% 55% at 0% 100%,
            rgba(227, 234, 157, 0.08),
            transparent 70%
        ),
        var(--ink);
    color: var(--paper);
}
.work-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.work-hero__heading {
    max-width: 1080px;
}
.work-hero .eyebrow {
    color: var(--blue);
}
.work-hero h1 {
    max-width: 1000px;
    margin-bottom: 28px;
    font-size: clamp(62px, 9vw, 126px);
}
.work-hero__intro {
    max-width: 650px;
    margin: 0;
    color: rgba(247, 245, 240, 0.68);
    font-size: 19px;
}
.work-hero__icon {
    position: absolute;
    top: 8%;
    right: 4%;
    width: clamp(120px, 15vw, 220px);
    opacity: 0.08;
    rotate: 12deg;
}
.work-hero .shape--circle {
    background: var(--blue);
    opacity: 0.2;
}
.work-hero .shape--dot,
.work-hero .shape--dot-small {
    background: var(--sage);
    opacity: 0.18;
}
.work-section {
    padding: 140px 48px;
}
.work-section__inner {
    max-width: 1280px;
    margin-inline: auto;
}
.work-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 80px;
}
.work-section__heading h2 {
    margin: 0;
    font-size: clamp(46px, 6vw, 76px);
}
.work-section__heading > p {
    max-width: 520px;
    margin: 0 0 6px;
    color: rgba(26, 31, 38, 0.64);
    font-size: 21px;
}
.work-highlights {
    position: relative;
    overflow: hidden;
    background: var(--warm);
}
.work-highlights__mark {
    position: absolute;
    top: 34px;
    left: max(24px, calc((100vw - 1440px) / 2));
    width: clamp(120px, 12vw, 180px);
    opacity: 0.08;
    filter: grayscale(1) brightness(0.48);
    pointer-events: none;
    rotate: -8deg;
}
.work-highlights .work-section__inner {
    position: relative;
    z-index: 1;
}
.case-studies {
    display: grid;
    gap: 120px;
}
.case-study {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 54px;
}
.case-study:nth-child(even) .case-study__content {
    order: 2;
}
.case-study__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px;
    border-radius: 26px;
    background: var(--paper);
    box-shadow: 0 22px 70px rgba(26, 31, 38, 0.09);
}
.case-study__number,
.writing-card__type {
    margin: 0 0 18px;
    color: var(--forest);
    font: 700 13px var(--label);
    letter-spacing: 0.17em;
}
.case-study h3 {
    margin: 0 0 12px;
    font: 500 clamp(42px, 5vw, 64px)/1 var(--display);
}
.case-study__result {
    margin: 0 0 30px;
    color: var(--forest);
    font: 500 22px/1.4 var(--label);
}
.case-study__copy {
    order: 2;
    color: rgba(26, 31, 38, 0.7);
    font-size: 18px;
}
.case-study__copy p {
    margin: 0 0 16px;
}
.case-study__copy strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-family: var(--label);
}
.case-study__stats {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 4px 0 34px;
}
.case-study__stats--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.case-study__stats > div {
    min-width: 0;
    padding: 24px 22px;
    border-radius: 17px;
    background: var(--ink);
    color: var(--paper);
}
.case-study__stats > div:nth-child(even) {
    background: var(--blue);
    color: var(--ink);
}
.case-study__stats > div:nth-child(3) {
    background: var(--sage);
    color: var(--ink);
}
.case-study__stats > div:nth-child(4) {
    background: var(--forest);
    color: var(--paper);
}
.case-study__stats strong,
.case-study__stats span {
    display: block;
}
.case-study__stats strong {
    font: 500 clamp(46px, 4.5vw, 68px)/0.9 var(--display);
    white-space: nowrap;
}
.case-study__stats span {
    margin-top: 12px;
    color: currentColor;
    font-size: 15px;
    line-height: 1.35;
    opacity: 0.72;
}
.case-study__media {
    position: relative;
    min-height: 700px;
}
.case-study__media img {
    position: absolute;
    width: auto;
    height: auto;
    border-radius: 11px;
    filter: drop-shadow(0 20px 24px rgba(26, 31, 38, 0.2));
    transition:
        scale 0.25s ease,
        filter 0.25s ease;
}
.case-study__media img:hover {
    z-index: 5;
    scale: 1.025;
    filter: drop-shadow(0 28px 32px rgba(26, 31, 38, 0.27));
}
.case-study__media--design img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
    width: 58%;
    rotate: -2deg;
}
.case-study__media--design img:nth-child(2) {
    top: 74px;
    right: 0;
    z-index: 2;
    width: 40%;
    rotate: 2deg;
}
.case-study__media--design img:nth-child(3) {
    right: 14%;
    bottom: 0;
    z-index: 3;
    width: 36%;
    rotate: -1deg;
}
.case-study__media--wine img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 2;
    width: 56%;
    rotate: -1.5deg;
}
.case-study__media--wine img:nth-child(2) {
    right: 0;
    bottom: 42px;
    z-index: 1;
    width: 82%;
    rotate: 1deg;
}
.case-study__media--wine {
    min-height: 560px;
}
.case-study__media--axiom img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    rotate: 0.6deg;
}
.case-study__media--axiom img:nth-child(2) {
    bottom: 20px;
    left: 6%;
    z-index: 2;
    width: 46%;
    rotate: -2deg;
}
.case-study__media--axiom img:nth-child(3) {
    right: 11%;
    bottom: 0;
    z-index: 3;
    width: 38%;
    rotate: 2deg;
}
.case-study__media--two img:nth-child(1) {
    top: 0;
    left: 4%;
    z-index: 1;
    width: 56%;
    rotate: -1.5deg;
}
.case-study__media--two img:nth-child(2) {
    top: 80px;
    right: 3%;
    z-index: 2;
    width: 49%;
    rotate: 1.8deg;
}
.case-study__media--friendship img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
    width: 86%;
    rotate: -1deg;
}
.case-study__media--friendship img:nth-child(2) {
    top: 82px;
    right: 0;
    z-index: 2;
    width: 44%;
    rotate: 2deg;
}
.case-study__media--friendship img:nth-child(3) {
    top: 315px;
    left: 0;
    z-index: 3;
    width: 62%;
    rotate: 1deg;
}
.case-study__media--friendship img:nth-child(4) {
    right: 9%;
    bottom: 18px;
    z-index: 4;
    width: 62%;
    rotate: -1.4deg;
}
.video-work {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(125, 177, 237, 0.4), transparent 22%),
        radial-gradient(circle at 92% 80%, rgba(2, 72, 58, 0.12), transparent 24%),
        var(--sage);
}
.phone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 52px 28px;
}
.phone-frame {
    --phone-tilt-x: 0deg;
    --phone-tilt-y: 0deg;
    --phone-tilt-z: 0deg;
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 10px;
    border: 2px solid rgba(247, 245, 240, 0.18);
    border-radius: 38px;
    background: var(--ink);
    box-shadow: 0 26px 60px rgba(26, 31, 38, 0.2);
    backface-visibility: hidden;
    isolation: isolate;
    transform-origin: center center;
    transform-style: preserve-3d;
    will-change: transform;
}
.phone-frame:nth-child(4n + 1) {
    --phone-tilt-x: -2deg;
    --phone-tilt-y: 17deg;
    --phone-tilt-z: 3.5deg;
}
.phone-frame:nth-child(4n + 2) {
    --phone-tilt-x: 2deg;
    --phone-tilt-y: 6deg;
    --phone-tilt-z: 1.25deg;
}
.phone-frame:nth-child(4n + 3) {
    --phone-tilt-x: -2deg;
    --phone-tilt-y: -6deg;
    --phone-tilt-z: -1.25deg;
}
.phone-frame:nth-child(4n + 4) {
    --phone-tilt-x: 2deg;
    --phone-tilt-y: -17deg;
    --phone-tilt-z: -3.5deg;
}
.phone-frame::before {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 50%;
    width: 29%;
    height: 18px;
    border-radius: 999px;
    background: var(--ink);
    content: "";
    transform: translateX(-50%) translateZ(12px);
}
.phone-frame::after {
    position: absolute;
    z-index: 0;
    inset: -4px;
    border: 1px solid rgba(247, 245, 240, 0.2);
    border-radius: 41px;
    background: linear-gradient(135deg, #4a525c 0%, #171c22 34%, #07090b 100%);
    box-shadow:
        0 10px 18px rgba(0, 0, 0, 0.36),
        inset -2px -2px 2px rgba(0, 0, 0, 0.5),
        inset 2px 2px 1px rgba(255, 255, 255, 0.14);
    content: "";
    transform: translateZ(-30px);
}
.phone-frame:nth-child(4n + 2),
.phone-frame:nth-child(4n + 4) {
    margin-top: 36px;
}
.phone-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 9 / 17.25;
    border-radius: 28px;
    object-fit: cover;
    transform: translateZ(7px);
}
.writing-work {
    background: var(--paper);
}
.writing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.writing-card {
    overflow: hidden;
    border: 1px solid rgba(26, 31, 38, 0.1);
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 45px rgba(26, 31, 38, 0.06);
}
.writing-card img {
    width: 100%;
    aspect-ratio: 2.1 / 1;
    object-fit: cover;
}
.writing-card > div {
    padding: 30px;
}
.writing-card h3 {
    margin: 0 0 14px;
    font: 500 38px/1.06 var(--display);
}
.writing-card > div > p:not(.writing-card__type) {
    margin: 0;
    color: rgba(26, 31, 38, 0.64);
    font-size: 17px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    color: var(--forest);
    font: 700 16px var(--label);
    text-decoration: none;
}
.text-link span {
    font-size: 17px;
    transition: transform 0.2s;
}
.text-link:hover span {
    transform: translate(3px, -3px);
}
.graphic-work {
    background: var(--ink);
    color: var(--paper);
}
.graphic-work .eyebrow {
    color: var(--blue);
}
.graphic-work .work-section__heading > p {
    color: rgba(247, 245, 240, 0.62);
}
.graphic-group + .graphic-group {
    margin-top: 104px;
}
.graphic-group__label {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(247, 245, 240, 0.14);
}
.graphic-group__label span {
    color: var(--blue);
    font: 500 15px var(--label);
}
.graphic-group__label h3 {
    margin: 0;
    font: 500 44px/1 var(--display);
}
.graphic-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    align-items: start;
    gap: 70px 26px;
    padding: 20px 18px 38px;
}
.graphic-tile {
    position: relative;
    margin: 0;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.26));
    transition: transform 0.25s ease;
}
.graphic-tile::before {
    position: absolute;
    z-index: 2;
    top: -12px;
    left: 50%;
    width: 76px;
    height: 24px;
    background: rgba(227, 234, 157, 0.72);
    content: "";
    transform: translateX(-50%) rotate(-2deg);
    backdrop-filter: blur(2px);
}
.graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(1) {
    grid-column: 1 / span 6;
    transform: rotate(-1.4deg);
}
.graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: 74px;
    transform: rotate(1.8deg);
}
.graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(3) {
    grid-column: 1 / span 4;
    transform: rotate(1.2deg);
}
.graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(4) {
    grid-column: 5 / span 4;
    margin-top: 54px;
    transform: rotate(-1.8deg);
}
.graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(5) {
    grid-column: 9 / span 4;
    transform: rotate(1deg);
}
.graphic-grid--six .graphic-tile:nth-child(odd) {
    grid-column: 1 / span 5;
    transform: rotate(-1.2deg);
}
.graphic-grid--six .graphic-tile:nth-child(even) {
    grid-column: 7 / span 6;
    margin-top: 72px;
    transform: rotate(1.3deg);
}
.graphic-grid--six .graphic-tile:nth-child(3n) {
    transform: rotate(-0.7deg);
}
@media (hover: hover) {
    .graphic-grid--six .graphic-tile:nth-child(n):hover,
    .graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(n):hover {
        z-index: 3;
        transform: rotate(0) translateY(-8px) scale(1.025);
    }
}
.graphic-tile img {
    width: 100%;
    height: auto;
    border-radius: 9px;
}
.about__grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: start;
    gap: 72px;
}
.founder-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}
.about h2 {
    font-size: clamp(34px, 4.5vw, 48px);
}
.about p:not(.eyebrow) {
    color: rgba(26, 31, 38, 0.72);
    font-size: 16px;
}
.recognition-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}
.recognition-list li {
    padding: 9px 16px;
    border-radius: 999px;
    background: #eaf3fd;
    color: var(--forest);
    font: 500 12px var(--label);
}
.contact {
    position: relative;
    overflow: hidden;
    background: var(--blue);
    text-align: center;
}
.contact > img {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 280px;
    opacity: 0.25;
    rotate: 8deg;
}
.contact__content {
    position: relative;
    max-width: 760px;
    margin: auto;
}
.contact h2 {
    margin: 0 0 28px;
    font-size: clamp(40px, 5.5vw, 68px);
}
.contact p {
    margin: 0 0 40px;
    color: rgba(26, 31, 38, 0.75);
    font-size: 18px;
}
.site-footer {
    padding: 88px 48px 36px;
    background: var(--ink);
    color: var(--paper);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(247, 245, 240, 0.14);
}
.brand--footer {
    margin-bottom: 20px;
    color: var(--paper);
}
.brand--footer img {
    width: 52px;
    height: 52px;
    filter: saturate(0) brightness(0) invert(1);
    opacity: 0.9;
}
.brand--footer .brand__words {
    height: 52px;
}
.brand--footer .brand__words > span {
    font-size: 33px;
}
.brand--footer .brand__words small {
    font-size: 12px;
    letter-spacing: 1.925px;
    color: rgba(247, 245, 240, 0.65);
}
.site-footer p {
    max-width: 300px;
    margin: 4px 0;
    color: rgba(247, 245, 240, 0.55);
    font-size: 14px;
}
.site-footer h2 {
    margin: 0 0 20px;
    color: rgba(247, 245, 240, 0.45);
    font: 700 11px var(--label);
    letter-spacing: 0.18em;
}
.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer li,
.site-footer a {
    color: rgba(247, 245, 240, 0.78);
    font-size: 14px;
    text-decoration: none;
}
.site-footer a:hover {
    color: var(--blue);
}
.site-footer .brand--footer,
.site-footer .brand--footer:hover {
    color: var(--paper);
}
.site-footer .brand--footer .brand__words small,
.site-footer .brand--footer:hover .brand__words small {
    color: var(--paper);
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 28px;
    color: rgba(247, 245, 240, 0.45);
    font-size: 12px;
}
.footer-bottom span:last-child {
    font-family: var(--label);
    letter-spacing: 0.1em;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.phone-frame.reveal {
    transform: translateY(24px) perspective(520px)
        rotateX(var(--phone-tilt-x, 0deg))
        rotateY(var(--phone-tilt-y, 0deg))
        rotateZ(var(--phone-tilt-z, 0deg));
    transition:
        opacity 0.7s ease,
        transform 0.14s linear,
        box-shadow 0.25s ease;
}
.phone-frame.reveal.is-visible {
    transform: perspective(520px) rotateX(var(--phone-tilt-x, 0deg))
        rotateY(var(--phone-tilt-y, 0deg))
        rotateZ(var(--phone-tilt-z, 0deg));
}
@media (max-width: 900px) {
    .site-header {
        padding: 18px 24px;
    }
    .site-header.is-scrolled {
        padding: 12px 24px;
    }
    .menu-toggle {
        display: block;
        z-index: 2;
    }
    .site-nav {
        position: fixed;
        inset: 0;
        display: flex;
        visibility: hidden;
        opacity: 0;
        flex-direction: column;
        justify-content: center;
        background: var(--paper);
        transition: 0.2s;
    }
    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
    }
    .site-nav > a:not(.button) {
        font-size: 24px;
    }
    .hero {
        padding: 48px 24px 100px;
    }
    .work-hero {
        min-height: auto;
        padding: 76px 24px 88px;
    }
    .work-section {
        padding: 100px 24px;
    }
    .work-section__heading {
        gap: 40px;
        margin-bottom: 64px;
    }
    .case-study {
        grid-template-columns: 1fr;
    }
    .case-study:nth-child(even) .case-study__content {
        order: initial;
    }
    .case-study__media {
        min-height: 650px;
    }
    .phone-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .phone-frame:nth-child(n) {
        --phone-tilt-x: 0deg;
        --phone-tilt-y: 0deg;
        --phone-tilt-z: 0deg;
        margin-top: 0;
    }
    .phone-frame:nth-child(3n + 1) {
        --phone-tilt-y: 16deg;
        --phone-tilt-z: 3deg;
    }
    .phone-frame:nth-child(3n + 3) {
        --phone-tilt-y: -16deg;
        --phone-tilt-z: -3deg;
    }
    .phone-frame:nth-child(3n + 2) {
        margin-top: 30px;
    }
    .writing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .graphic-grid--six .graphic-tile:nth-child(n),
    .graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(n) {
        grid-column: span 6;
        margin-top: 0;
    }
    .section {
        padding: 100px 24px;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats article:last-child {
        grid-column: 1/-1;
    }
    .about__grid {
        grid-template-columns: 1fr;
    }
    .founder-photo {
        max-width: 420px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer {
        padding-inline: 24px;
    }
}
@media (max-width: 600px) {
    h1 br {
        display: none;
    }
    .hero__icon--one {
        right: -35px;
        width: 110px;
    }
    .hero__icon--two {
        left: -30px;
    }
    .shape {
        display: none;
    }
    .hero__intro {
        font-size: 17px;
    }
    .work-hero h1 {
        font-size: clamp(54px, 17vw, 80px);
    }
    .work-hero__intro {
        font-size: 17px;
    }
    .work-section {
        padding-block: 84px;
    }
    .work-section__heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 52px;
    }
    .work-section__heading h2 {
        font-size: clamp(42px, 13vw, 60px);
    }
    .work-section__heading > p {
        font-size: 18px;
    }
    .case-studies {
        gap: 80px;
    }
    .case-study__content {
        padding: 34px 26px;
    }
    .case-study__media {
        min-height: 500px;
    }
    .case-study__media--wine {
        min-height: 380px;
    }
    .case-study__media--axiom {
        min-height: 480px;
    }
    .case-study__media--two {
        min-height: 410px;
    }
    .case-study__media--friendship {
        min-height: 540px;
    }
    .case-study__stats {
        grid-template-columns: 1fr 1fr;
    }
    .case-study__stats > div {
        padding: 18px 15px;
    }
    .phone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 14px;
    }
    .phone-frame,
    .phone-frame:nth-child(n) {
        --phone-tilt-x: 0deg;
        --phone-tilt-y: 0deg;
        --phone-tilt-z: 0deg;
        margin-top: 0;
        padding: 6px;
        border-radius: 27px;
    }
    .phone-frame:nth-child(odd) {
        --phone-tilt-y: 14deg;
        --phone-tilt-z: 2.5deg;
    }
    .phone-frame:nth-child(even) {
        --phone-tilt-y: -14deg;
        --phone-tilt-z: -2.5deg;
    }
    .phone-frame::before {
        top: 12px;
        height: 13px;
    }
    .phone-frame::after {
        inset: -3px;
        border-radius: 30px;
        transform: translateZ(-22px);
    }
    .phone-frame img {
        border-radius: 21px;
    }
    .writing-grid {
        grid-template-columns: 1fr;
    }
    .writing-card > div {
        padding: 25px;
    }
    .graphic-group + .graphic-group {
        margin-top: 72px;
    }
    .graphic-grid {
        display: block;
        padding-inline: 4px;
    }
    .graphic-grid--six .graphic-tile:nth-child(n),
    .graphic-grid:not(.graphic-grid--six) .graphic-tile:nth-child(n) {
        margin: 0 0 34px;
        transform: none;
    }
    .graphic-tile {
        border-radius: 9px;
    }
    .graphic-tile img {
        height: auto;
    }
    .marquee {
        padding-block: 22px;
    }
    .marquee__group {
        gap: 40px;
        padding-right: 40px;
    }
    .service-grid {
        gap: 28px;
    }
    .service-card,
    .service-card:nth-child(n) {
        width: 100%;
        max-width: 340px;
        margin-top: 0;
    }
    .section-heading {
        margin-bottom: 52px;
    }
    .results__actions {
        margin-top: 52px;
    }
    .process__body {
        gap: 24px;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .stats article:last-child {
        grid-column: auto;
    }
    .about__grid {
        gap: 48px;
    }
    .contact {
        padding-inline: 24px;
    }
    .button-row {
        align-items: stretch;
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
