:root {
    --bg: #0b0c10;
    --bg-soft: #11141a;
    --bg-elevated: #151922;
    --bg-strong: #1b202b;
    --text: #f3eee7;
    --text-soft: rgba(243, 238, 231, 0.78);
    --text-faint: rgba(243, 238, 231, 0.52);
    --line: rgba(243, 238, 231, 0.12);
    --line-strong: rgba(243, 238, 231, 0.22);
    --accent-cyan: #55d6ff;
    --accent-coral: #e79abf;
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.22);
    --shadow-deep: 0 34px 110px rgba(0, 0, 0, 0.34);
    --site-width: 1320px;
    --reading-width: 720px;
    --serif: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    --sans: "Lora", Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    isolation: isolate;
    margin: 0;
    background: linear-gradient(180deg, #090a0d 0%, var(--bg) 48%, #08090c 100%);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.78;
    letter-spacing: 0;
}

body.has-modal-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("../images/invader.png");
    background-repeat: no-repeat;
    background-size: min(82vw, 1200px);
    background-position: calc(100% - 1vw) 12vh;
    opacity: 0.13;
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.site-main {
    display: block;
}

.site-header,
.site-footer__inner,
.hero,
.section {
    padding-left: max(28px, calc((100vw - var(--site-width)) / 2));
    padding-right: max(28px, calc((100vw - var(--site-width)) / 2));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 11, 15, 0.8);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
}

.site-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.site-brand__text {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.site-brand__name,
.site-footer__title,
.hero-copy h1,
.section-heading h2,
.project-preview h3,
.info-card h3,
.offer-card h3,
.cta-card h2,
.prose-content h2,
.prose-content h3 {
    font-family: var(--serif);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-brand__name {
    font-size: clamp(1.62rem, 2vw, 1.98rem);
    line-height: 0.94;
}

.site-brand__tag {
    color: var(--text-faint);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
}

.site-header__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.site-nav__link {
    position: relative;
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav__link:nth-child(odd)::after {
    background: var(--accent-cyan);
}

.site-nav__link:nth-child(even)::after {
    background: var(--accent-coral);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.site-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    white-space: nowrap;
}

.site-language-switcher__item,
.site-language-switcher__divider {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-language-switcher__item {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent-cyan);
    cursor: pointer;
}

.site-language-switcher__item--active {
    color: var(--accent-coral);
}

.site-language-switcher__divider {
    color: var(--text-faint);
}

.hero {
    padding-top: clamp(44px, 5.4vw, 78px);
    padding-bottom: clamp(76px, 10vw, 132px);
}

.hero-home__grid,
.hero-page {
    width: min(var(--site-width), 100%);
    margin: 0 auto;
}

.hero-home__grid {
    display: block;
}

.hero-copy {
    max-width: 86rem;
}

.eyebrow,
.section-label,
.project-preview__meta {
    margin: 0 0 18px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow,
.section-label {
    color: var(--accent-cyan);
}

.project-preview__meta {
    color: var(--accent-coral);
}

.hero-copy h1 {
    margin: 0;
    max-width: 15.5ch;
    font-size: clamp(4rem, 7.4vw, 7.1rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.lead {
    margin: 30px 0 0;
    max-width: 48rem;
    color: rgba(243, 238, 231, 0.88);
    font-size: clamp(1.08rem, 1.3vw, 1.24rem);
    line-height: 1.72;
}

.body-copy,
.hero-copy > p:not(.eyebrow):not(.lead) {
    margin: 20px 0 0;
    max-width: 32rem;
    color: var(--text-soft);
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-top: 34px;
}

.section-actions {
    margin-top: 34px;
}

.section-actions-end,
.text-link-end {
    justify-content: flex-end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--accent-coral);
    color: #0a0b0f;
    box-shadow: 0 14px 34px rgba(231, 154, 191, 0.22);
}

.button-secondary {
    background: transparent;
    color: var(--text);
    border-color: rgba(58, 215, 255, 0.42);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-cyan);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
}

.text-link--back::before {
    content: "←";
}

.text-link--back::after {
    content: none;
}

.text-link--coral {
    color: var(--accent-coral);
}

.project-note-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hero-work-preview {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    max-width: 100%;
}

.hero-work-preview__label {
    margin: 0 0 12px;
    color: var(--text-faint);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-work-preview__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.hero-work-preview__list span {
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-work-preview__list span:nth-child(1) {
    color: var(--accent-cyan);
}

.hero-work-preview__list span:nth-child(3) {
    color: var(--accent-coral);
}

.portfolio-grid {
    width: min(var(--site-width), 100%);
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.portfolio-grid__item {
    overflow: hidden;
    aspect-ratio: 1;
    margin: 0;
}

.portfolio-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-grid__item:hover img {
    transform: scale(1.02);
}

.hero-page {
    position: relative;
    padding: clamp(34px, 5vw, 64px);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(19, 22, 28, 0.94), rgba(13, 15, 19, 0.98));
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-generic .hero-copy,
.hero-page .hero-copy {
    max-width: 44rem;
}

.hero-work {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: stretch;
}

.hero-work .hero-copy {
    position: relative;
    z-index: 2;
    max-width: none;
}

.hero-work .hero-copy h1 {
    max-width: 10.5ch;
    text-wrap: balance;
}

.hero-work__wall {
    position: relative;
    z-index: 0;
    min-height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(243, 238, 231, 0.06);
    background:
        linear-gradient(180deg, rgba(16, 18, 24, 0.08), rgba(12, 14, 19, 0.16)),
        url("../images/invader.png") center center / 88px 88px repeat;
    box-shadow: inset 0 0 0 1px rgba(243, 238, 231, 0.02);
    opacity: 1;
}

.hero-about-arthur {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) clamp(260px, 20vw, 320px);
    gap: clamp(32px, 4.4vw, 56px);
    align-items: end;
}

.hero-page--icon {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
}

.hero-page--icon .hero-copy {
    max-width: none;
}

.hero-page--icon .hero-copy h1 {
    max-width: 9.4ch;
}

.hero-icon-panel {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: clamp(20px, 4vw, 36px);
    background: transparent;
}

.hero-icon-font {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 300px);
    font-size: clamp(10rem, 20vw, 16rem);
    line-height: 1;
    color: var(--accent-coral);
    filter: drop-shadow(0 18px 42px rgba(231, 154, 191, 0.22));
    font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 48;
}

.hero-icon-font--services {
    transform: rotate(-6deg);
}

.hero-icon-font--contact {
    transform: translateX(8px);
}

.hero-about-arthur__portrait {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    min-height: 0;
    justify-self: end;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(18, 21, 28, 0.1), rgba(18, 21, 28, 0.1)),
        url("../images/arthur.png") center center / cover no-repeat;
    box-shadow: var(--shadow-soft);
}

.hero-about-arthur .hero-copy {
    max-width: none;
}

.hero-about-arthur .hero-copy h1 {
    max-width: 16ch;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
}

.section {
    width: min(var(--site-width), 100%);
    margin: 0 auto;
    padding-top: clamp(72px, 10vw, 132px);
    padding-bottom: clamp(72px, 10vw, 132px);
}

.section + .section {
    border-top: 1px solid rgba(243, 238, 231, 0.07);
}

.section-work {
    padding-top: clamp(24px, 4vw, 40px);
}

.section-story--compact {
    padding-top: clamp(72px, 8vw, 108px);
}

.section-heading {
    max-width: 58rem;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.section-heading--wide {
    max-width: 96rem;
}

.section-heading--archive h2 {
    max-width: 24ch;
}

.section-work .section-heading {
    margin-bottom: 22px;
}

.narrow {
    max-width: 46rem;
}

.content-grid,
.card-grid,
.section-split {
    display: grid;
    gap: 34px;
}

.content-grid.two-column,
.section-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.side-stack {
    display: grid;
    gap: 22px;
    align-content: start;
}

.info-card,
.offer-card,
.project-preview,
.cta-card,
.info-card-form {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(19, 22, 28, 0.9), rgba(13, 15, 19, 0.96));
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.info-card > *,
.offer-card > *,
.project-preview > *,
.cta-card > * {
    position: relative;
    z-index: 1;
}

.info-card h3,
.offer-card h3,
.project-preview h3 {
    margin: 0 0 10px;
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.info-card p,
.offer-card p,
.project-preview p,
.content-grid p,
.section-split p,
.prose-content p {
    margin: 0;
    color: var(--text-soft);
}

.bullet-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-soft);
}

.bullet-list li + li {
    margin-top: 10px;
}

.project-grid-editorial {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
}

.case-study-list {
    border-top: 1px solid var(--line);
}

.case-study-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 36px;
    align-items: start;
    padding: 40px 0 46px;
    border-bottom: 1px solid var(--line);
}

.case-study-row__index,
.case-study-row__eyebrow {
    margin: 0;
}

.case-study-row__index {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 0.92;
    color: var(--text-faint);
}

.case-study-row__eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.case-study-row__body h3 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(1.95rem, 3.1vw, 3rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.case-study-row__summary {
    margin: 0;
    max-width: 32rem;
    color: var(--text-soft);
}

.case-study-row__details {
    display: grid;
    gap: 16px;
}

.case-study-row__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.case-study-row:nth-child(odd) .case-study-row__index,
.case-study-row:nth-child(odd) .case-study-row__eyebrow {
    color: var(--accent-cyan);
}

.case-study-row:nth-child(even) .case-study-row__index,
.case-study-row:nth-child(even) .case-study-row__eyebrow {
    color: var(--accent-coral);
}

.archive-card__preview {
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.archive-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-card__projects {
    margin-top: 16px !important;
    color: var(--text-faint) !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-preview {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-preview--main {
    border-top: 2px solid rgba(231, 154, 191, 0.66);
}

.project-preview--signal {
    border-top: 2px solid rgba(58, 215, 255, 0.66);
}

.section-closing {
    margin-top: 22px;
    color: var(--text-soft);
}

.section-closing-end {
    max-width: 42rem;
}

.studio-note {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: start;
}

.studio-note--text-only {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
}

.studio-note__copy p {
    max-width: 38rem;
    color: var(--text-soft);
}

.studio-note__copy p + p {
    margin-top: 16px;
}

.studio-note__aside {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.studio-note__aside--meta {
    align-content: start;
    gap: 26px;
}

.studio-note__meta {
    margin: 0;
    max-width: 24rem;
    color: var(--text-faint);
}

.portrait-panel {
    display: grid;
    gap: 16px;
    width: min(100%, 420px);
}

.portrait-panel__frame {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(18, 22, 28, 0.94), rgba(12, 14, 19, 0.98));
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.portrait-panel__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-panel__caption {
    color: var(--text-faint);
}

.studio-note__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.studio-note__signals span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-faint);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.studio-note__signals span:nth-child(1) {
    border-color: rgba(85, 214, 255, 0.3);
    color: var(--accent-cyan);
}

.studio-note__signals span:nth-child(2) {
    border-color: var(--line);
}

.studio-note__signals span:nth-child(3) {
    border-color: rgba(231, 154, 191, 0.32);
    color: var(--accent-coral);
}

.cta-card {
    background:
        linear-gradient(180deg, rgba(23, 27, 34, 0.94), rgba(15, 17, 22, 0.98));
}

.cta-card--icon {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(180px, 0.62fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
}

.cta-card__content {
    max-width: 46rem;
}

.cta-card__icon-panel {
    display: grid;
    place-items: center;
    min-height: 100%;
}

.cta-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(9rem, 18vw, 14rem);
    line-height: 1;
    color: var(--accent-coral);
    filter: drop-shadow(0 18px 42px rgba(231, 154, 191, 0.22));
    font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 48;
}

.cta-card h2 {
    margin: 0 0 14px;
    max-width: 11ch;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 1;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.cta-card p,
.cta-card .section-label {
    color: var(--text-soft);
}

.hero-actions--split {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.case-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 24px;
    flex-wrap: wrap;
}

.case-link-row .text-link:last-child {
    margin-left: auto;
}

.case-link-row .text-link--back:last-child,
.case-link-row .text-link:only-child {
    margin-left: 0;
}

.project-note-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 28px;
}

.project-note-modal[hidden] {
    display: none;
}

.project-note-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 8, 11, 0.76);
    backdrop-filter: blur(10px);
}

.project-note-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    padding: clamp(28px, 4vw, 36px);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(19, 22, 28, 0.98), rgba(11, 13, 17, 1));
    border: 1px solid rgba(243, 238, 231, 0.12);
    box-shadow: var(--shadow-deep);
}

.project-note-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(243, 238, 231, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.project-note-modal__dialog h2 {
    margin: 0 0 18px;
    max-width: 12ch;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.project-note-modal__summary {
    margin: 0;
    max-width: 40rem;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.7;
}

.project-note-modal__points {
    margin-top: 26px;
    margin-bottom: 0;
}

.project-note-modal__actions {
    margin-top: 30px;
}

.prose-content .case-gallery img,
.prose-content .case-figure img {
    cursor: zoom-in;
}

.case-lightbox {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: grid;
    place-items: center;
    padding: 28px;
}

.case-lightbox[hidden] {
    display: none;
}

.case-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 8, 11, 0.84);
    backdrop-filter: blur(12px);
}

.case-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: calc(100vh - 56px);
    display: grid;
    gap: 14px;
    justify-items: center;
}

.case-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(243, 238, 231, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.case-lightbox__image {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(243, 238, 231, 0.1);
    box-shadow: var(--shadow-deep);
}

.case-lightbox__caption {
    max-width: 56rem;
    margin: 0;
    color: var(--text-soft);
    text-align: center;
}

.simple-contact-form {
    display: grid;
    gap: 16px;
}

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

.contact-field span {
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 16px 17px;
    border: 1px solid rgba(243, 238, 231, 0.1);
    border-radius: 18px;
    background: rgba(9, 10, 13, 0.82);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(58, 215, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(58, 215, 255, 0.1);
}

.contact-dock__actions {
    display: grid;
    gap: 12px;
    align-items: start;
}

.contact-dock__note {
    margin: 0;
    color: var(--text-faint);
    font-size: 0.94rem;
}

.prose-content {
    width: min(var(--reading-width), 100%);
    margin: 0 auto;
}

.prose-content--case-study {
    width: min(920px, 100%);
}

.prose-content--note {
    width: min(760px, 100%);
}

.prose-content h2,
.prose-content h3 {
    margin-top: 44px;
    margin-bottom: 14px;
}

.prose-content ul,
.prose-content ol {
    margin: 18px 0;
    padding-left: 22px;
    color: var(--text-soft);
}

.prose-content li + li {
    margin-top: 10px;
}

.prose-content figure {
    margin: 34px 0;
}

.prose-content figure img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.prose-content figcaption {
    margin-top: 10px;
    color: var(--text-faint);
    font-size: 0.92rem;
}

.section-case-media {
    padding-top: clamp(18px, 3vw, 30px);
    padding-bottom: clamp(12px, 2vw, 22px);
}

.section-case-media + .section {
    padding-top: clamp(36px, 5vw, 66px);
}

.case-hero-image {
    width: min(var(--site-width), 100%);
    margin: 0 auto;
}

.case-hero-image--narrow {
    width: min(50%, 640px);
}

.case-hero-image img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.case-hero-image--note {
    width: min(760px, 100%);
}

.case-meta,
.case-demonstrates {
    margin: 0 0 34px;
    padding: 26px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(19, 22, 28, 0.9), rgba(13, 15, 19, 0.96));
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.case-meta {
    display: grid;
    gap: 10px 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-meta p,
.case-demonstrates p,
.case-demonstrates li,
.direct-contact-card p {
    margin: 0;
}

.case-demonstrates h2 {
    margin-top: 0;
}

.case-gallery {
    display: grid;
    gap: 18px;
    margin: 34px 0;
}

.case-gallery--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-gallery--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-gallery--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.case-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(243, 238, 231, 0.08);
    box-shadow: var(--shadow-soft);
}

.case-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    margin-top: 34px;
}

.direct-contact-card {
    display: grid;
    gap: 18px;
}

.kg-width-wide {
    width: min(calc(var(--site-width) + 120px), 100%);
    margin-left: auto;
    margin-right: auto;
}

.kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.kg-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kg-gallery-row {
    display: flex;
    gap: 14px;
}

.kg-gallery-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.kg-bookmark-card,
.kg-callout-card,
.kg-toggle-card,
.kg-audio-card,
.kg-video-card,
.kg-file-card,
.kg-product-card,
.kg-nft-card,
.kg-button-card,
.kg-before-after-card,
.kg-blockquote-alt {
    margin: 28px 0;
    border-radius: 24px;
}

.kg-bookmark-card {
    display: block;
    overflow: hidden;
    color: inherit;
    border: 1px solid rgba(243, 238, 231, 0.08);
    background: linear-gradient(180deg, rgba(19, 22, 28, 0.9), rgba(13, 15, 19, 0.96));
    box-shadow: var(--shadow-soft);
}

.kg-bookmark-container {
    display: grid;
    grid-template-columns: 1fr minmax(180px, 240px);
    min-height: 180px;
}

.kg-bookmark-content {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.kg-bookmark-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.04;
}

.kg-bookmark-description,
.kg-bookmark-metadata {
    color: var(--text-soft);
}

.kg-bookmark-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 0.92rem;
}

.kg-bookmark-icon {
    width: 24px;
    height: 24px;
}

.kg-bookmark-author,
.kg-bookmark-publisher {
    font-weight: 700;
}

.kg-bookmark-thumbnail img,
.kg-bookmark-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer {
    margin-top: clamp(60px, 9vw, 120px);
    padding-bottom: 52px;
}

.site-footer__inner {
    width: min(var(--site-width), 100%);
    margin: 0 auto;
    padding-top: clamp(34px, 5vw, 52px);
    border-top: 1px solid rgba(243, 238, 231, 0.08);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.95fr);
    gap: 36px 48px;
    align-items: start;
    margin-bottom: 28px;
}

.site-footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.site-footer__mark {
    width: 42px;
    height: 42px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(243, 238, 231, 0.16);
    background: rgba(13, 15, 20, 0.9);
}

.site-footer__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.site-footer__title {
    margin: 0 0 4px;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 0.98;
}

.site-footer__strapline,
.site-footer__copy,
.site-footer__meta {
    color: var(--text-soft);
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
    align-self: stretch;
}

.site-footer__linkgroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__label {
    margin: 0;
    color: var(--text-faint);
    font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer__links a {
    width: fit-content;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.32em;
    transition: color 160ms ease, text-decoration-color 160ms ease, transform 160ms ease;
}

.site-footer__linkgroup:nth-child(1) .site-footer__links a {
    text-decoration-color: rgba(85, 214, 255, 0.9);
}

.site-footer__linkgroup:nth-child(2) .site-footer__links a {
    text-decoration-color: rgba(231, 154, 191, 0.9);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #fff;
    transform: translateX(2px);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(243, 238, 231, 0.08);
}

.site-footer__copy {
    margin: 0;
    flex: 1 1 42rem;
    min-width: 0;
    max-width: 48rem;
    white-space: normal;
}

.site-footer__meta {
    margin: 0;
    flex: 0 0 auto;
    font-size: 0.88rem;
    text-align: right;
    white-space: nowrap;
}

.site-footer__meta a {
    color: var(--text);
    text-decoration-line: underline;
    text-decoration-color: rgba(231, 154, 191, 0.9);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.28em;
}

@media (max-width: 1100px) {
    .hero-home__grid,
    .hero-work,
    .hero-page--icon,
    .studio-note,
    .section-split,
    .content-grid.two-column,
    .hero-about-arthur,
    .cta-card--icon,
    .site-footer__top,
    .site-footer__bottom,
    .site-footer__nav,
    .project-grid-editorial,
    .card-grid.four-column,
    .card-grid.three-column {
        grid-template-columns: 1fr;
    }

    .case-study-row {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .case-study-row__summary,
    .case-study-row__details {
        grid-column: 2;
    }

    .case-gallery--five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__meta {
        text-align: left;
        white-space: normal;
    }

    .site-footer__copy {
        white-space: normal;
    }

    .hero-about-arthur {
        gap: 32px;
        align-items: start;
    }

    .hero-about-arthur .hero-copy h1 {
        max-width: 14.5ch;
    }

    .hero-about-arthur__portrait {
        max-width: 280px;
        justify-self: start;
    }
}

@media (min-width: 1500px) {
    :root {
        --site-width: 1460px;
        --reading-width: 760px;
    }

    .hero-generic .hero-copy,
    .hero-page .hero-copy {
        max-width: 50rem;
    }

    .hero-about-arthur {
        grid-template-columns: minmax(0, 1.7fr) clamp(300px, 19vw, 340px);
        gap: clamp(36px, 4vw, 64px);
    }

    .hero-about-arthur .hero-copy {
        max-width: none;
        padding-right: 0;
    }

    .hero-about-arthur .hero-copy h1 {
        max-width: 16.8ch;
    }

    .hero-about-arthur__portrait {
        max-width: 340px;
    }

    .hero-about-arthur + .managed-content .section-split:first-child {
        grid-template-columns: minmax(0, 2.2fr) minmax(400px, 0.78fr);
        gap: clamp(40px, 4vw, 64px);
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading h2 {
        max-width: 16ch;
    }

    .hero-about-arthur + .managed-content .section-split:first-child p {
        max-width: 58rem;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card {
        width: min(100%, 31rem);
    }
}

.hero-about-arthur + .managed-content .section-split:first-child {
    grid-template-columns: minmax(0, 2.15fr) minmax(360px, 0.8fr);
    gap: clamp(36px, 3.8vw, 56px);
    align-items: start;
}

.hero-about-arthur + .managed-content .section-split:first-child .section-heading {
    max-width: none;
}

.hero-about-arthur + .managed-content .section-split:first-child .section-heading h2 {
    max-width: 15ch;
    font-size: clamp(4rem, 6.2vw, 6.3rem);
    line-height: 1.02;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
}

.hero-about-arthur + .managed-content .section-split:first-child p {
    max-width: 54rem;
}

.hero-about-arthur + .managed-content .section-split:first-child .side-stack {
    justify-self: stretch;
    padding-top: clamp(28px, 3vw, 52px);
}

.hero-about-arthur + .managed-content .section-split:first-child .info-card {
    width: min(100%, 30rem);
    margin-left: auto;
}

.hero-about-arthur + .managed-content .section-split:first-child .info-card h3 {
    max-width: 14ch;
    font-size: clamp(2.05rem, 2.8vw, 3.25rem);
    line-height: 1.02;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
}

@media (max-width: 760px) {
    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .site-nav {
        justify-content: flex-start;
        gap: 14px;
    }

    .site-header__controls {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .site-language-switcher {
        margin-left: 0;
    }

    .hero-home__grid,
    .card-grid.two-column,
    .card-grid.three-column,
    .card-grid.four-column {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(3.4rem, 14vw, 5.6rem);
    }

    .hero-work__wall {
        min-height: 220px;
    }

    .hero-icon-panel {
        min-height: 240px;
    }

    .section-heading h2,
    .cta-card h2 {
        max-width: 100%;
    }

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

    .portfolio-grid__item {
        aspect-ratio: 1;
    }

    .case-study-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 0 28px;
    }

    .case-study-row__summary,
    .case-study-row__details {
        grid-column: auto;
    }

    .case-meta,
    .case-gallery--two,
    .case-gallery--three,
    .case-gallery--five {
        grid-template-columns: 1fr;
    }

    .case-hero-image--narrow {
        width: min(100%, 640px);
    }

    .site-footer__brand {
        gap: 14px;
    }

    .site-footer__top {
        gap: 28px;
    }

    .site-footer__nav {
        gap: 18px;
    }

    .project-preview,
    .info-card,
    .offer-card,
    .cta-card,
    .hero-page {
        border-radius: 24px;
        padding: 26px;
    }

    .hero-actions--split {
        justify-content: flex-start;
    }

    .project-note-modal {
        padding: 18px;
    }

    .project-note-modal__dialog {
        padding: 24px;
        border-radius: 24px;
    }

    .project-note-modal__actions {
        gap: 12px;
    }

    .kg-bookmark-container,
    .kg-gallery-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

@media (min-width: 1500px) {
    .hero-about-arthur,
    .hero-about-arthur + .managed-content .section:first-child {
        width: min(1600px, 100%);
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-about-arthur + .managed-content .section-split:first-child {
        grid-template-columns: minmax(0, 1.48fr) minmax(360px, 0.78fr);
        gap: 48px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section-split:first-child > div:first-child {
        min-width: 0;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading h2 {
        max-width: 18ch;
        font-size: clamp(3.75rem, 4.8vw, 5.45rem);
        line-height: 1.04;
    }

    .hero-about-arthur + .managed-content .section-split:first-child p {
        max-width: 66rem;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .side-stack {
        align-self: start;
        justify-self: end;
        padding-top: 8px;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card {
        width: min(100%, 34rem);
        margin-left: 0;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card h3 {
        max-width: 11ch;
        font-size: clamp(2rem, 2.35vw, 3rem);
        line-height: 1.02;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child),
    .site-footer__inner {
        width: min(1600px, 100%);
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading {
        max-width: 82rem;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading h2 {
        max-width: 14ch;
        font-size: clamp(3.6rem, 4.8vw, 5.5rem);
        line-height: 1.04;
        overflow-wrap: normal;
        hyphens: none;
        text-wrap: balance;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column,
    .hero-about-arthur + .managed-content .section:not(:first-child).section-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) p {
        max-width: 58rem;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.92fr);
        gap: 36px 56px;
    }

    .site-footer__brand {
        gap: 22px;
    }

    .site-footer__copy {
        max-width: 58rem;
    }
}

@media (min-width: 1500px) {
    .hero-about-arthur + .managed-content {
        width: min(1700px, 100%);
        margin: 0 auto;
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-about-arthur + .managed-content .section {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-about-arthur + .managed-content .section-split:first-child {
        grid-template-columns: minmax(0, 1.72fr) minmax(400px, 0.92fr);
        gap: 56px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading {
        max-width: none;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading h2 {
        max-width: 11.5ch;
        font-size: clamp(4.4rem, 5vw, 5.95rem);
        line-height: 1.02;
        overflow-wrap: normal;
        hyphens: none;
        text-wrap: balance;
    }

    .hero-about-arthur + .managed-content .section-split:first-child p {
        max-width: 74ch;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .side-stack {
        width: min(100%, 35rem);
        justify-self: end;
        align-self: start;
        padding-top: 8px;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card {
        width: 100%;
        margin-left: 0;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card h3 {
        max-width: 10.5ch;
        font-size: clamp(2.2rem, 2.5vw, 3.2rem);
        line-height: 1.02;
        overflow-wrap: normal;
        hyphens: none;
        text-wrap: balance;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading {
        max-width: 72rem;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading h2 {
        max-width: 12.5ch;
        font-size: clamp(4rem, 4.5vw, 5.35rem);
        line-height: 1.03;
        overflow-wrap: normal;
        hyphens: none;
        text-wrap: balance;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 56px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split {
        grid-template-columns: minmax(0, 1.55fr) minmax(400px, 0.92fr);
        gap: 56px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) p {
        max-width: 76ch;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .side-stack {
        width: min(100%, 35rem);
        justify-self: end;
        align-self: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .info-card {
        width: 100%;
    }

    .site-footer__inner {
        width: min(1700px, 100%);
        padding-left: 48px;
        padding-right: 48px;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.2fr) minmax(460px, 0.92fr);
        gap: 40px 64px;
    }

    .site-footer__copy {
        max-width: 64rem;
    }
}

@media (min-width: 1500px) {
    .hero-about-arthur {
        width: min(1680px, 100%);
        grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.78fr);
        gap: 56px;
    }

    .hero-about-arthur .hero-copy h1 {
        max-width: 12.5ch;
    }

    .hero-about-arthur__portrait {
        width: 100%;
        max-width: 360px;
        justify-self: end;
    }

    .hero-about-arthur + .managed-content {
        width: min(1680px, 100%);
        margin: 0 auto;
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-about-arthur + .managed-content .section {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-about-arthur + .managed-content .section-split:first-child {
        grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.82fr);
        gap: 64px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading h2 {
        max-width: 16ch;
        font-size: clamp(4rem, 4.8vw, 5.8rem);
        line-height: 1.03;
    }

    .hero-about-arthur + .managed-content .section-split:first-child p {
        max-width: 78ch;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .side-stack {
        width: min(100%, 31rem);
        justify-self: end;
        align-self: start;
        padding-top: 12px;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card {
        width: 100%;
        margin-left: 0;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card h3 {
        max-width: 12ch;
        font-size: clamp(2rem, 2.2vw, 2.8rem);
        line-height: 1.02;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child),
    .site-footer__inner {
        width: min(1680px, 100%);
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading {
        max-width: 88rem;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading h2 {
        max-width: 16ch;
        font-size: clamp(4rem, 4.8vw, 5.8rem);
        line-height: 1.03;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 64px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split {
        grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.82fr);
        gap: 64px;
        align-items: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) p {
        max-width: 78ch;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .side-stack {
        width: min(100%, 31rem);
        justify-self: end;
        align-self: start;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .info-card {
        width: 100%;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.28fr) minmax(520px, 1fr);
        gap: 40px 72px;
    }

    .site-footer__copy {
        max-width: 64rem;
    }
}

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

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

@media (min-width: 1500px) {
    .hero-about-arthur + .managed-content,
    .site-footer__inner {
        width: min(1680px, calc(100% - 96px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 48px !important;
        padding-right: 48px !important;
    }

    .hero-about-arthur + .managed-content .section {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child {
        grid-template-columns: minmax(0, 1.85fr) minmax(380px, 0.95fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading {
        max-width: none !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .section-heading h2 {
        max-width: 14.5ch !important;
        font-size: clamp(4.1rem, 4.5vw, 5.55rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child p {
        max-width: 78ch !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .side-stack {
        width: min(100%, 34rem) !important;
        justify-self: end !important;
        align-self: start !important;
        padding-top: clamp(132px, 10vw, 188px) !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .hero-about-arthur + .managed-content .section-split:first-child .info-card h3 {
        max-width: 12ch !important;
        font-size: clamp(2.15rem, 2.35vw, 2.95rem) !important;
        line-height: 1.02 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading {
        max-width: 88rem !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading h2 {
        max-width: 14.5ch !important;
        font-size: clamp(3.95rem, 4.35vw, 5.35rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split {
        grid-template-columns: minmax(0, 1.7fr) minmax(380px, 0.95fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) p {
        max-width: 78ch !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .side-stack {
        width: min(100%, 34rem) !important;
        justify-self: end !important;
        align-self: start !important;
        padding-top: clamp(120px, 9vw, 172px) !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .info-card {
        width: 100% !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .info-card h3 {
        max-width: 12ch !important;
        font-size: clamp(2.15rem, 2.35vw, 2.95rem) !important;
        line-height: 1.02 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.15fr) minmax(560px, 1fr) !important;
        gap: 40px 72px !important;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
        gap: 22px 48px !important;
    }

    .site-footer__copy {
        max-width: 64rem !important;
    }
}

@media (min-width: 1500px) {
    .hero-about-arthur + .managed-content,
    .site-footer__inner {
        width: min(1680px, calc(100% - 96px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 48px !important;
        padding-right: 48px !important;
    }

    .hero-about-arthur + .managed-content .section {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-about-arthur + .managed-content .section-split {
        grid-template-columns: minmax(0, 1.58fr) minmax(360px, 0.92fr) !important;
        gap: 64px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .section-split > div:first-child {
        min-width: 0 !important;
    }

    .hero-about-arthur + .managed-content .section-split .section-heading {
        max-width: none !important;
    }

    .hero-about-arthur + .managed-content .section-split .section-heading h2 {
        max-width: 12ch !important;
        font-size: clamp(4rem, 4.45vw, 5.5rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .section-split p {
        max-width: 72ch !important;
    }

    .hero-about-arthur + .managed-content .section-split .side-stack {
        width: min(100%, 32rem) !important;
        justify-self: end !important;
        align-self: start !important;
        padding-top: 18px !important;
    }

    .hero-about-arthur + .managed-content .section-split .info-card {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .hero-about-arthur + .managed-content .section-split .info-card h3 {
        max-width: 11ch !important;
        font-size: clamp(2.1rem, 2.3vw, 2.9rem) !important;
        line-height: 1.02 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .section:not(.section-split) .section-heading {
        max-width: 82rem !important;
    }

    .hero-about-arthur + .managed-content .section:not(.section-split) .section-heading h2 {
        max-width: 13.5ch !important;
        font-size: clamp(3.95rem, 4.35vw, 5.35rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .content-grid.two-column {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 64px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .content-grid.two-column p {
        max-width: 72ch !important;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.18fr) minmax(520px, 1fr) !important;
        gap: 40px 72px !important;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
        gap: 24px 48px !important;
    }

    .site-footer__copy {
        max-width: 62rem !important;
    }
}

@media (min-width: 1500px) {
    .hero-about-arthur + .managed-content .section:not(:first-child),
    .site-footer__inner {
        width: min(1760px, calc(100% - 96px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 48px !important;
        padding-right: 48px !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading {
        max-width: 96rem !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .section-heading h2 {
        max-width: 16ch !important;
        font-size: clamp(4rem, 4.6vw, 5.7rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split {
        grid-template-columns: minmax(0, 1.7fr) minmax(360px, 0.95fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split > div:first-child,
    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column > div {
        min-width: 0 !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child) .content-grid.two-column p,
    .hero-about-arthur + .managed-content .section:not(:first-child).section-split p {
        max-width: none !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .side-stack {
        width: min(100%, 32rem) !important;
        justify-self: end !important;
        align-self: start !important;
        padding-top: 18px !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .info-card {
        width: 100% !important;
    }

    .hero-about-arthur + .managed-content .section:not(:first-child).section-split .info-card h3 {
        max-width: 11.5ch !important;
        font-size: clamp(2.1rem, 2.25vw, 2.95rem) !important;
        line-height: 1.02 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .site-footer__top {
        grid-template-columns: minmax(420px, 1.05fr) minmax(0, 1.35fr) !important;
        gap: 40px 72px !important;
        align-items: start !important;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
        gap: 24px 48px !important;
    }

    .site-footer__copy,
    .site-footer__brand {
        max-width: none !important;
    }
}

@media (min-width: 1500px) {
    .page-about .managed-content .section:not(:first-child),
    .site-footer__inner {
        width: min(1760px, calc(100% - 96px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 48px !important;
        padding-right: 48px !important;
    }

    .page-about .managed-content .section:not(:first-child) {
        width: 100% !important;
    }

    .page-about .managed-content .section:not(:first-child) .section-heading {
        max-width: 96rem !important;
    }

    .page-about .managed-content .section:not(:first-child) .section-heading h2 {
        max-width: 15.5ch !important;
        font-size: clamp(4rem, 4.4vw, 5.6rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .page-about .managed-content .section:not(:first-child).section-split {
        grid-template-columns: minmax(0, 1.7fr) minmax(380px, 0.95fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .page-about .managed-content .section:not(:first-child) .content-grid.two-column {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 72px !important;
        align-items: start !important;
    }

    .page-about .managed-content .section:not(:first-child).section-split > div:first-child,
    .page-about .managed-content .section:not(:first-child) .content-grid.two-column > div {
        min-width: 0 !important;
    }

    .page-about .managed-content .section:not(:first-child).section-split p,
    .page-about .managed-content .section:not(:first-child) .content-grid.two-column p {
        max-width: 76ch !important;
    }

    .page-about .managed-content .section:not(:first-child).section-split .side-stack {
        width: min(100%, 34rem) !important;
        justify-self: end !important;
        align-self: start !important;
        padding-top: 18px !important;
    }

    .page-about .managed-content .section:not(:first-child).section-split .info-card {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .page-about .managed-content .section:not(:first-child).section-split .info-card h3 {
        max-width: 12ch !important;
        font-size: clamp(2.1rem, 2.3vw, 2.95rem) !important;
        line-height: 1.02 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .site-footer__top {
        grid-template-columns: minmax(460px, 1.05fr) minmax(0, 1.35fr) !important;
        gap: 40px 72px !important;
        align-items: start !important;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
        gap: 24px 48px !important;
    }

    .site-footer__brand,
    .site-footer__copy {
        max-width: none !important;
    }
}

@media (min-width: 1500px) {
    :root {
        --site-width: 1680px;
        --reading-width: 780px;
    }

    .page-work .hero-work,
    .page-services .hero-page--icon,
    .page-contact .hero-page--icon,
    .page-about .hero-about-arthur,
    .page-work .managed-content .section,
    .page-services .managed-content .section,
    .page-contact .managed-content .section,
    .page-about .managed-content .section:not(:first-child),
    .site-footer__inner {
        width: min(1680px, calc(100% - 96px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .page-work .hero-work,
    .page-services .hero-page--icon,
    .page-contact .hero-page--icon,
    .page-about .hero-about-arthur,
    .site-footer__inner {
        padding-left: 48px !important;
        padding-right: 48px !important;
    }

    .page-work .hero-work {
        grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.9fr) !important;
        gap: 64px !important;
    }

    .page-services .hero-page--icon,
    .page-contact .hero-page--icon {
        grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr) !important;
        gap: 56px !important;
    }

    .page-about .hero-about-arthur {
        grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr) !important;
        gap: 64px !important;
    }

    .page-work .hero-work .hero-copy h1,
    .page-services .hero-page--icon .hero-copy h1,
    .page-contact .hero-page--icon .hero-copy h1,
    .page-about .hero-about-arthur .hero-copy h1 {
        max-width: 13.5ch !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .page-work .managed-content .project-grid-editorial {
        grid-template-columns: 1fr 1fr !important;
        gap: 64px !important;
    }

    .page-work .managed-content .case-study-row {
        grid-template-columns: 110px minmax(0, 1.2fr) minmax(0, 1.15fr) !important;
        gap: 48px !important;
    }

    .page-work .managed-content .case-study-row__body h3 {
        max-width: 14ch !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .page-work .managed-content .case-study-row__summary {
        max-width: 72ch !important;
    }

    .page-services .managed-content .content-grid.two-column,
    .page-services .managed-content .section-split,
    .page-contact .managed-content .content-grid.two-column,
    .page-contact .managed-content .section-split,
    .page-about .managed-content .content-grid.two-column,
    .page-about .managed-content .section-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 64px !important;
        align-items: start !important;
    }

    .page-services .managed-content .section-heading h2,
    .page-contact .managed-content .section-heading h2,
    .page-about .managed-content .section-heading h2 {
        max-width: 15.5ch !important;
        font-size: clamp(4rem, 4.8vw, 5.8rem) !important;
        line-height: 1.03 !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
        text-wrap: balance !important;
    }

    .page-services .managed-content p,
    .page-contact .managed-content p,
    .page-about .managed-content p {
        max-width: 76ch !important;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1.28fr) minmax(520px, 1fr) !important;
        gap: 40px 72px !important;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
        gap: 24px 48px !important;
    }

    .site-footer__copy {
        max-width: 64rem !important;
    }
}
