:root {
    --ink: #151313;
    --ink-soft: #2b2827;
    --paper: #f3f3f0;
    --white: #ffffff;
    --red: #dc262d;
    --red-dark: #b9151c;
    --muted: #6e6a67;
    --line: #cbc9c4;
    --header-height: 88px;
    --shell: 1440px;
    --gutter: clamp(22px, 4.2vw, 68px);
    --section-space: clamp(88px, 10vw, 164px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Titillium Web", "Avenir Next", Avenir, sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

body:not(.home) #main {
    padding-top: var(--header-height);
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
dl {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 300;
    letter-spacing: -0.035em;
}

.shell {
    width: min(100%, var(--shell));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.screen-reader-text,
.form-hp {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    transform: translateY(-150%);
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    flex: 0 0 auto;
    background: var(--red);
    content: "";
}

.eyebrow-light {
    color: var(--white);
}

.eyebrow-light a {
    text-decoration: none;
}

.eyebrow-light a:hover,
.eyebrow-light a:focus-visible {
    text-decoration: underline;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 13px 19px 13px 22px;
    border: 1px solid transparent;
    color: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button span {
    font-size: 1.05rem;
}

.button-red {
    background: var(--red);
    color: var(--white);
}

.button-red:hover,
.button-red:focus-visible {
    background: var(--white);
    color: var(--ink);
}

.button-black {
    background: var(--ink);
    color: var(--white);
}

.button-black:hover,
.button-black:focus-visible {
    background: var(--white);
    color: var(--ink);
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    border-color: transparent;
}

.text-link-light {
    color: var(--white);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--ink);
    color: var(--white);
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.home .site-header {
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
}

.site-header.is-scrolled,
.home .site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.16);
    background: var(--ink);
    color: var(--white);
}

.admin-bar .site-header {
    top: 32px;
}

.nav-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    flex: 0 0 auto;
    font-family: "Kaushan Script", cursive;
    font-size: clamp(1.48rem, 2.1vw, 1.84rem);
    letter-spacing: -0.03em;
    line-height: 1;
    text-decoration: none;
}

.site-logo:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.subnav-toggle:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 5px;
}

.site-nav,
.nav-list {
    height: 100%;
}

.nav-list,
.service-subnav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}

.nav-list > li {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    text-decoration: none;
}

.nav-list a:not(.nav-contact):hover,
.nav-list a:not(.nav-contact):focus-visible {
    text-decoration: underline;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 10px 0 10px 14px;
    border-left: 1px solid currentColor;
}

.nav-contact span {
    font-size: 1.05rem;
}

.nav-services-item {
    position: relative;
}

.nav-services-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
}

.subnav-toggle {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    line-height: 1;
}

.subnav-toggle > span:last-child {
    display: block;
    font-size: 1.15rem;
    font-weight: 300;
    transition: transform 180ms ease;
}

.nav-services-item.is-open .subnav-toggle > span:last-child {
    transform: rotate(45deg);
}

.service-subnav {
    position: absolute;
    top: calc(100% - 1px);
    left: -26px;
    width: 310px;
    padding: 18px 26px 24px;
    transform: translateY(8px);
    border-top: 3px solid var(--red);
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.service-subnav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-subnav a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-services-item:hover .service-subnav,
.nav-services-item:focus-within .service-subnav,
.nav-services-item.is-open .service-subnav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-toggle {
    display: none;
}

/* Home hero */
.home-hero {
    position: relative;
    min-height: max(720px, 100svh);
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.home-hero-media,
.home-hero-shade {
    position: absolute;
    inset: 0;
}

.home-hero-media {
    background-image: url("../img/header-bg.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.home-hero-shade {
    background: rgba(10, 9, 9, 0.72);
}

.home-hero-shade::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--gutter);
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    content: "";
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: max(720px, 100svh);
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    gap: 54px;
    padding-top: calc(var(--header-height) + 86px);
    padding-bottom: clamp(42px, 6vw, 82px);
}

.home-hero-copy {
    max-width: 1180px;
}

.home-hero h1 {
    max-width: 1180px;
    margin-bottom: 34px;
    font-size: clamp(3.7rem, 7.25vw, 7.7rem);
    line-height: 0.86;
}

.home-hero h1 span {
    display: block;
}

.home-hero h1 span:nth-child(2) {
    color: #d9d8d4;
}

.home-hero h1 .hero-title-note {
    max-width: 940px;
    margin-top: clamp(24px, 3vw, 38px);
    color: var(--red);
    font-size: clamp(1.8rem, 3.15vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.hero-lede {
    max-width: 740px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.12rem, 1.55vw, 1.4rem);
    line-height: 1.42;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.trust-strip {
    padding: 32px var(--gutter);
    background: var(--red);
    color: var(--white);
    text-align: center;
}

.trust-strip p {
    margin: 0;
    font-size: clamp(1.1rem, 1.8vw, 1.42rem);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Home services */
.services-home {
    padding: var(--section-space) 0;
    background: var(--paper);
}

.services-home-heading {
    margin-bottom: clamp(52px, 6vw, 84px);
}

.services-home-heading h2 {
    margin-bottom: 0;
    font-size: clamp(3.25rem, 5vw, 5.25rem);
    line-height: 0.95;
}

.service-routes {
    border-bottom: 1px solid var(--ink);
}

.service-route {
    border-top: 1px solid var(--ink);
}

.service-route > a {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(260px, 0.9fr) 52px;
    gap: clamp(24px, 3.4vw, 54px);
    align-items: start;
    padding: clamp(34px, 4.5vw, 66px) 0;
    text-decoration: none;
    transition: padding 180ms ease, background-color 180ms ease, color 180ms ease;
}

.service-route > a:hover,
.service-route > a:focus-visible {
    padding-right: 28px;
    padding-left: 28px;
    background: var(--ink);
    color: var(--white);
    outline: 0;
}

.service-route-main h3 {
    max-width: 580px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 0.98;
}

.service-route-main p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted);
}

.service-route > a:hover .service-route-main p,
.service-route > a:focus-visible .service-route-main p {
    color: rgba(255, 255, 255, 0.68);
}

.service-route-list {
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
}

.service-route-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
    line-height: 1.35;
}

.service-route > a:hover .service-route-list li,
.service-route > a:focus-visible .service-route-list li {
    border-color: rgba(255, 255, 255, 0.25);
}

.service-route-arrow {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 1.18rem;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.service-route > a:hover .service-route-arrow,
.service-route > a:focus-visible .service-route-arrow {
    border-color: var(--red);
    background: var(--red);
}

/* Home working relationship */
.home-working {
    padding: var(--section-space) 0;
    background: var(--ink);
    color: var(--white);
}

.home-working h2 {
    max-width: 920px;
    margin-bottom: 0;
    font-size: clamp(3.25rem, 5.7vw, 6rem);
    line-height: 0.92;
}

.home-working-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(66px, 8vw, 112px) 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    list-style: none;
}

.home-working-list li {
    padding: clamp(34px, 4vw, 56px) clamp(28px, 4vw, 60px) clamp(42px, 5vw, 68px) 0;
}

.home-working-list li + li {
    padding-left: clamp(28px, 4vw, 60px);
    border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.home-working-list h3 {
    margin-bottom: 22px;
    font-size: clamp(1.75rem, 2.65vw, 2.65rem);
    line-height: 1;
}

.home-working-list p {
    max-width: 440px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
}

.home-working-fit {
    max-width: 1060px;
    margin: clamp(50px, 6vw, 84px) 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.45rem, 2.35vw, 2.3rem);
    line-height: 1.32;
}

/* Contact */
.contact-section {
    padding: var(--section-space) 0;
    background: var(--red);
    color: var(--ink);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1fr);
    gap: clamp(70px, 10vw, 160px);
}

.contact-copy .eyebrow {
    color: var(--white);
}

.contact-copy .eyebrow::before {
    background: var(--white);
}

.contact-copy h2 {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: clamp(3.4rem, 6.1vw, 6.4rem);
    line-height: 0.9;
}

.contact-copy > p:last-child {
    max-width: 570px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.contact-copy a {
    font-weight: 600;
}

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 34px;
}

.contact-form label > span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.05rem;
}

.contact-form textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-width: 2px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.form-actions button {
    cursor: pointer;
}

.form-actions button:disabled {
    cursor: wait;
    opacity: 0.58;
}

.form-status {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.form-status.is-success,
.form-status.is-warning,
.form-status.is-error {
    padding: 8px 11px;
    background: var(--white);
    color: var(--ink);
}

/* Shared inner-page heroes */
.page-hero {
    position: relative;
    min-height: calc(82svh - var(--header-height));
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.page-hero::after {
    position: absolute;
    top: 12%;
    right: -10vw;
    width: clamp(320px, 42vw, 720px);
    aspect-ratio: 1;
    border: clamp(26px, 5vw, 72px) solid var(--red);
    border-radius: 50%;
    content: "";
    opacity: 0.85;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: calc(82svh - var(--header-height));
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 100px;
    padding-bottom: clamp(54px, 7vw, 96px);
}

.page-hero h1 {
    max-width: 1150px;
    margin-bottom: clamp(55px, 8vw, 108px);
    font-size: clamp(3.8rem, 7.3vw, 7.75rem);
    line-height: 0.88;
}

.page-hero-bottom {
    display: grid;
    grid-template-columns: minmax(0, 600px) auto;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    padding-top: 25px;
}

.page-hero-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.08rem;
}

.services-directory {
    padding: clamp(56px, 7vw, 104px) 0 var(--section-space);
    background: var(--paper);
}

.directory-item {
    padding: clamp(42px, 5vw, 70px) 0;
    border-top: 1px solid var(--ink);
}

.directory-list .directory-item:last-child {
    border-bottom: 1px solid var(--ink);
}

.directory-item-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 30px;
    align-items: start;
}

.directory-item h3 {
    max-width: 980px;
    margin-bottom: 0;
    font-size: clamp(2.55rem, 5vw, 5.4rem);
    line-height: 0.94;
}

.directory-item h3 a {
    text-decoration: none;
}

.directory-item h3 a:hover,
.directory-item h3 a:focus-visible {
    color: var(--red);
}

.circle-link {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.circle-link:hover,
.circle-link:focus-visible {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.directory-item-body {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(270px, 1fr);
    gap: clamp(50px, 9vw, 150px);
    margin-top: clamp(42px, 6vw, 80px);
    padding-left: 0;
}

.directory-item-body > p {
    max-width: 540px;
    margin: 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.directory-item-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.directory-item-body li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.directory-item-body li:first-child {
    padding-top: 0;
}

.service-principle {
    padding: var(--section-space) 0;
    background: var(--red);
    color: var(--ink);
}

.principle-layout {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 52px clamp(50px, 8vw, 130px);
}

.principle-layout .eyebrow {
    color: var(--white);
}

.principle-layout .eyebrow::before {
    background: var(--white);
}

.principle-layout h2 {
    max-width: 960px;
    margin-bottom: 0;
    font-size: clamp(3.1rem, 5.7vw, 6rem);
    line-height: 0.92;
}

.principle-layout > p:last-child {
    grid-column: 2;
    max-width: 660px;
    margin-bottom: 0;
    font-size: 1.12rem;
}

.cta-section {
    padding: var(--section-space) 0;
    background: var(--white);
}

.cta-layout {
    display: grid;
    grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr) auto;
    gap: 30px clamp(36px, 6vw, 94px);
    align-items: end;
}

.cta-layout .eyebrow {
    margin-bottom: 8px;
}

.cta-layout h2 {
    max-width: 840px;
    margin-bottom: 0;
    font-size: clamp(3.1rem, 5.5vw, 5.8rem);
    line-height: 0.92;
}

/* Service category page */
.category-hero {
    position: relative;
    min-height: calc(79svh - var(--header-height));
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.category-hero-orbit {
    position: absolute;
    top: 50%;
    right: -13vw;
    width: clamp(370px, 52vw, 830px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    border: clamp(28px, 5vw, 76px) solid var(--red);
    border-radius: 50%;
    opacity: 0.72;
}

.category-hero-marketing .category-hero-orbit {
    right: auto;
    left: 51%;
    border-width: clamp(18px, 3vw, 48px);
}

.category-hero-creative .category-hero-orbit {
    top: 34%;
    right: 2vw;
    width: clamp(280px, 38vw, 620px);
    border-width: clamp(42px, 7vw, 100px);
}

.category-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: calc(79svh - var(--header-height));
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: end;
    padding-top: 110px;
    padding-bottom: clamp(62px, 8vw, 110px);
}

.category-hero-heading h1 {
    max-width: 980px;
    margin-bottom: 0;
    font-size: clamp(3.8rem, 7.1vw, 7.55rem);
    line-height: 0.87;
}

.category-hero-copy {
    padding-bottom: 5px;
}

.category-hero-copy p {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
}

.offering-section {
    padding: var(--section-space) 0;
    background: var(--paper);
}

.offering-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: start;
}

.offering-heading {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.offering-heading h2 {
    max-width: 600px;
    margin-bottom: 28px;
    font-size: clamp(2.9rem, 4.6vw, 4.8rem);
    line-height: 0.95;
}

.offering-heading > p:last-child {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted);
}

.offering-list {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--ink);
    list-style: none;
}

.offering-list li {
    padding: clamp(36px, 4.4vw, 60px) 0;
    border-top: 1px solid var(--ink);
}

.offering-list h3 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 3.2vw, 3.15rem);
    line-height: 1;
}

.offering-list p {
    max-width: 660px;
    margin-bottom: 0;
    color: var(--muted);
}

.next-service {
    padding: var(--section-space) 0;
    background: var(--white);
}

.next-service-layout {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: 34px clamp(50px, 8vw, 130px);
}

.next-service-layout h2 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: clamp(3.1rem, 5.8vw, 6.2rem);
    line-height: 0.92;
}

.next-service-layout > p:nth-of-type(2) {
    grid-column: 2;
    max-width: 640px;
    margin-bottom: 0;
    color: var(--muted);
}

.next-service-layout .button {
    grid-column: 2;
    justify-self: start;
    margin-top: 12px;
}

/* Generic content */
.content-section {
    min-height: 60vh;
    padding: var(--section-space) 0;
    background: var(--paper);
}

.content-section h1 {
    max-width: 1040px;
    font-size: clamp(3.4rem, 6vw, 6.5rem);
    line-height: 0.9;
}

.entry-content {
    max-width: 780px;
}

.entry-content > * + * {
    margin-top: 1.4em;
}

/* Footer */
.site-footer {
    padding: clamp(72px, 8vw, 118px) 0 26px;
    background: var(--ink);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(250px, 0.55fr) minmax(220px, 0.45fr);
    gap: clamp(50px, 8vw, 130px);
}

.footer-brand p {
    max-width: 470px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.58);
}

.footer-label {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-services ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-services li + li {
    margin-top: 11px;
}

.footer-services a,
.footer-contact a {
    text-decoration: none;
}

.footer-contact > a {
    display: block;
    width: fit-content;
}

.footer-contact > a + a {
    margin-top: 8px;
}

.footer-services a:hover,
.footer-services a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--red);
}

.footer-contact > p:last-child {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: clamp(74px, 10vw, 150px);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.77rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
}

@media (max-width: 1080px) {
    :root {
        --gutter: clamp(22px, 4.2vw, 48px);
    }

    .service-route > a {
        grid-template-columns: minmax(240px, 1.05fr) minmax(230px, 0.8fr) 50px;
        gap: 24px;
    }

    .category-hero-inner {
        gap: 60px;
    }

    .footer-main {
        gap: 56px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .admin-bar .site-header {
        top: 46px;
    }

    .nav-toggle {
        display: flex;
        min-width: 82px;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        padding: 10px 0;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
        font-size: 0.82rem;
        font-weight: 600;
    }

    .nav-toggle-lines,
    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
        display: block;
        width: 22px;
        height: 1px;
        background: currentColor;
        content: "";
        transition: transform 180ms ease;
    }

    .nav-toggle-lines {
        position: relative;
    }

    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
        position: absolute;
        left: 0;
    }

    .nav-toggle-lines::before {
        top: -6px;
    }

    .nav-toggle-lines::after {
        top: 6px;
    }

    .nav-open .nav-toggle-lines {
        background: transparent;
    }

    .nav-open .nav-toggle-lines::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-open .nav-toggle-lines::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        height: auto;
        padding: 38px var(--gutter) 46px;
        transform: translateX(100%);
        overflow-y: auto;
        background: var(--ink);
        color: var(--white);
        opacity: 0;
        pointer-events: none;
        transition: transform 210ms ease, opacity 210ms ease;
    }

    .admin-bar .site-nav {
        top: calc(var(--header-height) + 46px);
    }

    .nav-open .site-header,
    .home.nav-open .site-header {
        border-color: rgba(255, 255, 255, 0.18);
        background: var(--ink);
        color: var(--white);
    }

    .nav-open .site-nav {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        display: block;
        height: auto;
    }

    .nav-list > li {
        display: block;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .nav-list > li > a,
    .nav-services-trigger > a {
        display: block;
        padding: 18px 0;
        font-size: clamp(1.55rem, 5vw, 2.1rem);
        font-weight: 300;
        letter-spacing: -0.02em;
    }

    .nav-services-trigger {
        display: grid;
        grid-template-columns: 1fr 46px;
    }

    .subnav-toggle {
        width: 46px;
        height: auto;
        justify-self: end;
    }

    .service-subnav {
        position: static;
        display: none;
        width: auto;
        padding: 0 0 18px 22px;
        transform: none;
        border: 0;
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        transition: none;
    }

    .nav-services-item:hover .service-subnav,
    .nav-services-item:focus-within .service-subnav {
        display: none;
    }

    .nav-services-item.is-open .service-subnav {
        display: block;
    }

    .service-subnav li + li {
        border: 0;
    }

    .service-subnav a {
        padding: 8px 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
    }

    .nav-contact {
        display: flex !important;
        justify-content: space-between;
        padding: 18px 0 !important;
        border-left: 0;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .contact-layout,
    .offering-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-route > a {
        grid-template-columns: minmax(0, 1fr) 50px;
    }

    .service-route-list {
        grid-column: 1 / 2;
    }

    .service-route-arrow {
        grid-column: 2;
        grid-row: 1;
    }

    .home-working-list {
        grid-template-columns: 1fr;
    }

    .home-working-list li,
    .home-working-list li + li {
        padding: 34px 0 40px;
        border-left: 0;
    }

    .home-working-list li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.34);
    }

    .principle-layout,
    .next-service-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .principle-layout > p:last-child,
    .next-service-layout > p:nth-of-type(2),
    .next-service-layout .button {
        grid-column: 1;
    }

    .cta-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cta-layout .button {
        justify-self: start;
    }

    .category-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .category-hero-copy {
        max-width: 620px;
    }

    .offering-heading {
        position: static;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    :root {
        --gutter: 20px;
        --section-space: 78px;
    }

    body {
        font-size: 17px;
    }

    .admin-bar .site-header {
        top: 0;
    }

    .admin-bar .site-nav {
        top: var(--header-height);
    }

    .nav-toggle-label {
        display: none;
    }

    .nav-toggle {
        min-width: 38px;
    }

    .home-hero,
    .home-hero-inner {
        min-height: max(700px, 100svh);
    }

    .home-hero-media {
        background-position: 61% center;
    }

    .home-hero-inner {
        gap: 32px;
        padding-top: 130px;
        padding-bottom: 34px;
    }

    .home-hero h1 {
        margin-bottom: 26px;
        font-size: clamp(3rem, 15.6vw, 4.35rem);
    }

    .home-hero h1 .hero-title-note {
        max-width: 340px;
        margin-top: 22px;
        font-size: clamp(1.35rem, 7.4vw, 1.8rem);
        line-height: 1.08;
    }

    .hero-lede {
        font-size: 1.04rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .trust-strip {
        padding: 26px 6px;
    }

    .services-home-heading {
        margin-bottom: 56px;
    }

    .services-home-heading h2,
    .contact-copy h2,
    .principle-layout h2,
    .cta-layout h2,
    .next-service-layout h2 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .service-route > a {
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 14px;
        padding: 34px 0;
    }

    .service-route > a:hover,
    .service-route > a:focus-visible {
        padding-right: 12px;
        padding-left: 12px;
    }

    .service-route-main h3 {
        font-size: 2.1rem;
    }

    .service-route-main p {
        font-size: 0.94rem;
    }

    .service-route-list {
        grid-column: 1 / 3;
        margin-top: 10px;
    }

    .service-route-arrow {
        width: 40px;
        height: 40px;
    }

    .home-working h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .home-working-list h3 {
        margin-bottom: 16px;
    }

    .home-working-fit {
        font-size: 1.35rem;
    }

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

    .form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero,
    .page-hero-inner,
    .category-hero,
    .category-hero-inner {
        min-height: 690px;
    }

    .page-hero h1,
    .category-hero-heading h1 {
        font-size: clamp(3.2rem, 15vw, 4.6rem);
    }

    .page-hero-bottom {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .page-hero-bottom .text-link {
        justify-self: start;
    }

    .directory-item-head {
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 13px;
    }

    .directory-item h3 {
        font-size: 2.55rem;
    }

    .circle-link {
        width: 42px;
        height: 42px;
    }

    .directory-item-body {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 38px;
        padding-left: 0;
    }

    .category-hero-orbit {
        right: -46vw;
        opacity: 0.45;
    }

    .category-hero-marketing .category-hero-orbit {
        left: 25%;
    }

    .category-hero-creative .category-hero-orbit {
        right: -20vw;
    }

    .offering-list h3 {
        font-size: 2rem;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
