:root {
    --color-black: #050505;
    --color-white: #ffffff;
    --color-text: #0b0b0b;
    --color-muted: #6f747b;
    --color-line: rgba(5, 5, 5, 0.1);
    --color-soft: #f4f6f8;
    --color-sky: #dce9ee;
    --color-field: #d8e7c7;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --container-width: 1400px;
    --header-height: 48px;
    --section-space: clamp(76px, 10vw, 150px);
    --font-sans: Geist, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-serif: "Libre Baskerville", "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: geometricPrecision;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.skip-link:focus {
    z-index: 1000;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--color-white);
    background: var(--color-black);
    border-radius: var(--radius-sm);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.nav-shell {
    width: min(1200px, calc(100vw - 32px));
    height: 52px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 6px;
    border: 1px solid rgba(245, 245, 245, 0);
    border-radius: 8px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(122, 137, 163, 0.15) 0 0.36px 0.65px -1px, rgba(122, 137, 163, 0.21) 0 3px 5.4px -2px, rgba(122, 137, 163, 0.11) 0 -0.36px 0.65px -1px, rgba(122, 137, 163, 0.15) 0 -3px 5.4px -2px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    pointer-events: auto;
    transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1), background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease, -webkit-backdrop-filter 280ms ease;
}

.site-header.is-scrolled .nav-shell {
    width: min(1000px, calc(100vw - 32px));
    border: 1px solid rgba(245, 245, 245, 0.92);
    background-color: rgba(255, 255, 255, 0.75);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.68));
    box-shadow: rgba(0, 0, 0, 0.18) 0 0.6px 0.6px -1.25px, rgba(0, 0, 0, 0.16) 0 2.3px 2.3px -2.5px, rgba(0, 0, 0, 0.06) 0 10px 10px -3.75px, inset rgba(255, 255, 255, 0.58) 0 1px 0;
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    backdrop-filter: saturate(180%) blur(6px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: 182px;
    min-width: 182px;
    height: 33px;
    color: #000;
    font-size: 0;
    line-height: 0;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-mark::before {
    display: none;
}

.brand-mark > * {
    display: none !important;
}

.brand-mark > .brand-star {
    display: inline-block !important;
}

.brand-mark > .brand-custom-logo {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.brand-mark:has(.brand-custom-logo)::after {
    display: none;
}

.brand-mark::after {
    content: "";
    display: block;
    width: 76px;
    height: 17px;
    flex: 0 0 76px;
    background: currentColor;
    -webkit-mask: url("../images/logo.svg") center / contain no-repeat;
    mask: url("../images/logo.svg") center / contain no-repeat;
}

.brand-star {
    width: 33px;
    height: 33px;
    margin-left: 4px;
    display: inline-block;
    flex: 0 0 33px;
}

.brand-star:empty {
    background: url("../images/brand-star.png") center / contain no-repeat;
    transform: rotate(120deg);
}

.brand-symbol {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brand-symbol-rotor {
    transform-box: fill-box;
    transform-origin: center;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.brand-symbol-eye {
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes jvds58-logo-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes jvds58-footer-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.nav-toggle {
    display: none;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nav-language {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.nav-language-toggle {
    display: inline-flex;
    min-width: 44px;
    height: 28px;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--color-black);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    transition: opacity 180ms ease;
}

.nav-language-caret {
    transition: transform 180ms ease;
}

.nav-language-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    display: grid;
    min-width: 58px;
    padding: 5px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
}

.nav-language-option {
    display: block;
    width: 100%;
    padding: 7px 9px;
    border: 0;
    color: var(--color-black);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
}

.nav-language-option.is-current {
    color: var(--color-white);
    background: var(--color-black);
    border-radius: 4px;
}

.nav-language-option:not(.is-current):hover,
.nav-language-option:not(.is-current):focus-visible {
    background: rgba(15, 23, 42, 0.07);
    border-radius: 4px;
    outline: 0;
}

.nav-language:hover .nav-language-menu,
.nav-language:focus-within .nav-language-menu,
.nav-language.is-open .nav-language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.nav-language:hover .nav-language-caret,
.nav-language:focus-within .nav-language-caret,
.nav-language.is-open .nav-language-caret {
    transform: rotate(180deg);
}

.nav-language-toggle:hover {
    opacity: 0.6;
}

.nav-language-toggle:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 3px;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: gap 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .nav-list {
    gap: 28px;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 19px;
    padding: 0;
    border-radius: 0;
    color: #1d1d1d;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    background: #fff;
}

.letter-swap-ready {
    position: relative;
}

.nav-list a.letter-swap-ready {
    min-width: 0;
}

.nav-list-contact-mobile {
    display: none;
}

.letter-swap-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.letter-swap-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: inherit;
}

.letter-swap-char {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    overflow: hidden;
    line-height: inherit;
    white-space: pre;
}

.letter-swap-primary,
.letter-swap-secondary {
    display: block;
    line-height: inherit;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--letter-swap-delay, 0ms);
    will-change: transform;
}

.letter-swap-primary {
    transform: translateY(0);
}

.letter-swap-secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}

.letter-swap-ready.is-letter-swap-hovered .letter-swap-primary {
    transform: translateY(-100%);
}

.letter-swap-ready.is-letter-swap-hovered .letter-swap-secondary {
    transform: translateY(0);
}

.nav-contact,
.button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 40px;
    padding: 0 24px;
    border-radius: 4px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.site-main {
    min-height: 60vh;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--color-sky);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1101px) and (prefers-reduced-motion: no-preference) {
    .hero-image {
        top: -3%;
        bottom: auto;
        height: 106%;
    }
}

.hero-overlay {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(92px, 10vw, 132px) clamp(18px, 3vw, 40px) 0;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.hero-title-wrap {
    width: min(728px, 92vw);
    margin: 0 auto;
    text-align: center;
}

.eyebrow,
.section-label {
    margin: 0 0 10px;
    color: currentColor;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-title-wrap h1,
.hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    color: #fff;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
}

.hero-title-brand {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.hero-title-brand-strong {
    font-family: var(--font-sans);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
}

.hero-title-brand em {
    font-style: italic;
    font-weight: 600;
}

@media (min-width: 761px) {
    .hero-title-brand em {
        font-size: 64px;
    }
}

.hero-title-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.hero-title-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 1;
    transform: translateY(2px);
}

.hero-title-star img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.hero-rotating-word {
    display: inline-flex;
    min-width: 240px;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}

.hero-rotating-word .split-char {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
}

.hero-rotating-word.is-splitting .split-char {
    animation: jvds58-split-char-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--split-index) * 80ms);
}

.hero-rotating-word.is-leaving .split-char {
    animation: jvds58-split-char-out 0.26s ease both;
    animation-delay: calc(var(--split-index) * 28ms);
}

@keyframes jvds58-split-char-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes jvds58-split-char-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-18px);
    }
}

.page-title-split {
    overflow: visible;
}

@media (prefers-reduced-motion: no-preference) {
    .has-js:not(.motion-initialized):not(.has-split-title-fallback) .archive-page-hero-copy > h2:not(.page-title-split),
    .has-js:not(.motion-initialized):not(.has-split-title-fallback) .services-page-hero-copy > h2:not(.page-title-split) {
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, 58px, 0);
    }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
    .has-js:not(.motion-initialized):not(.has-split-title-fallback) .archive-page-hero-copy > h2:not(.page-title-split),
    .has-js:not(.motion-initialized):not(.has-split-title-fallback) .services-page-hero-copy > h2:not(.page-title-split) {
        transform: translate3d(0, 28px, 0);
    }
}

.page-title-split-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
}

.page-title-split.is-split-active .page-title-split-char {
    animation: jvds58-page-title-split-in 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--split-index) * 50ms);
}

@keyframes jvds58-page-title-split-in {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-bottom {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 100px;
    display: grid;
    grid-template-columns: 368px minmax(0, 1fr) 333px;
    gap: 30px;
    align-items: end;
    width: auto;
    margin: 0;
}

.hero-scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: clamp(72px, 8vw, 98px);
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    transform: translateX(-50%);
    cursor: pointer;
}

.hero-scroll-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-origin: center;
    will-change: transform;
    animation: jvds58-scroll-ring 18s linear infinite;
}

.hero-scroll-ring text {
    fill: #fff;
    font-family: var(--font-sans);
    font-size: 9.8px;
    font-weight: 500;
    letter-spacing: 0.54em;
    line-height: 1;
}

.hero-scroll-arrow {
    position: relative;
    width: 24px;
    height: 54px;
    display: grid;
    place-items: center;
    animation: jvds58-scroll-arrow 1.8s ease-in-out infinite;
}

.hero-scroll-arrow img {
    display: block;
    width: 18px;
    height: 40px;
}

@keyframes jvds58-scroll-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes jvds58-scroll-arrow {
    0%,
    100% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(7px);
    }
}

.hero-kicker {
    display: grid;
    gap: 0;
    width: 368px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 400;
    white-space: nowrap;
}

.hero-kicker strong {
    font-weight: 500;
}

.hero-bottom p {
    margin: 0;
    grid-column: 3;
    width: 333px;
    max-width: 333px;
    justify-self: end;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    text-align: right;
    overflow-wrap: break-word;
    transform: translateY(-4px);
}

.keyword-marquee {
    width: calc(100% + 80px);
    height: 60px;
    margin-left: -40px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 0;
    color: #fff;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.keyword-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: keyword-scroll 36s linear infinite;
}

.keyword-track span {
    display: inline-flex;
    align-items: center;
    margin-right: 42px;
    padding: 0;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.keyword-track span::after {
    content: "";
    width: 20px;
    height: 20px;
    margin-left: 42px;
    flex: 0 0 20px;
    background: url("../images/subtract.svg") center / contain no-repeat;
}

@keyframes keyword-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.section {
    width: min(var(--container-width), calc(100vw - 40px));
    margin: 0 auto;
    padding: var(--section-space) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
    gap: 28px;
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 72px);
}

.section-heading-wide {
    grid-template-columns: 1fr minmax(300px, 460px);
}

.section-heading h2,
.center-heading h2,
.faq-intro h2,
.cta-section h2,
.page-hero h1,
.work-story h2,
.studio-grid h2 {
    margin: 0;
    font-size: clamp(40px, 7vw, 104px);
    line-height: 0.9;
    letter-spacing: 0;
    font-weight: 880;
}

.section-heading h2 span,
.faq-intro h2 span {
    font-family: var(--font-serif);
    font-style: italic;
}

.section-heading p,
.page-hero p,
.center-heading p,
.cta-section p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(15px, 1.45vw, 22px);
    line-height: 1.35;
}

.section-label {
    color: var(--color-muted);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.work-card {
    min-width: 0;
}

.work-card:nth-child(1),
.work-card:nth-child(4),
.work-card:nth-child(5) {
    grid-column: span 2;
}

.work-card a,
.post-card a {
    display: grid;
    gap: 16px;
}

.work-card figure,
.post-card figure,
.work-detail-cover,
.article-cover {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-soft);
}

.work-card figure {
    aspect-ratio: 1.45 / 1;
}

.work-card-image,
.post-card-image,
.work-detail-image,
.article-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

html:not(.motion-ready) .work-card a:hover .work-card-image,
html:not(.motion-ready) .post-card a:hover .post-card-image {
    transform: scale(1.035);
}

.work-card-body,
.post-card-body {
    display: grid;
    gap: 8px;
}

.work-card h3,
.work-card h2,
.post-card h3,
.post-card h2 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 34px);
    line-height: 1.05;
    letter-spacing: 0;
}

.work-card p,
.post-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    margin-top: 28px;
    font-size: 14px;
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.service-list {
    display: grid;
    border-top: 1px solid var(--color-line);
}

.service-row {
    display: grid;
    grid-template-columns: 70px minmax(220px, 0.3fr) minmax(300px, 0.45fr) minmax(220px, 0.25fr);
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-line);
}

.service-row > span {
    color: var(--color-muted);
    font-weight: 800;
}

.service-row h3,
.service-row h2 {
    margin: 0;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.08;
}

.service-row p {
    margin: 0;
    color: #252525;
    font-size: 15px;
}

.service-row ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-muted);
    font-size: 13px;
    text-align: right;
}

.muted-section {
    width: 100%;
    max-width: none;
    background: var(--color-soft);
}

.testimonials-section {
    padding-left: max(20px, calc((100vw - var(--container-width)) / 2));
    padding-right: max(20px, calc((100vw - var(--container-width)) / 2));
}

.center-heading {
    display: grid;
    justify-items: center;
    gap: 14px;
    max-width: 740px;
    margin: 0 auto clamp(34px, 5vw, 72px);
    text-align: center;
}

.center-heading h2 {
    font-size: clamp(30px, 4.8vw, 68px);
    line-height: 1.02;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    margin: 0;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 800;
}

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

.testimonial-card {
    display: grid;
    gap: 28px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: var(--radius-lg);
    background: var(--color-white);
}

.testimonial-card p {
    margin: 0;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.65;
}

.testimonial-card footer {
    display: grid;
    gap: 4px;
}

.testimonial-card span,
.post-card time {
    color: var(--color-muted);
    font-size: 13px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.post-card figure {
    aspect-ratio: 1.42 / 1;
}

.post-card h3,
.post-card h2 {
    font-size: clamp(19px, 1.9vw, 28px);
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.38fr) minmax(320px, 0.62fr);
    gap: clamp(28px, 6vw, 90px);
}

.faq-intro {
    display: grid;
    align-content: start;
    gap: 32px;
}

.faq-intro h2 {
    font-style: italic;
}

.faq-visual {
    position: relative;
    width: min(260px, 70vw);
    min-height: 150px;
}

.faq-visual img {
    width: 170px;
    opacity: 0.9;
}

.faq-visual span {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 86px;
    height: 86px;
    border: 12px solid var(--color-black);
    border-radius: 50%;
}

.faq-list {
    display: grid;
    border-top: 1px solid var(--color-line);
}

.faq-item {
    border-bottom: 1px solid var(--color-line);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    border: 0;
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.1;
}

.faq-question i {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.faq-question i::before,
.faq-question i::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 3px;
    width: 18px;
    height: 2px;
    background: var(--color-black);
}

.faq-question i::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] i::after {
    transform: rotate(0deg);
}

.faq-answer p {
    margin: -6px 0 24px;
    max-width: 720px;
    color: var(--color-muted);
    font-size: 16px;
}

.cta-section {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, 760px) auto;
    gap: 24px;
    align-items: end;
    padding: clamp(80px, 12vw, 160px) max(20px, calc((100vw - var(--container-width)) / 2));
    background: var(--color-soft);
}

.cta-section h2 {
    margin-top: 16px;
    font-size: clamp(38px, 6vw, 92px);
}

.button-dark {
    min-height: 48px;
    padding: 0 24px;
    font-size: 14px;
}

.page-hero {
    width: min(1560px, calc(100vw - 40px));
    margin: 0 auto;
    padding: clamp(118px, 16vw, 190px) 0 clamp(54px, 8vw, 90px);
}

.compact-hero {
    max-width: 960px;
    margin-left: max(20px, calc((100vw - 1560px) / 2));
}

.page-hero h1 {
    max-width: 1080px;
}

.page-hero p {
    max-width: 760px;
    margin-top: 18px;
}

.studio-hero,
.contact-hero {
    min-height: 70svh;
    display: grid;
    align-content: end;
}

.services-page-hero {
    overflow: hidden;
    background: var(--color-white);
    padding-top: 0;
}

.services-page-hero-copy {
    display: grid;
    gap: 60px;
    width: min(1600px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 160px 20px 80px;
}

.services-page-hero-copy h2 {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(112px, 16.67vw, 240px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
}

.services-page-hero-copy > div {
    width: min(700px, 100%);
    margin: 0 0 0 auto;
}

.services-page-hero-copy h1 {
    margin: 0;
    color: var(--color-black);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: right;
}

.services-page-hero-copy p {
    max-width: 600px;
    margin: 12px 0 0 auto;
    color: #6e7380;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    text-align: right;
}

.services-page-hero-media {
    position: relative;
    width: 100vw;
    height: auto;
    aspect-ratio: 2.4 / 1;
    margin: 0;
    overflow: hidden;
    background: var(--color-soft);
}

.services-page-hero-media::before,
.services-page-hero-media::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 2;
    width: 100vw;
    border-top: 1px solid #e0e0e0;
    pointer-events: none;
    transform: translateX(-50%);
}

.services-page-hero-media::before {
    top: 0;
}

.services-page-hero-media::after {
    bottom: 0;
}

.services-page-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-stats {
    position: relative;
    width: min(1600px, calc(100vw - 40px));
    max-width: none;
    margin: 0 auto;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: repeat(4, 220px);
    justify-content: space-between;
    gap: 0;
}

.services-stats::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    width: min(1720px, 100vw);
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    pointer-events: none;
    transform: translateX(-50%);
}

.services-stats::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    border-bottom: 1px solid #e0e0e0;
    pointer-events: none;
    transform: translateX(-50%);
}

.services-stat-card {
    position: relative;
    min-width: 0;
}

.services-stat-card strong {
    display: block;
    color: var(--color-black);
    font-size: clamp(64px, 5.55vw, 80px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.06em;
}

.services-stat-card strong.count-up-ready {
    font-variant-numeric: tabular-nums;
}

.services-stat-card span {
    display: block;
    margin-top: 8px;
    color: #7d8183;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.services-catalog-heading {
    margin-bottom: 88px;
}

.services-catalog-heading h2 {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(60px, 6.12vw, 88px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.services-catalog-heading h2 span {
    display: inline-block;
    margin-left: 0.06em;
}

.services-catalog-heading p {
    max-width: 580px;
    margin: 18px 0 0;
    color: var(--color-black);
    font-size: clamp(18px, 1.67vw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.service-list-expanded .service-row h3,
.service-list-expanded .service-row h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.18;
}

.service-list-expanded .service-row > span {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 500;
}

.service-list-expanded .service-row ul {
    font-weight: 600;
    text-align: right;
}

.services-section[aria-labelledby="services-catalog-title"] {
    position: relative;
    width: min(1600px, calc(100vw - 40px));
    padding: 100px 20px 80px;
}

.services-section[aria-labelledby="services-catalog-title"]::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    width: min(1720px, 100vw);
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    pointer-events: none;
    transform: translateX(-50%);
}

.services-section[aria-labelledby="services-catalog-title"] > * {
    position: relative;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row {
    display: grid;
    grid-template-columns: 50px minmax(260px, 340px) minmax(200px, 240px) 295px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 0;
    min-height: 438px;
    padding: 60px 0;
    border-bottom-color: #e2e2e2;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row:last-child {
    border-bottom-color: transparent;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row > span {
    grid-column: 1;
    grid-row: 1;
    color: var(--color-black);
    line-height: 28px;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row h3,
.services-section[aria-labelledby="services-catalog-title"] .service-row h2 {
    grid-column: 2;
    grid-row: 1;
    letter-spacing: -0.03em;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row p {
    grid-column: 2;
    grid-row: 1;
    max-width: 340px;
    margin-top: 40px;
    color: #7d8183;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row ul {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: auto;
    max-width: 240px;
    color: #111112;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.05em;
    text-align: left;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row li::before {
    content: "";
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    background:
        linear-gradient(#a9afb4, #a9afb4) center / 11px 1px no-repeat,
        linear-gradient(#a9afb4, #a9afb4) center / 1px 11px no-repeat;
}

.service-row-media {
    grid-column: 4;
    grid-row: 1;
    width: 295px;
    height: 318px;
    margin: 0;
    overflow: hidden;
    background: #f3f3f3;
}

.service-row-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-testimonials {
    width: 100%;
    max-width: none;
    min-height: 880px;
    align-items: stretch;
    gap: 54px;
    padding: 140px max(20px, calc((100vw - 1600px) / 2)) 120px;
    background: #fff;
}

.services-testimonials .center-heading {
    max-width: 1600px;
    align-items: flex-start;
    margin: 0 auto;
}

.services-testimonials .center-heading h2 {
    color: #000;
    font-size: clamp(64px, 5.7vw, 82px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
}

.services-testimonials .center-heading h2 span {
    display: inline-block;
    margin-left: 0.05em;
}

.services-testimonials .center-heading p {
    margin: 12px 0 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.services-testimonials .testimonial-grid {
    width: 100vw;
    max-width: none;
    display: flex;
    gap: 24px;
    margin-left: max(20px, calc((100vw - 1600px) / 2));
    overflow: hidden;
}

.services-testimonials .testimonial-card {
    flex: 0 0 360px;
    min-height: 260px;
    padding: 28px;
    border: 1px solid #e8e8e8;
}

.services-testimonials .testimonial-card p {
    min-height: 128px;
    font-size: 13px;
    line-height: 1.6;
}

.single-work .work-detail-hero {
    display: flex;
    width: min(1400px, calc(100vw - 40px));
    padding: 160px 0 70px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    overflow: hidden;
}

.single-work .work-detail-hero h1 {
    max-width: 1200px;
    color: var(--color-black);
    font-size: clamp(44px, 4.31vw, 62px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.single-work .work-detail-hero > p {
    max-width: none;
    margin-top: 0;
    color: #bab9ae;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.single-work .work-detail-cover {
    width: min(1400px, calc(100vw - 40px));
    aspect-ratio: 1.28 / 1;
    border-radius: 0;
}

.single-work .work-detail-image {
    transform: none;
}

.work-meta.work-detail-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.work-meta.work-detail-info div {
    border-radius: 0;
}

.work-archive-hero,
.blog-archive-hero,
.studio-page-hero,
.contact-page-hero {
    overflow: visible;
    background: var(--color-white);
    padding-top: 160px;
}

.archive-page-hero-copy {
    width: min(1560px, calc(100vw - 40px));
    margin: 0 auto;
}

.archive-page-hero-copy h2 {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(112px, 16vw, 230px);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: 0;
}

.work-archive-hero .archive-page-hero-copy h2 {
    letter-spacing: -0.06em;
}

.work-archive-hero > .archive-page-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.work-archive-hero > .archive-page-hero-copy > div {
    margin-top: 0;
}

.archive-page-hero-copy > div {
    width: min(700px, 100%);
    margin: 54px 0 0 auto;
    text-align: right;
}

.archive-page-hero-copy h1 {
    margin: 0;
    color: var(--color-black);
    font-size: clamp(28px, 2.22vw, 32px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
}

.archive-page-hero-copy p {
    max-width: 600px;
    margin: 12px 0 0 auto;
    color: #6c7179;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.blog-archive-hero {
    width: min(1720px, 100vw);
    max-width: 1720px;
    margin: 0 auto;
    padding-top: 0;
    overflow: clip;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.blog-archive-hero .archive-page-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: min(1600px, 100%);
    padding: 160px 20px 80px;
    overflow: hidden;
}

.blog-archive-hero .archive-page-hero-copy h2 {
    width: 100%;
    font-size: clamp(112px, 16.67vw, 240px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
}

.blog-archive-hero .archive-page-hero-copy > div {
    width: min(700px, 100%);
    margin: 0 0 0 auto;
    text-align: right;
}

.blog-archive-hero .archive-page-hero-copy p {
    color: #6e7380;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.contact-page-hero {
    width: min(1720px, 100vw);
    max-width: 1720px;
    margin: 0 auto;
    padding-top: 0;
    overflow: clip;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.contact-page-hero .archive-page-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: min(1600px, 100%);
    padding: 160px 20px 80px;
    overflow: hidden;
}

.contact-page-hero .archive-page-hero-copy h2 {
    width: 100%;
    font-size: clamp(112px, 16.67vw, 240px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
}

.contact-page-hero .archive-page-hero-copy > div {
    width: min(700px, 100%);
    margin: 0 0 0 auto;
    text-align: right;
}

.contact-page-hero .archive-page-hero-copy p {
    color: #6e7380;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.studio-page-hero {
    overflow: hidden;
    padding-top: 0;
}

.studio-page-hero .archive-page-hero-copy {
    display: grid;
    gap: 60px;
    width: min(1600px, calc(100vw - 40px));
    padding: 160px 20px 80px;
    overflow: hidden;
}

.studio-page-hero .archive-page-hero-copy h2 {
    font-size: clamp(112px, 16.67vw, 240px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
}

.studio-page-hero .archive-page-hero-copy > div {
    width: min(700px, 100%);
    margin: 0 0 0 auto;
    text-align: right;
}

.studio-page-hero .archive-page-hero-copy p {
    color: #6e7380;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.work-category-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    width: min(1560px, calc(100vw - 40px));
    margin: 60px auto 20px;
}

.work-category-tabs a {
    display: grid;
    min-height: 60px;
    place-items: center;
    border-bottom: 1px solid #e0e0e0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 220ms ease, color 220ms ease;
}

.work-category-tabs a.is-active,
.work-category-tabs a:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.blog-category-tabs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

html[lang="en"] .blog-category-tabs a {
    min-height: 72px;
    padding: 0 16px;
    text-align: center;
}

.archive-work-section {
    width: min(1560px, calc(100vw - 40px));
    padding: 0 0 220px;
}

.archive-work-section .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 66px 12px;
}

.archive-work-section .work-card:nth-child(n) {
    grid-column: auto;
}

.archive-work-section .work-card:nth-child(n+3):nth-child(-n+4) {
    margin-top: 0;
}

.archive-work-section .work-card a {
    gap: 30px;
}

.archive-work-section .work-card figure {
    aspect-ratio: 1.6 / 1;
    border-radius: 0;
}

.archive-work-section .work-card-image {
    border-radius: 0;
}

.archive-work-section .work-card-body {
    gap: 10px;
}

.archive-work-section .work-card h2 {
    color: #111112;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.archive-work-section .work-card p {
    color: #7d8183;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.archive-work-section > .text-link {
    margin-top: 60px;
}

.archive-work-section .work-card[hidden],
.archive-work-section .work-load-more[hidden] {
    display: none !important;
}

.archive-work-section > .work-load-more {
    display: inline-flex;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.archive-work-section > .work-load-more:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 6px;
}

.blog-archive-hero + .prose-content {
    padding-top: 40px;
}

.blog-archive-hero ~ .blog-section {
    width: min(1720px, 100vw);
    max-width: none;
    margin-top: 0;
    padding: 60px 20px 300px;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.blog-archive-hero ~ .blog-section .post-grid {
    grid-template-columns: repeat(3, minmax(0, 520px));
    justify-content: center;
    width: min(1600px, 100%);
    margin: 0 auto;
    gap: 100px 20px;
}

.blog-archive-hero ~ .blog-section .post-card:nth-child(n+4):nth-child(-n+6) {
    margin-top: 0;
}

.blog-archive-hero ~ .blog-section .post-card a {
    gap: 24px;
}

.blog-archive-hero ~ .blog-section .post-card figure {
    aspect-ratio: 1.406 / 1;
}

.blog-archive-hero ~ .blog-section .post-card-body {
    gap: 12px;
}

.blog-archive-hero ~ .blog-section .post-card-meta span,
.blog-archive-hero ~ .blog-section .post-card p,
.blog-archive-hero ~ .blog-section .post-card-tags {
    display: none;
}

.blog-archive-hero ~ .blog-section > .text-link {
    margin-top: 47px;
}

.studio-intro-collage {
    position: relative;
    --studio-intro-gutter: max(20px, calc((100% - 1600px) / 2 + 20px));
    width: min(1720px, 100vw);
    height: 1500px;
    margin: 0 auto;
    overflow: clip;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.studio-intro-collage::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc((100vw - 100%) / -2);
    width: 100vw;
    border-top: 1px solid #e0e0e0;
}

.studio-collage-image {
    position: absolute;
    width: min(540px, 37.5vw);
    height: 340px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: #f5f5f5;
}

.studio-collage-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-collage-image-a {
    top: 80px;
    left: var(--studio-intro-gutter);
}

.studio-collage-image-b {
    top: 363px;
    right: var(--studio-intro-gutter);
}

.studio-collage-image-c {
    top: 713px;
    left: var(--studio-intro-gutter);
}

.studio-collage-image-d {
    right: var(--studio-intro-gutter);
    bottom: 100px;
}

.studio-intro-statement {
    position: absolute;
    top: 650px;
    left: var(--studio-intro-gutter);
    right: var(--studio-intro-gutter);
    box-sizing: border-box;
    padding: 0 40px;
    z-index: 1;
    margin: 0;
    color: #000;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
}

.studio-intro-statement strong {
    color: #000;
    font-weight: 700;
}

.studio-intro-statement span {
    color: #000;
}

.studio-metrics {
    display: flex;
    width: min(1720px, 100vw);
    min-height: 0;
    margin: 0 auto;
    padding: 100px 20px;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.studio-metric-row {
    position: relative;
    display: flex;
    width: min(1600px, 100%);
    height: 240px;
    min-height: 0;
    padding: 48px 20px;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 5vw, 120px);
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    overflow: hidden;
    cursor: default;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.studio-metric-row:last-child {
    border-bottom: 0;
}

.studio-metric-row > * {
    position: relative;
    z-index: 1;
}

.studio-metric-row span {
    flex: 0 0 254px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.studio-metric-row strong {
    flex: 0 0 180px;
    min-width: 0;
    color: #000;
    font-size: 100px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
}

.studio-metric-row p {
    flex: 0 0 300px;
    max-width: 300px;
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.studio-metric-row:hover {
    background: #000;
    border-color: #000;
}

.studio-metric-row:hover span,
.studio-metric-row:hover strong,
.studio-metric-row:hover p {
    color: #fff;
}

.studio-metric-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10020;
    display: none;
    width: clamp(170px, 17vw, 250px);
    height: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0) scale(0.88) rotate(-4deg);
    transition: opacity 160ms ease, transform 180ms ease;
    will-change: left, top, transform, opacity;
}

.studio-metric-cursor.is-visible {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1) rotate(-4deg);
}

@media (hover: hover) and (pointer: fine) {
    .studio-metric-cursor {
        display: block;
    }

    .has-studio-metric-cursor .studio-metric-row {
        cursor: none;
    }
}

.studio-quote-scene,
.studio-belief,
.studio-night-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.studio-quote-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 760px;
    padding: 0 120px;
    background: #9da8a2;
}

.studio-quote-scene img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.studio-belief img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.studio-quote-scene::after,
.studio-belief::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.24);
}

.studio-quote-scene > div {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 39px;
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    padding: 150px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.studio-quote-scene span {
    display: block;
    width: 70px;
    height: 52px;
    margin: 0;
    color: #fff;
    font-size: 96px;
    font-family: Georgia, serif;
    line-height: 0.58;
}

.studio-quote-scene p {
    margin: 0;
    width: 100%;
    max-width: 1440px;
    color: #fff;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
}

.studio-quote-scene small {
    display: grid;
    grid-template-columns: 70px max-content;
    align-items: center;
    gap: 20px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.studio-quote-scene small::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: url("../images/studio-michael-avatar.png") center / cover no-repeat;
    filter: none;
}

.studio-quote-scene small > span {
    display: flex;
    width: auto;
    height: auto;
    margin: 0;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    gap: 12px;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
}

.studio-quote-scene small strong,
.studio-quote-scene small em {
    display: block;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.studio-quote-scene small strong {
    font-size: 20px;
    font-weight: 700;
}

.studio-quote-scene small em {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
}

.studio-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1720px, 100vw);
    min-height: 1116px;
    margin: 0 auto;
    padding: 160px 0;
    overflow: hidden;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.studio-clients-copy {
    width: 100%;
    max-width: 1600px;
    margin: 0 0 60px;
    padding: 0 20px;
}

.studio-clients-copy h2 {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    color: #000;
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.studio-clients-copy h2 span {
    font-size: 0.58em;
    line-height: 0.82;
}

.studio-clients-copy p {
    max-width: 600px;
    margin: 16px 0 0;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.studio-client-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    gap: 8px 12px;
    width: 100%;
    max-width: 1600px;
    height: 528px;
    padding: 0 20px;
    overflow: hidden;
}

.studio-client-logo {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid #f5f5f5;
    background: transparent;
}

.studio-client-logo img {
    display: block;
    width: min(var(--logo-width), 64%);
    max-width: 70%;
    height: auto;
    max-height: 86px;
    object-fit: contain;
}

.studio-image-strip {
    --studio-image-gap: 20px;
    --studio-image-seam-offset: 10px;
    --studio-image-duration: 54s;
    width: 100%;
    height: 540px;
    padding-bottom: 20px;
    overflow: hidden;
}

.studio-image-track,
.studio-image-group {
    display: flex;
    flex: none;
    gap: var(--studio-image-gap);
}

.studio-image-track {
    width: max-content;
    animation: studio-image-marquee var(--studio-image-duration) linear infinite;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.studio-image-strip figure {
    flex: 0 0 430px;
    height: 520px;
    margin: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.studio-image-strip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes studio-image-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - var(--studio-image-seam-offset)), 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .studio-image-strip {
        height: auto;
        overflow: hidden;
    }

    .studio-image-track {
        display: block;
        width: 100%;
        animation: none;
        transform: none;
        will-change: auto;
    }

    .studio-image-group:not([aria-hidden="true"]) {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
        width: 100%;
    }

    .studio-image-group[aria-hidden="true"] {
        display: none;
    }

    .studio-image-strip figure {
        width: 100%;
        height: auto;
        aspect-ratio: 430 / 520;
    }
}

/* English typography adaptations keep the confirmed Chinese layout untouched. */
html[lang="en"] .nav-list {
    gap: clamp(20px, 2.2vw, 36px);
}

html[lang="en"] .nav-list a,
html[lang="en"] .nav-contact {
    white-space: nowrap;
}

html[lang="en"] .hero-title-wrap {
    width: min(1040px, 94vw);
}

html[lang="en"] .hero-title-line {
    flex-wrap: wrap;
    max-width: 1040px;
    gap: 10px 18px;
    font-size: clamp(46px, 5.2vw, 76px);
    line-height: 0.96;
    white-space: normal;
}

html[lang="en"] .hero-rotating-word {
    min-width: 0;
    overflow: visible;
    white-space: normal;
}

html[lang="en"] .hero-bottom {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr) minmax(300px, 380px);
}

html[lang="en"] .hero-kicker {
    width: auto;
    max-width: 420px;
    font-size: clamp(22px, 1.8vw, 28px);
    white-space: normal;
}

html[lang="en"] .hero-bottom p {
    width: auto;
    max-width: 380px;
}

html[lang="en"] .section-heading h2,
html[lang="en"] .center-heading h2,
html[lang="en"] .faq-intro h2,
html[lang="en"] .cta-section h2,
html[lang="en"] .archive-page-hero-copy h1,
html[lang="en"] .services-page-hero-copy h1,
html[lang="en"] .page-hero h1 {
    line-height: 0.96;
    overflow-wrap: anywhere;
}

html[lang="en"] .archive-page-hero-copy > div,
html[lang="en"] .services-page-hero-copy > div {
    max-width: 980px;
}

html[lang="en"] .work-card h2,
html[lang="en"] .work-card h3,
html[lang="en"] .post-card h2,
html[lang="en"] .post-card h3,
html[lang="en"] .service-row h2,
html[lang="en"] .service-row h3 {
    line-height: 1.08;
    overflow-wrap: anywhere;
}

html[lang="en"] .contact-request-form label > span,
html[lang="en"] .contact-request-form button,
html[lang="en"] .work-category-tabs a {
    line-height: 1.2;
}

@media (max-width: 1100px) {
    html[lang="en"] .hero-title-wrap {
        width: min(820px, 94vw);
    }

    html[lang="en"] .hero-title-line {
        font-size: clamp(40px, 6.6vw, 64px);
    }
}

@media (max-width: 760px) {
    html[lang="en"] .hero-title-wrap {
        width: 100%;
    }

    html[lang="en"] .hero-bottom {
        grid-template-columns: 1fr;
    }

    html[lang="en"] .hero-bottom p {
        width: auto;
        max-width: 330px;
    }

    html[lang="en"] .hero-title-brand,
    html[lang="en"] .hero-title-brand-strong {
        font-size: clamp(36px, 11vw, 52px);
    }

    html[lang="en"] .hero-title-line {
        max-width: 360px;
        gap: 8px 10px;
        font-size: clamp(32px, 9.2vw, 44px);
        line-height: 0.98;
    }

    html[lang="en"] .hero-title-star {
        width: 34px;
        height: 34px;
    }

    html[lang="en"] .hero-kicker {
        max-width: 100%;
        font-size: 20px;
    }

    html[lang="en"] .archive-page-hero-copy h1,
    html[lang="en"] .services-page-hero-copy h1,
    html[lang="en"] .page-hero h1 {
        font-size: clamp(38px, 12vw, 58px);
    }

    html[lang="en"] .cta-typewriter {
        max-width: 92vw;
        overflow-wrap: anywhere;
    }
}

.studio-belief {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 0 120px;
    min-height: 760px;
    background: #d9d9d2;
}

.studio-belief h2 {
    position: absolute;
    top: 47%;
    left: max(20px, calc((100vw - 1600px) / 2));
    z-index: 1;
    width: min(1500px, calc(100vw - 40px));
    margin: 0;
    color: #000;
    font-size: clamp(48px, 4.7vw, 80px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-align: left;
    transform: translateY(-50%);
}

.studio-belief h2 span {
    color: #000;
}

.studio-belief h2 .is-muted {
    color: rgba(0, 0, 0, 0.42);
}

.studio-faq {
    height: 957px;
    margin-top: 0;
}

.studio-night-cta {
    margin-top: 0;
}

.work-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 0;
}

.work-meta div {
    min-width: 180px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    background: var(--color-soft);
}

.work-meta dt {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.work-meta dd {
    margin: 4px 0 0;
    font-weight: 800;
}

.single-work.has-work-prose .work-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 960px);
    gap: 40px;
    align-items: start;
    width: min(1400px, calc(100vw - 40px));
    padding-top: 30px;
    padding-bottom: 120px;
}

:is(.single-work.has-work-prose, .single-article) .work-detail-sidebar {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    position: sticky;
    top: 40px;
    padding: 40px;
    background: #fafbfc;
}

.single-work.has-work-prose .work-detail-content .work-meta.work-detail-info {
    display: block;
    width: 100%;
    margin: 0;
    padding-left: 0;
}

.single-work.has-work-prose .work-detail-content .work-detail-info div {
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
}

.single-work.has-work-prose .work-detail-content .work-detail-info div + div {
    margin-top: 24px;
}

.single-work.has-work-prose .work-detail-content .work-detail-info dt {
    color: #bab9ae;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 28px;
}

.single-work.has-work-prose .work-detail-content .work-detail-info dd {
    margin-top: 0;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button {
    width: 100%;
    min-height: 56.8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 0;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 0 20px;
    color: #473d3d;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button > span {
    transition: transform 180ms ease;
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button > span:last-child {
    color: #2b2b2b;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:hover,
:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:focus-visible {
    border-color: var(--color-black);
    color: var(--color-white);
    background: var(--color-black);
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:hover > span:first-child,
:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:focus-visible > span:first-child {
    transform: translateX(12px);
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:hover > span:last-child,
:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:focus-visible > span:last-child {
    transform: translateX(-12px);
}

:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:hover > span:last-child,
:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button:focus-visible > span:last-child {
    color: var(--color-white);
}

.single-work.has-work-prose .work-detail-main {
    min-width: 0;
}

.single-work.has-work-prose .work-detail-prose {
    max-width: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: justify;
}

.single-work.has-work-prose .work-detail-prose h3 {
    margin: 0 0 15px;
    color: #2b2b2b;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: left;
}

.single-work.has-work-prose .work-detail-prose h3:not(:first-child) {
    margin-top: 0;
}

.single-work.has-work-prose .work-detail-prose p,
.single-work.has-work-prose .work-detail-prose ul {
    margin: 0 0 15px;
}

.single-work.has-work-prose .work-detail-prose ul {
    padding-left: 1.2em;
}

.single-work.has-work-prose .work-detail-prose li {
    margin-bottom: 0;
}

.work-detail-cover,
.article-cover {
    width: min(var(--container-width), calc(100vw - 40px));
    margin: 0 auto;
    aspect-ratio: 1.75 / 1;
}

.work-story {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.work-story > div,
.studio-grid article,
.contact-card,
.index-card {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
}

.work-story h2,
.studio-grid h2 {
    margin-top: 8px;
    font-size: clamp(24px, 2.8vw, 42px);
    line-height: 1.05;
}

.work-story p,
.studio-grid p,
.process-list p,
.contact-card strong,
.contact-card a {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.prose-content {
    max-width: 860px;
    font-size: 18px;
    line-height: 1.75;
}

.prose-content h2,
.prose-content h3 {
    color: var(--color-text);
    line-height: 1.1;
}

.prose-content a {
    border-bottom: 1px solid currentColor;
}

.work-gallery {
    display: grid;
    gap: 20px;
}

.work-gallery img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.single-work .work-gallery {
    width: min(960px, calc(100vw - 40px));
    margin-right: max(20px, calc((100vw - 1400px) / 2));
    margin-left: auto;
}

.single-work.has-work-prose .work-gallery {
    width: 100%;
    margin: 40px 0 0;
    padding-top: 0;
}

.single-work .work-gallery img {
    display: block;
    height: auto;
    border-radius: 0;
    object-fit: contain;
}

.studio-grid,
.contact-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.process-section {
    padding-left: max(20px, calc((100vw - var(--container-width)) / 2));
    padding-right: max(20px, calc((100vw - var(--container-width)) / 2));
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
}

.process-list span {
    color: var(--color-muted);
    font-weight: 800;
}

.process-list strong {
    display: block;
    margin-top: 18px;
    font-size: 22px;
}

.contact-card {
    min-height: 180px;
}

.contact-card a,
.contact-card strong {
    display: block;
    color: var(--color-text);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.05;
}

.contact-form-section {
    max-width: 900px;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.contact-form-section input[type="submit"] {
    width: auto;
    border-color: var(--color-black);
    background: var(--color-black);
    color: var(--color-white);
    cursor: pointer;
}

.work-detail-services {
    display: grid;
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
    gap: 24px;
    align-items: start;
}

.work-detail-services h2,
.related-section h2,
.detail-cta h2 {
    margin: 8px 0 0;
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1;
}

.work-detail-services ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.work-detail-services li,
.article-tags span,
.post-card-tags span {
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 800;
}

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

.detail-nav-card {
    min-height: 160px;
    display: grid;
    align-content: space-between;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.detail-nav-card:hover,
.detail-nav-card:focus-visible {
    color: var(--color-white);
    background: var(--color-black);
    transform: translateY(-4px);
}

.detail-nav-card span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-nav-card:hover span,
.detail-nav-card:focus-visible span {
    color: rgba(255, 255, 255, 0.7);
}

.detail-nav-card strong {
    max-width: 720px;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.15;
}

.detail-cta {
    min-height: 360px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 22px;
    padding-left: clamp(26px, 5vw, 72px);
    padding-right: clamp(26px, 5vw, 72px);
    border-radius: var(--radius-lg);
    background: var(--color-soft);
}

.post-card-meta,
.article-meta,
.article-tags,
.post-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-card-meta span,
.article-meta span,
.article-meta time {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.article-meta time {
    margin-top: 0;
}

.article-meta {
    margin-top: 24px;
}

.article-tags {
    margin-top: 18px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 860px);
    gap: clamp(28px, 6vw, 96px);
    align-items: start;
}

.article-toc {
    position: sticky;
    top: 110px;
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: var(--color-white);
}

.article-toc ol {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.article-toc li {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.article-toc li.is-level-3 {
    padding-left: 14px;
    color: var(--color-muted);
}

.article-content {
    max-width: none;
    padding-top: 0;
}

.single-article .article-hero {
    width: min(1200px, calc(100vw - 40px));
    padding: 180px 60px 60px;
    text-align: center;
    border-left: 1px solid var(--color-line);
    border-right: 1px solid var(--color-line);
}

.article-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 38px;
    min-height: 38px;
    margin: 0;
    padding: 1px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    color: #999;
}

.article-breadcrumb a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    transition: color 160ms ease;
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
    background: transparent;
    color: #000;
    box-shadow: none;
    transform: none;
}

.article-breadcrumb a:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.article-breadcrumb a:active {
    transform: none;
}

.article-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.single-article .article-hero h1 {
    max-width: 800px;
    margin: 24px 0 0;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.single-article .article-meta {
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.single-article .article-meta span,
.single-article .article-meta time {
    color: #7d8183;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.single-article .article-meta span::before {
    content: "/";
    margin-right: 14px;
    color: #7d8183;
}

.single-article .article-cover {
    width: min(1200px, calc(100vw - 40px));
    height: auto;
    padding: 80px;
    aspect-ratio: auto;
    border-radius: 0;
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
    border-right: 1px solid var(--color-line);
    background: var(--color-white);
    overflow: visible;
}

.single-article .article-cover-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.932 / 1;
    border-radius: 0;
    object-fit: cover;
}

.single-article .article-layout {
    display: block;
    width: min(1200px, calc(100vw - 40px));
    padding: 60px 60px 120px;
    border-top: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
    border-right: 1px solid var(--color-line);
}

.single-article .article-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #3e3e42;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
}

.single-article .article-content p {
    margin: 0 0 12px;
}

.single-article .article-content h2 {
    margin: 0 0 20px;
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
}

.single-article .article-content h3 {
    margin: 0 0 24px;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.single-article .article-footer-meta {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.single-article .article-footer-meta span,
.single-article .article-footer-meta time {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

.single-article .article-footer-meta span::before {
    content: "|";
    margin-right: 10px;
    color: #70767d;
    font-size: 15px;
    font-weight: 300;
}

.single-article .article-share {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 40px;
}

.single-article .article-share-label {
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-article .article-share-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.single-article .article-share-button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.single-article .article-share-button img {
    width: 20px;
    height: 20px;
    display: block;
}

.single-article .article-share-button:hover {
    border-color: #000;
    background: #f5f5f5;
    transform: translateY(-2px);
}

.single-article .article-share-button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.single-article .article-share-status {
    min-height: 18px;
    flex-basis: 100%;
    color: #70767d;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.single-article .article-stats {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.single-article .article-stat {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: #000;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.single-article .article-stat strong {
    min-width: 1ch;
    font: inherit;
}

.single-article .article-stat-icon {
    width: 21px;
    height: 21px;
    display: block;
    overflow: visible;
}

.single-article .article-stat-icon-eye path,
.single-article .article-stat-icon-eye circle,
.single-article .article-stat-icon-heart path {
    fill: transparent;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.single-article .article-like-button {
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease;
}

.single-article .article-like-button:hover {
    transform: translateY(-2px);
}

.single-article .article-like-button:focus-visible {
    outline: 2px solid #000;
    outline-offset: 4px;
    border-radius: 2px;
}

.single-article .article-like-button.is-liked {
    color: #000;
}

.single-article .article-like-button.is-liked .article-stat-icon-heart path {
    fill: currentColor;
}

.single-article .article-like-button:disabled {
    opacity: 1;
}

@media (max-width: 760px) {
    .single-article .article-share {
        align-items: flex-start;
        gap: 12px;
        margin-top: 40px;
    }

    .single-article .article-share-label {
        flex-basis: 100%;
    }

    .single-article .article-share-actions {
        gap: 8px;
    }

    .single-article .article-share-button {
        width: 40px;
        height: 40px;
    }

    .single-article .article-stats {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
        justify-content: flex-start;
    }

    .single-article .article-stat {
        min-height: 40px;
    }
}

.single-article .related-section {
    min-height: 694px;
    width: 100%;
    margin: 0;
    padding: 0 0 120px;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.single-article .related-section-inner {
    width: min(1600px, calc(100vw - 80px));
}

.single-article .related-section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    margin-bottom: 60px;
}

.single-article .related-section h2,
.single-article .related-section-header p {
    margin: 0;
    color: #111112;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
}

.single-article .related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.single-article .related-card a {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-article .related-card figure {
    aspect-ratio: 16 / 9;
    border-radius: 0;
    background: #f5f5f5;
}

.single-article .related-card .post-card-image {
    border-radius: 0;
    filter: none;
}

.single-article .related-card .post-card-body {
    gap: 10px;
}

.single-article .related-card time {
    color: #7d8183;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.single-article .related-card h3 {
    margin: 0;
    color: #111112;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.pagination-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 56px;
}

.pagination-nav .page-numbers {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 0 14px;
    font-weight: 800;
}

.pagination-nav .current,
.pagination-nav a:hover,
.pagination-nav a:focus-visible {
    color: var(--color-white);
    background: var(--color-black);
    border-color: var(--color-black);
}

.contact-status {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    width: fit-content;
    margin: 0 0 20px;
    border-radius: 999px;
    padding: 0 0 0 22px;
    background: transparent;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.contact-status::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #20e35b;
    transform: translateY(-50%);
    animation: contact-status-pulse 1.35s ease-in-out infinite;
}

@keyframes contact-status-pulse {
    0%,
    100% {
        opacity: 0.35;
        transform: translateY(-50%) scale(0.82);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.section.contact-page {
    width: min(1720px, 100vw);
    max-width: none;
    margin: 0 auto;
    padding: 0 60px;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 800px));
    justify-content: center;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
}

.contact-info-panel,
.contact-form-panel {
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 40px 150px 20px;
}

.contact-form-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 150px 40px;
    border-left: 1px solid #e0e0e0;
}

.contact-block-label {
    margin: 0 0 10px;
    color: #70767d;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 2;
}

.contact-social-label {
    margin-top: 98px;
}

.contact-methods {
    display: grid;
    gap: 10px;
}

.contact-method {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 0 70px;
    border: 0;
    border-radius: 0;
    background: #f7f8fa;
    overflow: hidden;
    transition: background 180ms ease, color 180ms ease;
}

.contact-method::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: center / contain no-repeat;
    transform: translateY(-50%);
    transition: filter 180ms ease;
}

.contact-method-email::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2732%27%20height%3D%2732%27%20viewBox%3D%270%200%2032%2032%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Crect%20x%3D%274%27%20y%3D%278%27%20width%3D%2724%27%20height%3D%2716%27%20stroke%3D%27%23000%27%20stroke-width%3D%272.4%27/%3E%3Cpath%20d%3D%27M5%209L16%2017L27%209%27%20stroke%3D%27%23000%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.contact-method-wechat::before {
    background-color: #000;
    background-image: none;
    -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMDAxNCAxNC42NzU3QzEwLjAwMTEgMTQuNjU1MSAxMC4wMDEgMTQuNjM0NSAxMC4wMDEgMTQuNjEzOEMxMC4wMDEgMTIuMTA1NSAxMi4wMTc1IDkuOTk1NjQgMTQuNzUzOSA5LjM4MDkyQzE0LjM5MDQgNy4wNzg3MyAxMS45NjAyIDUuMTk5OTUgOC45MDA5OCA1LjE5OTk1QzUuNTgwMzcgNS4xOTk5NSAzLjAwMDk4IDcuNDEzNDQgMy4wMDA5OCA5Ljk3OTNDMy4wMDA5OCAxMC45NDg3IDMuMzYxMzEgMTEuODggNC4wNDA4MiAxMi42NzgxQzQuMDcyOCAxMi43MTU3IDQuMTI0NDMgMTIuNzcxNyA0LjE5MzQyIDEyLjg0MjdDNC43ODUzNyAxMy40NTE3IDUuMTM3MDkgMTQuMjQ1NyA1LjE5NTQ2IDE1LjA4MDVDNS45MDg1NyAxNC42NjgzIDYuNzQyODUgMTQuNTEyMyA3LjU1ODMyIDE0LjYzOTJDNy43MjQxNiAxNC42NjUgNy44NTk4NiAxNC42ODQ3IDcuOTYzNDUgMTQuNjk4MkM4LjI3MTExIDE0LjczODMgOC41ODQxOSAxNC43NTg2IDguOTAwOTggMTQuNzU4NkM5LjI3ODI1IDE0Ljc1ODYgOS42NDU5NSAxNC43MzAxIDEwLjAwMTQgMTQuNjc1N1pNMTAuNDU4MSAxNi42MjdDOS45NTQ2NyAxNi43MTMzIDkuNDMzOTkgMTYuNzU4NiA4LjkwMDk4IDE2Ljc1ODZDOC40OTQ0MSAxNi43NTg2IDguMDk1MDIgMTYuNzMyMyA3LjcwNDk5IDE2LjY4MTVDNy41ODMxMiAxNi42NjU2IDcuNDMxNyAxNi42NDM2IDcuMjUwNzMgMTYuNjE1NEM2Ljg3NjkzIDE2LjU1NzIgNi40OTQzNiAxNi42MzIxIDYuMTcxMyAxNi44MjY4TDQuMjY2NTMgMTcuOTc0NUM0LjEyMDUyIDE4LjA2NDYgMy45NDg5MSAxOC4xMDU3IDMuNzc3MzMgMTguMDkxNkMzLjMzODE0IDE4LjA1NTQgMy4wMTE3OCAxNy42NzQ0IDMuMDQ4MzcgMTcuMjQwNUwzLjE5ODU5IDE1LjQ1OTZDMy4yMzY2NCAxNS4wMDg2IDMuMDc2NjQgMTQuNTYzMiAyLjc1OTMxIDE0LjIzNjdDMi42NjE4MiAxNC4xMzY0IDIuNTgxNCAxNC4wNDkxIDIuNTE4MDIgMTMuOTc0N0MxLjU2NDA2IDEyLjg1NDIgMS4wMDA5OCAxMS40NzMyIDEuMDAwOTggOS45NzkzQzEuMDAwOTggNi4yMzUxNyA0LjUzNzkzIDMuMTk5OTUgOC45MDA5OCAzLjE5OTk1QzEyLjk2MDEgMy4xOTk5NSAxNi4zMDQxIDUuODI2OTkgMTYuNzUwNCA5LjIwNzg4QzIwLjEyMjUgOS4zNjEzNiAyMi44MDEgMTEuNzIzIDIyLjgwMSAxNC42MTM4QzIyLjgwMSAxNS44MDY4IDIyLjM0NDggMTYuOTA5NyAyMS41NzIgMTcuODA0NEMyMS41MjA2IDE3Ljg2MzkgMjEuNDU1NSAxNy45MzM2IDIxLjM3NjUgMTguMDEzN0MyMS4xMTk0IDE4LjI3NDQgMjAuOTg5OCAxOC42MzAxIDIxLjAyMDYgMTguOTkwM0wyMS4xNDIzIDIwLjQxMjVDMjEuMTcyIDIwLjc1OSAyMC45MDc2IDIxLjA2MzIgMjAuNTUxOCAyMS4wOTIxQzIwLjQxMjggMjEuMTAzNCAyMC4yNzM4IDIxLjA3MDYgMjAuMTU1NSAyMC45OTg2TDE4LjYxMjQgMjAuMDgyMUMxOC4zNTA2IDE5LjkyNjYgMTguMDQwNyAxOS44NjY4IDE3LjczNzkgMTkuOTEzM0MxNy41OTEzIDE5LjkzNTggMTcuNDY4NiAxOS45NTMzIDE3LjM2OTkgMTkuOTY2QzE3LjA1MzkgMjAuMDA2NiAxNi43MzAzIDIwLjAyNzcgMTYuNDAxIDIwLjAyNzdDMTMuNzA3NCAyMC4wMjc3IDExLjQwMjUgMTguNjIwMSAxMC40NTgxIDE2LjYyN1pNMTcuNDM0NiAxNy45MzY0QzE4LjAwMTkgMTcuODQ5NCAxOC41NzkzIDE3LjkxMSAxOS4xMTA1IDE4LjExMTFDMTkuMjQ5MiAxNy41NTAzIDE5LjUzNzMgMTcuMDMwNCAxOS45NTI0IDE2LjYwOTRDMjAuMDAyNyAxNi41NTg1IDIwLjAzODggMTYuNTE5OCAyMC4wNTg0IDE2LjQ5NzFDMjAuNTQ2NyAxNS45MzE4IDIwLjgwMSAxNS4yODM5IDIwLjgwMSAxNC42MTM4QzIwLjgwMSAxMi44MDk1IDE4Ljg5ODMgMTEuMiAxNi40MDEgMTEuMkMxMy45MDM3IDExLjIgMTIuMDAxIDEyLjgwOTUgMTIuMDAxIDE0LjYxMzhDMTIuMDAxIDE2LjQxODEgMTMuOTAzNyAxOC4wMjc3IDE2LjQwMSAxOC4wMjc3QzE2LjY0MjQgMTguMDI3NyAxNi44ODA5IDE4LjAxMjQgMTcuMTE1IDE3Ljk4MjNDMTcuMTk1NyAxNy45NzIgMTcuMzAyOSAxNy45NTY2IDE3LjQzNDYgMTcuOTM2NFoiLz48L3N2Zz4=") center / contain no-repeat;
    mask: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9ImN1cnJlbnRDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuMDAxNCAxNC42NzU3QzEwLjAwMTEgMTQuNjU1MSAxMC4wMDEgMTQuNjM0NSAxMC4wMDEgMTQuNjEzOEMxMC4wMDEgMTIuMTA1NSAxMi4wMTc1IDkuOTk1NjQgMTQuNzUzOSA5LjM4MDkyQzE0LjM5MDQgNy4wNzg3MyAxMS45NjAyIDUuMTk5OTUgOC45MDA5OCA1LjE5OTk1QzUuNTgwMzcgNS4xOTk5NSAzLjAwMDk4IDcuNDEzNDQgMy4wMDA5OCA5Ljk3OTNDMy4wMDA5OCAxMC45NDg3IDMuMzYxMzEgMTEuODggNC4wNDA4MiAxMi42NzgxQzQuMDcyOCAxMi43MTU3IDQuMTI0NDMgMTIuNzcxNyA0LjE5MzQyIDEyLjg0MjdDNC43ODUzNyAxMy40NTE3IDUuMTM3MDkgMTQuMjQ1NyA1LjE5NTQ2IDE1LjA4MDVDNS45MDg1NyAxNC42NjgzIDYuNzQyODUgMTQuNTEyMyA3LjU1ODMyIDE0LjYzOTJDNy43MjQxNiAxNC42NjUgNy44NTk4NiAxNC42ODQ3IDcuOTYzNDUgMTQuNjk4MkM4LjI3MTExIDE0LjczODMgOC41ODQxOSAxNC43NTg2IDguOTAwOTggMTQuNzU4NkM5LjI3ODI1IDE0Ljc1ODYgOS42NDU5NSAxNC43MzAxIDEwLjAwMTQgMTQuNjc1N1pNMTAuNDU4MSAxNi42MjdDOS45NTQ2NyAxNi43MTMzIDkuNDMzOTkgMTYuNzU4NiA4LjkwMDk4IDE2Ljc1ODZDOC40OTQ0MSAxNi43NTg2IDguMDk1MDIgMTYuNzMyMyA3LjcwNDk5IDE2LjY4MTVDNy41ODMxMiAxNi42NjU2IDcuNDMxNyAxNi42NDM2IDcuMjUwNzMgMTYuNjE1NEM2Ljg3NjkzIDE2LjU1NzIgNi40OTQzNiAxNi42MzIxIDYuMTcxMyAxNi44MjY4TDQuMjY2NTMgMTcuOTc0NUM0LjEyMDUyIDE4LjA2NDYgMy45NDg5MSAxOC4xMDU3IDMuNzc3MzMgMTguMDkxNkMzLjMzODE0IDE4LjA1NTQgMy4wMTE3OCAxNy42NzQ0IDMuMDQ4MzcgMTcuMjQwNUwzLjE5ODU5IDE1LjQ1OTZDMy4yMzY2NCAxNS4wMDg2IDMuMDc2NjQgMTQuNTYzMiAyLjc1OTMxIDE0LjIzNjdDMi42NjE4MiAxNC4xMzY0IDIuNTgxNCAxNC4wNDkxIDIuNTE4MDIgMTMuOTc0N0MxLjU2NDA2IDEyLjg1NDIgMS4wMDA5OCAxMS40NzMyIDEuMDAwOTggOS45NzkzQzEuMDAwOTggNi4yMzUxNyA0LjUzNzkzIDMuMTk5OTUgOC45MDA5OCAzLjE5OTk1QzEyLjk2MDEgMy4xOTk5NSAxNi4zMDQxIDUuODI2OTkgMTYuNzUwNCA5LjIwNzg4QzIwLjEyMjUgOS4zNjEzNiAyMi44MDEgMTEuNzIzIDIyLjgwMSAxNC42MTM4QzIyLjgwMSAxNS44MDY4IDIyLjM0NDggMTYuOTA5NyAyMS41NzIgMTcuODA0NEMyMS41MjA2IDE3Ljg2MzkgMjEuNDU1NSAxNy45MzM2IDIxLjM3NjUgMTguMDEzN0MyMS4xMTk0IDE4LjI3NDQgMjAuOTg5OCAxOC42MzAxIDIxLjAyMDYgMTguOTkwM0wyMS4xNDIzIDIwLjQxMjVDMjEuMTcyIDIwLjc1OSAyMC45MDc2IDIxLjA2MzIgMjAuNTUxOCAyMS4wOTIxQzIwLjQxMjggMjEuMTAzNCAyMC4yNzM4IDIxLjA3MDYgMjAuMTU1NSAyMC45OTg2TDE4LjYxMjQgMjAuMDgyMUMxOC4zNTA2IDE5LjkyNjYgMTguMDQwNyAxOS44NjY4IDE3LjczNzkgMTkuOTEzM0MxNy41OTEzIDE5LjkzNTggMTcuNDY4NiAxOS45NTMzIDE3LjM2OTkgMTkuOTY2QzE3LjA1MzkgMjAuMDA2NiAxNi43MzAzIDIwLjAyNzcgMTYuNDAxIDIwLjAyNzdDMTMuNzA3NCAyMC4wMjc3IDExLjQwMjUgMTguNjIwMSAxMC40NTgxIDE2LjYyN1pNMTcuNDM0NiAxNy45MzY0QzE4LjAwMTkgMTcuODQ5NCAxOC41NzkzIDE3LjkxMSAxOS4xMTA1IDE4LjExMTFDMTkuMjQ5MiAxNy41NTAzIDE5LjUzNzMgMTcuMDMwNCAxOS45NTI0IDE2LjYwOTRDMjAuMDAyNyAxNi41NTg1IDIwLjAzODggMTYuNTE5OCAyMC4wNTg0IDE2LjQ5NzFDMjAuNTQ2NyAxNS45MzE4IDIwLjgwMSAxNS4yODM5IDIwLjgwMSAxNC42MTM4QzIwLjgwMSAxMi44MDk1IDE4Ljg5ODMgMTEuMiAxNi40MDEgMTEuMkMxMy45MDM3IDExLjIgMTIuMDAxIDEyLjgwOTUgMTIuMDAxIDE0LjYxMzhDMTIuMDAxIDE2LjQxODEgMTMuOTAzNyAxOC4wMjc3IDE2LjQwMSAxOC4wMjc3QzE2LjY0MjQgMTguMDI3NyAxNi44ODA5IDE4LjAxMjQgMTcuMTE1IDE3Ljk4MjNDMTcuMTk1NyAxNy45NzIgMTcuMzAyOSAxNy45NTY2IDE3LjQzNDYgMTcuOTM2NFoiLz48L3N2Zz4=") center / contain no-repeat;
}

.contact-method a,
.contact-method strong {
    display: block;
    margin: 0;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-break: break-word;
    transition: color 180ms ease;
}

.contact-method.is-copy-hovered {
    background: #000;
}

.contact-method.is-copy-hovered,
.contact-method.is-copy-hovered button {
    cursor: none;
}

html.is-copy-cursor-active,
html.is-copy-cursor-active * {
    cursor: none !important;
}

.contact-method.is-copy-hovered::before {
    filter: invert(1);
}

.contact-method.is-copy-hovered a,
.contact-method.is-copy-hovered strong {
    color: #fff;
}

.contact-method button {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
}

.contact-method button:hover,
.contact-method button:focus-visible {
    opacity: 0;
    background: transparent;
}

.copy-cursor {
    position: fixed;
    left: -999px;
    top: -999px;
    z-index: 10020;
    min-width: 112px;
    height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #1677ff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
    will-change: left, top, opacity, transform;
}

.copy-cursor.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.copy-cursor.is-success {
    background: #20e35b;
    color: #000;
}

@media (pointer: coarse) {
    .copy-cursor {
        display: none;
    }
}

.contact-socials {
    display: grid;
    gap: 18px;
    margin-top: 0;
}

.contact-socials a {
    width: fit-content;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
    color: #70767d;
    background: transparent;
    border-color: transparent;
}

.contact-form-panel .section-label {
    display: none;
}

.contact-form-panel h2 {
    margin: 0 0 24px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

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

.contact-request-form label {
    position: relative;
    display: block;
}

.contact-request-form label.is-wide,
.contact-form-actions,
.form-message,
.contact-plugin-form {
    grid-column: 1 / -1;
}

.contact-request-form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact-request-form input,
.contact-request-form select,
.contact-request-form textarea {
    width: 100%;
    min-height: 60px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    padding: 0 14px;
    background: #fff;
    color: var(--color-text);
    font: inherit;
    font-size: 14px;
    font-weight: 400;
}

.contact-request-form input::placeholder,
.contact-request-form textarea::placeholder {
    color: #9f9c90;
    opacity: 1;
}

.contact-request-form input:hover,
.contact-request-form select:hover,
.contact-request-form textarea:hover {
    border-color: #000;
}

.contact-request-form input:focus,
.contact-request-form select:focus,
.contact-request-form textarea:focus {
    border-color: #6b27ff;
    outline: 0;
}

.contact-request-form textarea {
    min-height: 110px;
    padding-top: 14px;
    resize: vertical;
}

.contact-request-form .is-invalid {
    border-color: #d93025;
    background-color: #fff7f7;
}

.contact-request-form select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 52px;
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2016%2016%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M3%206L8%2011L13%206%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 16px;
}

.contact-form-actions {
    display: grid;
    gap: 24px;
    margin-top: 8px;
}

.contact-form-actions .button-dark {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.contact-form-actions p,
.form-message {
    max-width: 740px;
    margin: 0;
    color: #9f9c90;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.form-message {
    min-height: 22px;
}

.form-message.is-error {
    color: #d93025;
}

.site-toast-region {
    position: fixed;
    top: 96px;
    right: auto;
    left: 50%;
    z-index: 10010;
    display: grid;
    gap: 10px;
    pointer-events: none;
    transform: translateX(-50%);
}

.site-toast {
    width: min(360px, calc(100vw - 32px));
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 16px;
    background: #000;
    color: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    opacity: 0;
    pointer-events: auto;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
    cursor: pointer;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-toast-error {
    border-color: #d93025;
    background: #d93025;
}

.contact-plugin-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
}

.article-hero > time {
    display: inline-flex;
    margin-top: 22px;
    color: var(--color-muted);
    font-weight: 700;
}

.site-footer {
    overflow: hidden;
    padding: 30px max(20px, calc((100vw - var(--container-width)) / 2)) 22px;
    border-top: 1px solid var(--color-line);
    background: var(--color-white);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    font-weight: 900;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--color-muted);
    font-size: 13px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 28px);
    margin: clamp(40px, 7vw, 90px) 0;
}

.footer-brand img {
    width: clamp(58px, 12vw, 180px);
    height: clamp(58px, 12vw, 180px);
    object-fit: contain;
}

.footer-brand strong {
    font-size: clamp(72px, 18vw, 250px);
    line-height: 0.8;
    letter-spacing: 0;
    font-weight: 700;
}

.footer-brand sup {
    font-family: "Inter Variable", Arial, sans-serif;
    font-size: 0.18em;
    font-weight: 900;
    vertical-align: super;
}

.footer-bottom {
    color: var(--color-muted);
    font-size: 12px;
}

/* Fidelity pass: closer to the Framer homepage rhythm. */
.nav-shell {
    width: min(1200px, calc(100vw - 32px));
    height: 52px;
    min-height: 52px;
    padding: 0 6px;
}

.brand-mark {
    width: 182px;
    min-width: 182px;
    gap: 5px;
    font-size: 0;
    line-height: 0;
    font-weight: 700;
}

.brand-star {
    width: 33px;
    height: 33px;
    margin-left: 4px;
}

.nav-list {
    gap: 40px;
}

.nav-list a {
    min-height: 19px;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    background: transparent;
}

.nav-contact {
    min-width: 112px;
    min-height: 40px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 16px;
}

.hero-title-wrap {
    margin-top: 70px;
}

.hero-bottom {
    margin-bottom: 0;
    padding-bottom: 0;
}

.keyword-marquee {
    border-top: 0;
    background: rgba(0, 0, 0, 0);
}

.keyword-track span {
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

.section {
    width: min(1400px, calc(100vw - 40px));
}

.section.archive-work-section {
    width: min(1560px, calc(100vw - 40px));
}

.works-section {
    position: relative;
    width: min(1720px, calc(100vw - 40px));
    max-width: 1720px;
    padding: 120px 80px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    scroll-margin-top: 60px;
}

.works-section::before {
    display: none;
}

.works-section > * {
    position: relative;
}

.works-section .section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 60px;
}

.works-section .section-heading > div {
    width: 100%;
}

.works-section .section-label {
    display: none;
}

.works-section .section-heading h2 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: clamp(76px, 6.25vw, 120px);
    line-height: 1;
}

.works-section .section-heading h2 span {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-top: 9px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    background: #000;
    -webkit-mask: url("../images/subtract.svg") center / contain no-repeat;
    mask: url("../images/subtract.svg") center / contain no-repeat;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.section-heading h2,
.faq-intro h2 {
    font-size: clamp(58px, 7.2vw, 108px);
    line-height: 0.88;
}

.works-section .section-heading > p {
    width: 80%;
    max-width: 1248px;
    font-size: clamp(28px, 2.5vw, 48px);
    line-height: 1.4;
    font-weight: 500;
    color: #000;
}

.section-heading p {
    max-width: 520px;
    font-size: clamp(17px, 1.6vw, 24px);
    font-weight: 700;
    color: var(--color-text);
}

.works-section .work-grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 3fr) minmax(0, 4fr);
    gap: 220px 120px;
    width: 100%;
    overflow: hidden;
}

.works-section .work-card {
    grid-column: auto;
    min-width: 0;
}

.works-section .work-card:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
}

.works-section .work-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.works-section .work-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.works-section .work-card:nth-child(4) {
    grid-column: 2 / span 2;
    grid-row: 2;
}

.works-section .work-card:nth-child(5) {
    grid-column: 1 / span 2;
    grid-row: 3;
}

.works-section .work-card:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
}

.works-section .work-card figure,
.works-section .work-card-image {
    border-radius: 0;
}

.works-section .work-card h3,
.works-section .work-card h2 {
    font-size: 16px;
    line-height: 1.25;
}

.works-section .work-card p {
    font-size: 14px;
    line-height: 1.35;
}

.works-section > .text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 80px;
    margin: 80px 0 0;
    border-top: 0;
    border-bottom: 1px solid #262121;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 220ms ease, color 220ms ease;
}

.works-section > .text-link::before {
    display: none;
    content: none;
}

.works-section > .text-link > .letter-swap-text {
    transition: transform 220ms ease;
}

.works-section > .text-link::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 21px;
    background: url("../images/work-link-arrow.svg") center / contain no-repeat;
    transition: transform 220ms ease, filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .works-section > .text-link:hover {
        background-color: #000;
        color: #fff;
    }

    .works-section > .text-link:hover > .letter-swap-text {
        transform: translateX(30px);
    }

    .works-section > .text-link:hover::after {
        transform: translateX(-30px);
        filter: invert(1);
    }
}

.work-grid {
    gap: 140px 120px;
}

.work-card figure {
    aspect-ratio: 1.6 / 1;
}

.work-card a,
.post-card a {
    gap: 9px;
}

.work-card h3,
.work-card h2,
.post-card h3,
.post-card h2 {
    font-size: 13px;
    line-height: 1.22;
    font-weight: 800;
}

.work-card p,
.post-card p,
.post-card time {
    font-size: 10px;
    line-height: 1.35;
}

.services-section {
    padding-top: 120px;
}

.services-section[aria-labelledby="services-catalog-title"] {
    padding-top: 100px;
}

.service-row {
    grid-template-columns: 70px minmax(250px, 0.34fr) minmax(420px, 0.42fr) minmax(220px, 0.24fr);
    padding: 31px 0;
}

.service-row h3,
.service-row h2 {
    font-size: clamp(22px, 2vw, 32px);
}

.service-row p {
    font-size: 13px;
    line-height: 1.45;
}

.service-row ul {
    font-size: 12px;
    line-height: 1.55;
}

.services-section[aria-labelledby="services-title"] {
    position: relative;
    width: min(1720px, calc(100vw - 40px));
    max-width: 1720px;
    padding: 0 80px 80px;
    scroll-margin-top: 15px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    background: #fff;
}

.services-section[aria-labelledby="services-title"]::before {
    display: none;
}

.services-section[aria-labelledby="services-title"] > * {
    position: relative;
}

.services-section[aria-labelledby="services-title"] .section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    margin: 0;
    padding: 80px 20px 60px;
}

.services-section[aria-labelledby="services-title"] .section-heading > div {
    width: 100%;
}

.services-section[aria-labelledby="services-title"] .section-label {
    display: none;
}

.services-section[aria-labelledby="services-title"] .section-heading h2 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: clamp(76px, 6.25vw, 120px);
    line-height: 1;
}

.services-section[aria-labelledby="services-title"] .section-heading h2 span {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-top: 9px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    background: #000;
    -webkit-mask: url("../images/subtract.svg") center / contain no-repeat;
    mask: url("../images/subtract.svg") center / contain no-repeat;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.services-section[aria-labelledby="services-title"] .section-heading > p {
    width: min(1105px, 100%);
    max-width: none;
    font-size: clamp(28px, 2.5vw, 48px);
    line-height: 1;
    font-weight: 500;
    color: #000;
}

.services-section[aria-labelledby="services-title"] .service-list {
    width: 100%;
    padding: 0 20px;
    border-top: 0;
}

.services-section[aria-labelledby="services-title"] .service-row {
    display: grid;
    grid-template-columns: max-content 560px 374px 221px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 288px;
    padding: 60px 0;
    border-top: 1px solid #ccc;
    border-bottom: 0;
    transition: background-color 220ms ease, color 220ms ease;
}

.services-section[aria-labelledby="services-title"] .service-row > * {
    min-width: 0;
}

.services-section[aria-labelledby="services-title"] .service-row > span {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    transition: color 220ms ease, transform 220ms ease;
}

.services-section[aria-labelledby="services-title"] .service-row > span::before {
    content: "{";
}

.services-section[aria-labelledby="services-title"] .service-row > span::after {
    content: "}";
}

.services-section[aria-labelledby="services-title"] .service-row h3,
.services-section[aria-labelledby="services-title"] .service-row h2 {
    margin: 0;
    color: #000;
    font-size: 48px;
    font-weight: 700;
    line-height: 44px;
    transition: color 220ms ease, transform 220ms ease;
}

.services-section[aria-labelledby="services-title"] .service-row p {
    max-width: 374px;
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    transition: color 220ms ease;
}

.services-section[aria-labelledby="services-title"] .service-row ul {
    display: block;
    width: 221px;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    text-align: right;
    list-style: none;
    transition: color 220ms ease, transform 220ms ease;
}

.services-section[aria-labelledby="services-title"] .service-row li {
    margin: 0;
}

.services-section[aria-labelledby="services-title"] > .text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 80px;
    margin: 0;
    border-top: 1px solid #000;
    border-bottom: 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 220ms ease, color 220ms ease;
}

.services-section[aria-labelledby="services-title"] > .text-link::before {
    display: none;
    content: none;
}

.services-section[aria-labelledby="services-title"] > .text-link > .letter-swap-text {
    transition: transform 220ms ease;
}

.services-section[aria-labelledby="services-title"] > .text-link::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 23px;
    height: 14px;
    background-color: currentColor;
    -webkit-mask: url("../images/service-link-arrow.svg") center / contain no-repeat;
    mask: url("../images/service-link-arrow.svg") center / contain no-repeat;
    transition: transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .services-section[aria-labelledby="services-title"] > .text-link:hover {
        background-color: #000;
        color: #fff;
    }

    .services-section[aria-labelledby="services-title"] > .text-link:hover > .letter-swap-text {
        transform: translateX(30px);
    }

    .services-section[aria-labelledby="services-title"] > .text-link:hover::after {
        transform: translateX(-30px);
    }

}

@media (max-width: 1360px) and (min-width: 1101px) {
    .services-section[aria-labelledby="services-title"] {
        width: calc(100vw - 40px);
        padding-right: 80px;
        padding-left: 80px;
    }

    .services-section[aria-labelledby="services-title"] .service-list {
        padding-right: 16px;
        padding-left: 16px;
    }

    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: 44px minmax(340px, 0.95fr) minmax(280px, 1fr) minmax(150px, 0.55fr);
        gap: 18px;
    }

    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2 {
        font-size: clamp(38px, 3.3vw, 44px);
        line-height: 1;
    }

    .services-section[aria-labelledby="services-title"] .service-row p,
    .services-section[aria-labelledby="services-title"] .service-row ul {
        font-size: 13px;
        line-height: 1.75;
    }

    .services-section[aria-labelledby="services-title"] .service-row ul {
        width: auto;
    }
}

.testimonials-section {
    width: 100%;
    max-width: none;
    min-height: 1290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 120px 80px;
    overflow: hidden;
    background: #f7f8fa;
}

.testimonials-section .center-heading {
    width: 100%;
    max-width: 540px;
    gap: 16px;
    margin: 0 auto;
}

.testimonials-section .pill {
    min-width: 100px;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.testimonials-section .center-heading h2 {
    color: #1d1d1d;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.testimonial-grid {
    width: min(1600px, 100%);
    max-width: 1600px;
    margin: 0 auto;
    gap: 16px;
}

.testimonial-card {
    min-height: 412px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: 32px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.testimonial-card p {
    min-height: 200px;
    color: rgba(10, 10, 10, 0.7);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.1px;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #d9dde2;
    color: #1d1d1d;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-person {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.testimonial-card strong {
    color: #1d1d1d;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.testimonial-person > span {
    color: rgba(10, 10, 10, 0.7);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.1px;
}

.testimonials-section.services-testimonials {
    position: relative;
    width: min(1720px, 100vw);
    max-width: 1720px;
    min-height: 918px;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0 auto;
    padding: 120px 0;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    background: #fff;
    overflow: hidden;
}

.testimonials-section.services-testimonials .center-heading {
    width: min(1600px, 100%);
    max-width: 1600px;
    justify-items: start;
    gap: 16px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.testimonials-section.services-testimonials .center-heading h2 {
    color: #000;
    font-size: clamp(64px, 6.12vw, 88px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
}

.testimonials-section.services-testimonials .center-heading p {
    color: #000;
    font-size: clamp(18px, 1.67vw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.testimonials-section.services-testimonials .testimonial-grid {
    --services-testimonial-gap: 24px;
    --services-testimonial-duration: 80s;
    width: min(1560px, calc(100vw - 40px));
    max-width: 1560px;
    height: 358px;
    display: block;
    margin: 60px auto 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12.5%, #000 87.5%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12.5%, #000 87.5%, transparent 100%);
}

.testimonials-section.services-testimonials .testimonial-track,
.testimonials-section.services-testimonials .testimonial-group {
    display: flex;
    flex: none;
    align-items: flex-start;
}

.testimonials-section.services-testimonials .testimonial-track {
    width: max-content;
    animation: services-testimonial-marquee var(--services-testimonial-duration) linear infinite;
    animation-play-state: paused;
    transform: translate3d(0, 0, 0);
}

.testimonials-section.services-testimonials .testimonial-grid.is-testimonial-marquee-visible .testimonial-track {
    animation-play-state: running;
}

.testimonials-section.services-testimonials .testimonial-group {
    gap: var(--services-testimonial-gap);
    padding-right: var(--services-testimonial-gap);
}

@keyframes services-testimonial-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (hover: hover) and (pointer: fine) {
    .testimonials-section.services-testimonials .testimonial-grid.is-testimonial-marquee-visible:hover .testimonial-track {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-section.services-testimonials .testimonial-track {
        animation: none;
        transform: none;
    }
}

.testimonials-section.services-testimonials .testimonial-card {
    flex: 0 0 526px;
    width: 526px;
    height: 358px;
    min-height: 358px;
    gap: 36px;
    padding: 32px 38px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.testimonials-section.services-testimonials .testimonial-content {
    display: grid;
    gap: 40px;
}

.testimonials-section.services-testimonials .testimonial-kicker,
.testimonials-section.services-testimonials .testimonial-quote {
    min-height: 0;
    color: #000;
    font-weight: 400;
    letter-spacing: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.testimonials-section.services-testimonials .testimonial-kicker {
    font-size: 14px;
    line-height: 20px;
    -webkit-line-clamp: 2;
}

.testimonials-section.services-testimonials .testimonial-quote {
    font-size: 20px;
    line-height: 28px;
    -webkit-line-clamp: 5;
}

.testimonials-section.services-testimonials .testimonial-card:nth-child(odd) {
    flex-basis: 220px;
    width: 220px;
    height: 272px;
    min-height: 272px;
    gap: 40px;
    padding: 32px 24px;
}

.testimonials-section.services-testimonials .testimonial-card:nth-child(odd) .testimonial-content {
    gap: 0;
}

.testimonials-section.services-testimonials .testimonial-card:nth-child(odd).has-testimonial-quote {
    height: 358px;
    min-height: 358px;
    gap: 24px;
}

.testimonials-section.services-testimonials .testimonial-card footer {
    gap: 12px;
}

.testimonials-section.services-testimonials .testimonial-card:nth-child(odd) footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
}

.testimonials-section.services-testimonials .testimonial-card:nth-child(odd).has-testimonial-quote footer {
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

.testimonials-section.services-testimonials .testimonial-avatar {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    color: #000;
    background: #e5e8eb;
    font-size: 15px;
    font-weight: 500;
}

.testimonials-section.services-testimonials .testimonial-card:nth-child(odd) .testimonial-avatar {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
}

.testimonials-section.services-testimonials .testimonial-card strong {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.testimonials-section.services-testimonials .testimonial-person > span {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 20px;
}

.blog-section {
    position: relative;
    width: min(1720px, calc(100vw - 40px));
    max-width: 1720px;
    margin: 0 auto;
    padding: 100px 80px 120px;
    overflow: clip;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    background: #fff;
    scroll-margin-top: 60px;
}

.blog-section .section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    margin: 0 0 60px;
}

.blog-section .section-heading > div {
    width: 100%;
}

.blog-section .section-label {
    display: none;
}

.blog-section .section-heading h2 {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    color: #000;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.blog-section .section-heading h2 span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-top: 6px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    background: #000;
    -webkit-mask: url("../images/subtract.svg") center / contain no-repeat;
    mask: url("../images/subtract.svg") center / contain no-repeat;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.blog-section .section-heading > p {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}

.blog-section .post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 10px;
    width: 100%;
}

.blog-section .post-card a {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: inherit;
    text-decoration: none;
}

.blog-section .post-card figure {
    aspect-ratio: 1.4375 / 1;
    border-radius: 0;
    background: #f5f5f5;
}

.blog-section .post-card-image {
    border-radius: 0;
    transition: transform 500ms ease;
}

.blog-section .post-card[hidden],
.blog-section .blog-load-more[hidden] {
    display: none !important;
}

.blog-section .blog-load-more {
    display: inline-flex;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.blog-section .post-card-body {
    gap: 10px;
}

.blog-section .post-card time {
    color: #7d8183;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.blog-section .post-card h3,
.blog-section .post-card h2 {
    margin: 0;
    color: #111112;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.blog-section > .text-link,
.archive-work-section > .text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 80px;
    margin: 80px 0 0;
    border-top: 0;
    border-bottom: 1px solid #262121;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 220ms ease, color 220ms ease;
}

.blog-section > .text-link::before,
.archive-work-section > .text-link::before {
    display: none;
    content: none;
}

.blog-section > .text-link > .letter-swap-text,
.archive-work-section > .text-link > .letter-swap-text {
    transition: transform 220ms ease;
}

.blog-section > .text-link::after,
.archive-work-section > .text-link::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 21px;
    background: url("../images/work-link-arrow.svg") center / contain no-repeat;
    transition: transform 220ms ease, filter 220ms ease;
}

.archive-work-section > .text-link {
    margin-top: 60px;
}

@media (hover: hover) and (pointer: fine) {
    .blog-section > .text-link:hover,
    .archive-work-section > .text-link:hover {
        background-color: #000;
        color: #fff;
    }

    .blog-section > .text-link:hover > .letter-swap-text,
    .archive-work-section > .text-link:hover > .letter-swap-text {
        transform: translateX(30px);
    }

    .blog-section > .text-link:hover::after,
    .archive-work-section > .text-link:hover::after {
        transform: translateX(-30px);
        filter: invert(1);
    }
}

.blog-night-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #050608;
}

.blog-night-cta img {
    display: block;
    width: 100%;
    height: clamp(420px, 51.5vw, 741px);
    object-fit: cover;
    object-position: center;
}

.blog-night-cta strong {
    position: absolute;
    top: 51%;
    left: 50%;
    z-index: 1;
    color: #fff;
    font-size: clamp(56px, 9vw, 118px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.blog-night-cta sup {
    display: inline-block;
    margin-bottom: -1px;
    font-family: "Inter Variable", Arial, sans-serif;
    font-size: 0.46em;
    line-height: 0;
    vertical-align: super;
}

.faq-section {
    width: min(1400px, calc(100vw - 40px));
    grid-template-columns: minmax(320px, 0.46fr) minmax(520px, 0.54fr);
    gap: 86px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.faq-intro h2 {
    font-style: italic;
}

.faq-intro > div > p:not(.section-label) {
    max-width: 380px;
    margin: 10px 0 0;
    font-weight: 800;
    line-height: 1.15;
}

.faq-visual {
    width: 330px;
    min-height: 220px;
}

.faq-visual img {
    width: 210px;
    transform: scaleX(1.45) rotate(-8deg);
    transform-origin: left center;
    opacity: 1;
    filter: contrast(1.3);
}

.faq-visual span {
    right: 54px;
    bottom: 22px;
    width: 74px;
    height: 74px;
    border-width: 11px;
}

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

.faq-question {
    min-height: 106px;
    padding: 0;
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr) 22px;
}

.faq-question em {
    color: var(--color-muted);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
}

.faq-question span {
    font-size: 20px;
    font-weight: 800;
}

.faq-answer p {
    margin: -24px 44px 28px 115px;
    font-size: 13px;
}

.cta-section {
    min-height: 620px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 28px;
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
}

.cta-section div {
    display: grid;
    justify-items: center;
}

.cta-kicker {
    margin: 0;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1;
    font-weight: 900;
    color: var(--color-text);
}

.cta-section h2 {
    max-width: 820px;
    margin-top: 0;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1;
}

.cta-section h2 span {
    display: inline-block;
}

.cta-section p:not(.cta-kicker) {
    max-width: 560px;
    margin-top: 16px;
    font-size: 14px;
}

.cta-section .button-dark {
    min-width: 118px;
    min-height: 42px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* Homepage visual refinements */
.home-testimonials-section .testimonial-card {
    transition-property: background-color;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.home-testimonials-section .testimonial-card p,
.home-testimonials-section .testimonial-card strong,
.home-testimonials-section .testimonial-person > span {
    transition-property: color;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.home-testimonials-section img.testimonial-avatar {
    display: block;
    object-fit: cover;
    object-position: center;
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
    transition-property: outline-color;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

@media (hover: hover) and (pointer: fine) {
    .home-testimonials-section .testimonial-card:hover {
        background-color: #000;
    }

    .home-testimonials-section .testimonial-card:hover p,
    .home-testimonials-section .testimonial-card:hover strong,
    .home-testimonials-section .testimonial-card:hover .testimonial-person > span {
        color: #fff;
    }

    .home-testimonials-section .testimonial-card:hover img.testimonial-avatar {
        outline-color: rgba(255, 255, 255, 0.16);
    }
}

#featured-work-title > span,
#services-title > span {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
}

@media (max-width: 1100px) {
    #featured-work-title > span,
    #services-title > span {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 760px) {
    #featured-work-title > span,
    #services-title > span {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 1100px) {
    .works-section {
        width: calc(100vw - 40px);
        padding: 60px 20px 120px;
    }

    .works-section .section-heading {
        padding-bottom: 80px;
    }

    .works-section .section-heading h2 {
        font-size: clamp(58px, 10vw, 104px);
    }

    .works-section .section-heading > p {
        width: 100%;
        font-size: clamp(26px, 4.4vw, 48px);
    }

    .works-section .work-grid {
        gap: 120px 60px;
    }

    .services-section[aria-labelledby="services-title"] {
        width: calc(100vw - 40px);
        padding: 0 0 80px;
    }

    .services-section[aria-labelledby="services-title"] .section-heading {
        gap: 20px;
        padding: 100px 20px 60px;
    }

    .services-section[aria-labelledby="services-title"] .section-heading h2 {
        font-size: clamp(52px, 8vw, 76px);
    }

    .services-section[aria-labelledby="services-title"] .section-heading > p {
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
    }

    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: max-content minmax(220px, 1fr);
        justify-content: stretch;
        min-height: auto;
        padding: 42px 0;
    }

    .services-section[aria-labelledby="services-title"] .service-row p,
    .services-section[aria-labelledby="services-title"] .service-row ul {
        grid-column: 2;
        width: auto;
        max-width: none;
        text-align: left;
    }

    .work-grid,
    .post-grid,
    .studio-grid,
    .contact-section,
    .contact-page,
    .article-layout,
    .work-detail-services,
    .work-story,
    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout,
    .contact-page {
        gap: 28px;
    }

    .service-row {
        grid-template-columns: 54px 1fr;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row {
        grid-template-columns: 54px minmax(0, 1fr);
        justify-content: stretch;
        gap: 14px 24px;
        min-height: 0;
        padding: 42px 0;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row > span,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h3,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h2,
    .services-section[aria-labelledby="services-catalog-title"] .service-row p,
    .services-section[aria-labelledby="services-catalog-title"] .service-row ul,
    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        grid-column: 2;
        grid-row: auto;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row > span {
        grid-column: 1;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row ul {
        gap: 14px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        width: min(295px, 100%);
    }

    .service-row p,
    .service-row ul {
        grid-column: 2;
    }

    .service-row ul {
        text-align: left;
    }

    .faq-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --section-space: 72px;
    }

    .site-header {
        top: 16px;
    }

    .nav-shell {
        width: calc(100vw - 32px);
        border-radius: 24px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-header.is-scrolled .nav-shell {
        width: calc(100vw - 32px);
        border-radius: 24px;
    }

    .site-header.is-scrolled .nav-list {
        gap: 3px;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        width: 38px;
        height: 28px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle-line {
        width: 27px;
        height: 1px;
        margin: 3px 0;
        background: var(--color-black);
        border-radius: 0;
    }

    .nav-menu {
        width: 100%;
        display: none;
        padding: 8px 0 4px;
    }

    .nav-open .nav-menu {
        display: grid;
        gap: 8px;
    }

    .nav-list {
        display: grid;
        width: 100%;
        gap: 3px;
    }

    .nav-list a,
    .nav-contact {
        width: 100%;
        justify-content: flex-start;
        min-height: 40px;
        padding: 0 14px;
    }

    .hero-overlay {
        padding: 78px 14px 0;
    }

    .hero-image {
        object-position: center top;
    }

    .hero-title-wrap {
        width: 100%;
        margin-top: 6px;
    }

    .hero-title-wrap h1,
    .hero-title {
        font-size: clamp(34px, 13vw, 56px);
        gap: 8px;
    }

    .hero-title-brand,
    .hero-title-brand-strong {
        font-size: clamp(34px, 13vw, 56px);
    }

    .hero-title-brand {
        gap: 8px;
    }

    .hero-title-line {
        flex-wrap: wrap;
        gap: 8px;
        max-width: 100%;
        font-size: clamp(24px, 8vw, 36px);
        white-space: normal;
    }

    .hero-title-star {
        width: clamp(24px, 8vw, 36px);
        height: clamp(24px, 8vw, 36px);
        font-size: clamp(28px, 9vw, 40px);
    }

    .hero-rotating-word {
        min-width: 4em;
    }

    .hero-scroll-cue {
        bottom: 220px;
        width: 96px;
        height: 96px;
    }

    .hero-scroll-ring text {
        font-size: 7.6px;
        letter-spacing: 0.42em;
    }

    .hero-scroll-arrow {
        width: 20px;
        height: 44px;
    }

    .hero-scroll-arrow img {
        width: 16px;
        height: 36px;
    }

    .hero-bottom {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
        margin: auto 0 16px;
    }

    .hero-kicker {
        width: auto;
        max-width: 330px;
        font-size: clamp(15px, 5vw, 20px);
        line-height: 1.15;
        letter-spacing: 0;
        white-space: normal;
    }

    .hero-bottom p {
        grid-column: auto;
        width: auto;
        justify-self: start;
        max-width: 330px;
        font-size: 13px;
        line-height: 1.45;
        font-weight: 400;
        text-align: left;
        transform: none;
    }

    .keyword-marquee {
        width: calc(100% + 28px);
        margin-left: -14px;
    }

    .keyword-track span {
        margin-right: 28px;
        font-size: 12px;
        line-height: 12px;
    }

    .keyword-track span::after {
        width: 16px;
        height: 16px;
        margin-left: 28px;
        flex-basis: 16px;
    }

    .section,
    .page-hero,
    .work-detail-cover,
    .article-cover {
        width: calc(100vw - 28px);
    }

    .works-section {
        width: calc(100vw - 28px);
        padding: 60px 14px 61px;
    }

    .works-section::before {
        width: 100vw;
    }

    .works-section .section-heading {
        gap: 16px;
        padding-bottom: 40px;
    }

    .works-section .section-heading h2 {
        display: block;
        font-size: clamp(40px, 13.5vw, 66px);
    }

    .works-section .section-heading h2 span {
        display: inline-block;
        flex-basis: clamp(28px, 9vw, 42px);
        width: clamp(28px, 9vw, 42px);
        height: clamp(28px, 9vw, 42px);
        margin-top: 5px;
        vertical-align: top;
    }

    .works-section .section-heading > p {
        width: 100%;
        font-size: clamp(24px, 7vw, 34px);
        line-height: 1.25;
    }

    .works-section .work-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .works-section .work-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .services-section[aria-labelledby="services-title"] {
        width: calc(100vw - 28px);
        padding-bottom: 60px;
    }

    .services-section[aria-labelledby="services-title"]::before {
        width: 100vw;
    }

    .services-section[aria-labelledby="services-title"] .section-heading {
        gap: 16px;
        padding: 40px 14px;
    }

    .services-section[aria-labelledby="services-title"] .section-heading h2 {
        display: block;
        font-size: clamp(40px, 13.5vw, 66px);
    }

    .services-section[aria-labelledby="services-title"] .section-heading h2 span {
        display: inline-block;
        flex-basis: clamp(28px, 9vw, 42px);
        width: clamp(28px, 9vw, 42px);
        height: clamp(28px, 9vw, 42px);
        margin-top: 5px;
        vertical-align: top;
    }

    .services-section[aria-labelledby="services-title"] .section-heading > p {
        font-size: clamp(24px, 7vw, 34px);
        line-height: 1.25;
    }

    .services-section[aria-labelledby="services-title"] .service-list {
        padding: 0 14px;
    }

    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 32px 0;
    }

    .services-section[aria-labelledby="services-title"] .service-row p,
    .services-section[aria-labelledby="services-title"] .service-row ul {
        grid-column: auto;
        width: auto;
        text-align: left;
    }

    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1;
    }

    .services-section[aria-labelledby="services-title"] > .text-link {
        width: calc(100% - 28px);
        margin: 0 14px;
    }

    .services-page-hero {
        padding-top: 120px;
    }

    .services-page-hero-copy,
    .single-work .work-detail-hero,
    .single-work .work-detail-cover {
        width: calc(100vw - 40px);
    }

    .services-page-hero-copy {
        display: block;
        padding: 0;
    }

    .services-page-hero-copy h2 {
        position: relative;
        font-size: 82px;
        font-weight: 700;
        line-height: 0.9;
        letter-spacing: 0;
    }

    .services-page-hero-copy h2::after {
        content: "";
        position: absolute;
        left: 6px;
        top: 113px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--color-black);
    }

    .services-page-hero-copy > div {
        width: calc(100% - 35px);
        margin: 117px 0 0 auto;
    }

    .services-page-hero-copy h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2;
        text-align: right;
    }

    .services-page-hero-copy p {
        max-width: none;
        margin-left: 0;
        color: #7d8183;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        text-align: right;
    }

    .services-page-hero-media {
        height: 390px;
        aspect-ratio: auto;
        margin-top: 55px;
    }

    .services-stats {
        width: 270px;
        padding: 100px 0 178px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 40px;
    }

    .services-stat-card strong {
        font-size: 36px;
    }

    .services-stat-card span {
        margin-top: 8px;
        font-size: 14px;
    }

    .services-catalog-heading {
        margin-bottom: 88px;
    }

    .services-catalog-heading h2 {
        font-size: 60px;
    }

    .services-catalog-heading p {
        max-width: 288px;
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.2;
    }

    .services-section[aria-labelledby="services-catalog-title"] {
        width: calc(100vw - 40px);
        padding: 100px 20px 60px;
    }

    .single-work .work-detail-hero {
        width: calc(100vw - 40px);
        padding: 120px 0 38px;
        gap: 20px;
    }

    .single-work .work-detail-hero h1 {
        font-size: 36px;
        font-weight: 400;
        line-height: 1.1;
    }

    .single-work .work-detail-hero > p {
        font-size: 14px;
    }

    .single-work .work-detail-cover {
        aspect-ratio: 1.25 / 1;
    }

    .work-meta.work-detail-info {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .single-work.has-work-prose .work-detail-content {
        grid-template-columns: 1fr;
        gap: 36px;
        width: calc(100vw - 40px);
        padding-top: 44px;
        padding-bottom: 54px;
    }

    :is(.single-work.has-work-prose, .single-article) .work-detail-sidebar {
        min-height: 0;
        gap: 24px;
        position: relative;
        top: auto;
        padding: 20px;
    }

    .single-work.has-work-prose .work-detail-content .work-meta.work-detail-info {
        margin: 0;
        padding-left: 0;
    }

    .single-work.has-work-prose .work-detail-content .work-detail-info div + div {
        margin-top: 24px;
    }

    .single-work.has-work-prose .work-detail-content .work-detail-info dt {
        font-size: 14px;
        line-height: 20px;
    }

    .single-work.has-work-prose .work-detail-content .work-detail-info dd {
        font-size: 16px;
        line-height: 22px;
    }

    :is(.single-work.has-work-prose, .single-article) .work-detail-contact-button {
        min-height: 58px;
        margin-top: 0;
        padding: 0 20px;
    }

    .single-work.has-work-prose .work-detail-prose {
        font-size: 14px;
        line-height: 2;
    }

    .single-work.has-work-prose .work-detail-prose h3 {
        font-size: 24px;
    }

    .single-work.has-work-prose .work-gallery {
        margin-top: 36px;
    }

    .work-archive-hero,
    .blog-archive-hero,
    .studio-page-hero,
    .contact-page-hero {
        padding-top: 120px;
    }

    .blog-archive-hero {
        padding-bottom: 16px;
    }

    .archive-page-hero-copy,
    .work-category-tabs,
    .archive-work-section,
    .blog-archive-hero ~ .blog-section,
    .studio-intro-collage {
        width: calc(100vw - 40px);
    }

    .archive-page-hero-copy {
        width: calc(100vw - 40px);
    }

    .archive-page-hero-copy h2 {
        font-size: 82px;
        font-weight: 700;
        line-height: 0.8;
    }

    .archive-page-hero-copy > div {
        width: calc(100% - 35px);
        margin: 60px 0 0 auto;
        text-align: left;
    }

    .archive-page-hero-copy h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.2;
    }

    .archive-page-hero-copy p {
        max-width: none;
        margin-left: 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }

    .work-category-tabs {
        display: inline-flex;
        align-items: center;
        width: auto;
        margin: 54px 0 24px 20px;
        gap: 6px;
    }

    .work-category-tabs a {
        display: none;
    }

    .work-category-tabs a.is-active {
        display: inline-flex;
        align-items: center;
        min-height: auto;
        padding: 0;
        border: 0;
        background: transparent;
        color: #000;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
    }

    .work-category-tabs a.is-active::before {
        content: "";
        width: 16px;
        height: 16px;
        margin-right: 6px;
        background: url("../images/brand-star.png") center / contain no-repeat;
        filter: none;
    }

    .work-category-tabs a.is-active::after {
        content: "";
        width: 6px;
        height: 6px;
        margin-left: 6px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
    }

    .archive-work-section .work-grid,
    .blog-archive-hero ~ .blog-section .post-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .archive-work-section .work-card a {
        gap: 20px;
    }

    .blog-archive-hero ~ .blog-section {
        margin-top: 44px;
        padding: 60px 0 80px;
    }

    .studio-intro-collage {
        height: auto;
        width: calc(100vw - 40px);
        margin: 121px auto 0;
        display: grid;
        gap: 20px;
    }

    .studio-collage-image,
    .studio-collage-image-a,
    .studio-collage-image-b,
    .studio-collage-image-c,
    .studio-collage-image-d,
    .studio-intro-statement {
        position: static;
    }

    .studio-collage-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1.4 / 1;
    }

    .studio-collage-image-a {
        order: 1;
        margin-bottom: 0;
    }

    .studio-intro-statement {
        order: 2;
    }

    .studio-collage-image-b {
        order: 3;
    }

    .studio-collage-image-c {
        order: 4;
    }

    .studio-collage-image-d {
        order: 5;
    }

    .studio-intro-statement {
        color: #a8a8a8;
        font-size: 30px;
        font-weight: 700;
        line-height: 40px;
        text-align: center;
    }

    .studio-intro-statement strong {
        display: block;
        color: #000;
        font-weight: 700;
    }

    .studio-metrics {
        width: calc(100vw - 28px);
        min-height: 0;
        padding: 60px 14px;
    }

    .studio-metric-row {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
        gap: 14px;
        min-height: 0;
        padding: 34px 14px;
    }

    .studio-metric-row span,
    .studio-metric-row strong,
    .studio-metric-row p {
        flex: none;
        width: auto;
        max-width: none;
    }

    .studio-metric-row span {
        font-size: 16px;
    }

    .studio-metric-row strong {
        font-size: 56px;
    }

    .studio-metric-row p {
        font-size: 14px;
        line-height: 1.55;
    }

    .studio-quote-scene {
        height: 640px;
        min-height: 0;
        padding: 0 20px;
    }

    .studio-quote-scene > div {
        gap: 24px;
        min-height: 100%;
        padding: 96px 0;
    }

    .studio-quote-scene span {
        width: 52px;
        height: 38px;
        font-size: 70px;
    }

    .studio-quote-scene p {
        font-size: 34px;
        line-height: 1.18;
    }

    .studio-quote-scene small {
        grid-template-columns: 48px max-content;
        gap: 12px;
        font-size: 16px;
    }

    .studio-quote-scene small strong {
        font-size: 16px;
    }

    .studio-quote-scene small::before {
        width: 48px;
        height: 48px;
    }

    .studio-quote-scene small em {
        font-size: 13px;
    }

    .studio-clients {
        width: calc(100vw - 28px);
        min-height: 0;
        padding: 70px 0 60px;
    }

    .studio-clients-copy {
        margin-bottom: 38px;
        padding: 0;
    }

    .studio-clients-copy h2 {
        font-size: 54px;
    }

    .studio-clients-copy p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.5;
    }

    .studio-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        height: auto;
        padding: 0;
    }

    .studio-client-logo {
        min-height: 112px;
    }

    .studio-client-logo img {
        width: min(var(--logo-width), 68%);
        max-height: 58px;
    }

    .studio-image-strip {
        --studio-image-gap: 14px;
        --studio-image-seam-offset: 7px;
        height: auto;
        padding-bottom: 14px;
    }

    .studio-image-strip figure {
        flex: 0 0 min(74vw, 300px);
        height: auto;
        aspect-ratio: 430 / 520;
    }

    .studio-belief {
        height: 640px;
        min-height: 0;
        padding: 0 20px;
    }

    .studio-belief h2 {
        top: 45%;
        left: 20px;
        width: calc(100vw - 28px);
        font-size: 36px;
        line-height: 1.12;
    }

    .studio-faq {
        height: auto;
    }

    .single-article .article-hero {
        width: calc(100vw - 40px);
        padding: 120px 20px 58px;
    }

    .article-breadcrumb {
        gap: 0;
    }

    .single-article .article-hero h1 {
        margin-top: 28px;
        font-size: 32px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .single-article .article-meta {
        gap: 8px;
    }

    .single-article .article-meta span::before {
        margin-right: 8px;
    }

    .single-article .article-meta span,
    .single-article .article-meta time {
        font-weight: 400;
        line-height: 1;
    }

    .single-article .article-cover {
        width: calc(100vw - 40px);
        height: auto;
        padding: 20px;
        aspect-ratio: 1.93 / 1;
    }

    .single-article .article-cover-image {
        aspect-ratio: 1.93 / 1;
    }

    .single-article .article-layout {
        width: calc(100vw - 40px);
        padding: 20px 20px 80px;
    }

    .single-article .article-content {
        font-size: 14px;
        line-height: 24px;
    }

    .single-article .article-footer-meta {
        margin-top: 60px;
    }

    .single-article .related-section {
        min-height: auto;
        padding: 60px 0 80px;
    }

    .single-article .related-section-inner {
        width: calc(100vw - 40px);
    }

    .single-article .related-section-header {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 34px;
    }

    .single-article .related-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compact-hero {
        margin-left: 14px;
    }

    .section-heading,
    .section-heading-wide,
    .hero-bottom,
    .cta-section {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .center-heading h2,
    .faq-intro h2,
    .cta-section h2,
    .page-hero h1 {
        font-size: clamp(38px, 15vw, 66px);
    }

    .work-grid,
    .post-grid,
    .testimonial-grid,
    .studio-grid,
    .contact-section,
    .contact-page,
    .contact-request-form,
    .article-layout,
    .work-detail-services,
    .detail-nav,
    .work-story,
    .process-list {
        grid-template-columns: 1fr;
    }

    .article-toc {
        position: static;
    }

    .contact-page-hero {
        min-height: auto;
    }

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

    .detail-cta {
        min-height: 280px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .work-card:nth-child(1),
    .work-card:nth-child(4),
    .work-card:nth-child(5) {
        grid-column: auto;
    }

    .work-card figure,
    .post-card figure,
    .work-detail-cover,
    .article-cover {
        aspect-ratio: 1.25 / 1;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 0;
    }

    .service-row p,
    .service-row ul {
        grid-column: auto;
    }

    .service-list-expanded .service-row {
        gap: 12px;
        padding: 0 0 72px;
    }

    .service-list-expanded .service-row h3,
    .service-list-expanded .service-row h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.16;
    }

    .service-list-expanded .service-row > span {
        font-size: 24px;
    }

    .service-list-expanded .service-row p {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.6;
    }

    .service-list-expanded .service-row ul {
        font-size: 12px;
        line-height: 1.55;
        text-align: left;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 0 0 72px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row > span,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h3,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h2,
    .services-section[aria-labelledby="services-catalog-title"] .service-row p,
    .services-section[aria-labelledby="services-catalog-title"] .service-row ul,
    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        grid-column: auto;
        grid-row: auto;
    }

    .service-row-media {
        width: 100%;
        height: auto;
        margin-top: 8px;
        aspect-ratio: 1 / 1.08;
    }

    .testimonials-section.services-testimonials {
        width: 100%;
        min-height: auto;
        border-right: 0;
        border-left: 0;
        padding: 80px 20px;
    }

    .testimonials-section.services-testimonials .center-heading {
        width: 100%;
    }

    .testimonials-section.services-testimonials .testimonial-grid {
        width: 100%;
        height: auto;
        display: grid;
        max-width: 760px;
        margin-left: 0;
        mask-image: none;
        overflow: visible;
    }

    .testimonials-section.services-testimonials .testimonial-track {
        display: block;
        width: 100%;
        animation: none;
        transform: none;
    }

    .testimonials-section.services-testimonials .testimonial-group {
        display: grid;
        width: 100%;
        gap: 16px;
        padding-right: 0;
    }

    .testimonials-section.services-testimonials .testimonial-group[aria-hidden="true"] {
        display: none;
    }

    .testimonials-section.services-testimonials .testimonial-card,
    .testimonials-section.services-testimonials .testimonial-card:nth-child(odd) {
        width: 100%;
        height: auto;
        min-height: 0;
        flex-basis: auto;
        padding: 24px;
        gap: 24px;
    }

    .testimonials-section.services-testimonials .testimonial-card footer,
    .testimonials-section.services-testimonials .testimonial-card:nth-child(odd) footer {
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .testimonials-section.services-testimonials .testimonial-card:nth-child(odd) .testimonial-avatar {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .cta-section {
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-brand strong {
        font-size: clamp(68px, 28vw, 116px);
    }

    .footer-brand img {
        width: clamp(42px, 16vw, 68px);
        height: clamp(42px, 16vw, 68px);
    }
}

@media (max-width: 1100px) {
    .testimonials-section {
        min-height: auto;
        padding: 90px 40px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .testimonial-card {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .testimonials-section {
        width: 100%;
        padding: 72px 14px;
        gap: 34px;
    }

    .testimonials-section .center-heading {
        max-width: 100%;
    }

    .testimonials-section .center-heading h2 {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.18;
    }

    .testimonial-grid {
        width: 100%;
        max-width: none;
        gap: 16px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 24px;
    }

    .testimonial-card p {
        min-height: 0;
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 1100px) {
    .contact-page-hero {
        width: calc(100vw - 40px);
        padding-top: 0;
        padding-bottom: 0;
    }

    .contact-page-hero .archive-page-hero-copy {
        width: 100%;
        padding: 120px 20px 64px;
    }

    .section.contact-page {
        width: calc(100vw - 40px);
        padding: 0;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-panel {
        padding: 70px 20px;
    }

    .contact-form-panel {
        padding: 70px 20px 90px;
        border-top: 1px solid #e0e0e0;
        border-left: 0;
    }

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

    .blog-archive-hero {
        width: calc(100vw - 40px);
        padding-top: 0;
        padding-bottom: 0;
    }

    .blog-archive-hero .archive-page-hero-copy {
        width: 100%;
        padding: 120px 20px 64px;
    }

    .blog-section {
        width: calc(100vw - 40px);
        padding: 90px 40px 100px;
    }

    .blog-section .section-heading {
        gap: 20px;
        margin-bottom: 50px;
    }

    .blog-section .section-heading h2 {
        font-size: clamp(48px, 8vw, 60px);
    }

    .blog-section .section-heading h2 span {
        flex-basis: clamp(34px, 6vw, 42px);
        width: clamp(34px, 6vw, 42px);
        height: clamp(34px, 6vw, 42px);
    }

    .blog-section .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 16px;
    }

    .blog-archive-hero ~ .blog-section .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 44px 16px;
    }

    .blog-archive-hero ~ .blog-section .post-card:nth-child(n+4):nth-child(-n+6) {
        margin-top: 0;
    }

    .archive-work-section .work-card:nth-child(n+3):nth-child(-n+4) {
        margin-top: 0;
    }

    .blog-section > .text-link,
    .archive-work-section > .text-link {
        margin-top: 60px;
    }
}

@media (max-width: 760px) {
    .contact-page-hero {
        width: calc(100vw - 28px);
    }

    .contact-page-hero .archive-page-hero-copy {
        gap: 54px;
        padding: 104px 14px 52px;
    }

    .contact-page-hero .archive-page-hero-copy h2 {
        font-size: 82px;
        font-weight: 700;
        line-height: 0.8;
    }

    .contact-page-hero .archive-page-hero-copy > div {
        width: calc(100% - 35px);
        margin-left: auto;
        text-align: left;
    }

    .section.contact-page {
        width: calc(100vw - 28px);
    }

    .contact-info-panel {
        padding: 56px 14px;
    }

    .contact-form-panel {
        padding: 56px 14px 72px;
    }

    .contact-request-form {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding-right: 22px;
    }

    .contact-method a,
    .contact-method strong {
        font-size: 20px;
    }

    .blog-archive-hero {
        width: calc(100vw - 28px);
    }

    .blog-archive-hero .archive-page-hero-copy {
        gap: 54px;
        padding: 104px 14px 52px;
    }

    .blog-archive-hero .archive-page-hero-copy h2 {
        font-size: 82px;
        font-weight: 700;
        line-height: 0.8;
    }

    .blog-archive-hero .archive-page-hero-copy > div {
        width: calc(100% - 35px);
        margin-left: auto;
        text-align: left;
    }

    .blog-section {
        width: calc(100vw - 28px);
        padding: 72px 14px;
    }

    .blog-section .section-heading {
        gap: 16px;
        margin-bottom: 34px;
    }

    .blog-section .section-heading h2 {
        display: block;
        font-size: clamp(40px, 13vw, 58px);
        letter-spacing: -1px;
    }

    .blog-section .section-heading h2 span {
        display: inline-block;
        width: clamp(28px, 9vw, 38px);
        height: clamp(28px, 9vw, 38px);
        margin-top: 4px;
        vertical-align: top;
    }

    .blog-section .section-heading > p {
        font-size: clamp(17px, 5vw, 22px);
        line-height: 1.3;
    }

    .blog-section .post-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .blog-archive-hero ~ .blog-section .post-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 34px;
    }

    .blog-section .post-card a {
        gap: 14px;
    }

    .blog-section .post-card figure {
        aspect-ratio: 1.25 / 1;
    }

    .blog-section > .text-link,
    .archive-work-section > .text-link {
        margin-top: 48px;
    }

    .blog-night-cta img {
        height: 360px;
    }

    .blog-night-cta strong {
        font-size: clamp(42px, 16vw, 72px);
    }
}

/* FAQ section replica overrides */
.faq-section {
    width: min(1720px, calc(100vw - 40px));
    max-width: 1720px;
    margin: 0 auto;
    padding: 120px 80px;
    display: grid;
    grid-template-columns: 49% minmax(0, 1fr);
    gap: 40px;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    overflow: hidden;
    scroll-margin-top: 60px;
}

.faq-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
}

.faq-intro .section-label {
    display: none;
}

.faq-intro h2 {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    color: #000;
    font-size: 140px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.8;
}

.faq-intro h2 span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-top: 18px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    background: #000;
    -webkit-mask: url("../images/subtract.svg") center / contain no-repeat;
    mask: url("../images/subtract.svg") center / contain no-repeat;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.faq-intro > div > p:not(.section-label) {
    max-width: 560px;
    margin: 22px 0 0;
    color: #000;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
}

.faq-visual {
    width: min(764px, 100%);
    min-height: 0;
    margin-top: 6px;
    overflow: visible;
}

.faq-visual img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: none;
    transform: none;
}

.faq-visual span {
    display: none;
}

.faq-list {
    align-self: flex-start;
    width: 100%;
    display: grid;
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    min-height: 106px;
    padding: 0;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 0;
    border: 0;
    background: transparent;
    color: #000;
    text-align: left;
    cursor: pointer;
}

.faq-question em {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 20px;
}

.faq-question span {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 25.2px;
}

.faq-question i {
    position: relative;
    width: 22px;
    height: 22px;
    justify-self: end;
}

.faq-question i::before,
.faq-question i::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 3px;
    width: 16px;
    height: 2px;
    background: #000;
    transition: transform 180ms ease;
}

.faq-question i::after {
    transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] i::after {
    transform: rotate(0deg);
}

.faq-answer p {
    max-width: 520px;
    margin: -20px 44px 28px 190px;
    color: #70767d;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .faq-section {
        width: calc(100vw - 40px);
        padding: 80px 40px;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-intro h2 {
        font-size: 104px;
    }

    .faq-intro h2 span {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        margin-top: 12px;
    }

    .faq-intro > div > p:not(.section-label) {
        max-width: 620px;
        font-size: 28px;
        line-height: 36px;
    }

    .faq-visual {
        width: min(640px, 100%);
    }

    .faq-question {
        grid-template-columns: 100px minmax(0, 1fr) 22px;
    }

    .faq-answer p {
        margin: -16px 36px 26px 100px;
    }
}

@media (max-width: 760px) {
    .faq-section {
        width: calc(100vw - 28px);
        padding: 60px 14px;
        gap: 38px;
        border-left: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
    }

    .faq-intro {
        gap: 24px;
    }

    .faq-intro h2 {
        font-size: 72px;
    }

    .faq-intro h2 span {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        margin-top: 8px;
    }

    .faq-intro > div > p:not(.section-label) {
        max-width: 100%;
        margin-top: 16px;
        font-size: 22px;
        line-height: 28px;
    }

    .faq-question {
        min-height: 82px;
        grid-template-columns: 60px minmax(0, 1fr) 20px;
    }

    .faq-question em {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .faq-question span {
        font-size: 17px;
        line-height: 23px;
    }

    .faq-question i {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        margin: -8px 28px 20px 60px;
        font-size: 13px;
    }
}

/* Contact scene and footer replica overrides */
.cta-section {
    --cta-hand-left-offset: 0%;
    --cta-hand-right-offset: 0%;
    position: relative;
    width: 100%;
    height: clamp(760px, 57.865vw, 1400px);
    min-height: 0;
    padding: 0;
    display: block;
    overflow: hidden;
    background: #f7f8fa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.cta-art {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 50%;
    overflow: hidden;
    pointer-events: none;
}

.cta-art-left {
    left: 0;
}

.cta-art-right {
    right: 0;
}

.cta-art img {
    position: absolute;
    bottom: 130px;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: multiply;
    will-change: transform;
}

.cta-art-left img {
    left: 0;
    transform: translateX(var(--cta-hand-left-offset));
}

.cta-art-right img {
    right: 0;
    transform: translateX(var(--cta-hand-right-offset));
}

.cta-section .cta-content {
    position: absolute;
    top: 41.5%;
    left: 50%;
    z-index: 2;
    width: min(864px, calc(100vw - 40px));
    margin-top: -130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    transform: translate(-50%, -50%);
}

.cta-section .cta-kicker {
    margin: 0;
    color: #000;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

.cta-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: none;
    margin: -12px 0 0;
    color: #000;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

.cta-star {
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    background: #000;
    -webkit-mask: url("../images/subtract.svg") center / contain no-repeat;
    mask: url("../images/subtract.svg") center / contain no-repeat;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.cta-word {
    min-width: 242px;
    text-align: left;
}

.cta-typewriter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    white-space: nowrap;
}

.cta-typewriter.is-typewriter-ready {
    flex: 0 0 var(--typewriter-width, 242px);
    width: var(--typewriter-width, 242px);
    min-width: var(--typewriter-width, 242px);
}

.cta-typewriter-text,
.cta-typewriter-cursor {
    display: inline-block;
}

.cta-typewriter-cursor {
    margin-left: 0.18em;
    animation: jvds58-typewriter-cursor 820ms steps(1, end) infinite;
}

@keyframes jvds58-typewriter-cursor {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.cta-section .cta-uiverse-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 230px;
    height: 68px;
    min-width: 230px;
    min-height: 68px;
    padding: 0 32px;
    border: 2px solid #000;
    border-radius: 0.75em;
    outline: none;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-family: inherit;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    transform-style: preserve-3d;
    transition:
        transform 150ms cubic-bezier(0, 0, 0.58, 1),
        background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.cta-section .cta-uiverse-button::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: transparent;
    box-shadow: 0 0 0 2px #666;
    transform: translate3d(0, 0.75em, -1em);
    transition:
        transform 150ms cubic-bezier(0, 0, 0.58, 1),
        box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}

.cta-section .cta-uiverse-button:hover {
    background: #fff;
    transform: translate(0, 0.25em);
}

.cta-section .cta-uiverse-button:hover::before {
    box-shadow: 0 0 0 2px #666;
    transform: translate3d(0, 0.5em, -1em);
}

.cta-section .cta-uiverse-button:active {
    background: #fff;
    transform: translate(0, 0.75em);
}

.cta-section .cta-uiverse-button:active::before {
    box-shadow: 0 0 0 2px #666;
    transform: translate3d(0, 0, -1em);
}

.cta-section .cta-uiverse-button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.35);
    outline-offset: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .cta-typewriter-cursor,
    .cta-section .cta-uiverse-button,
    .cta-section .cta-uiverse-button::before {
        animation: none;
        transition: none;
    }
}

.site-footer {
    position: relative;
    padding: 0;
    border-top: 0;
    background: #fff;
    overflow: hidden;
}

.footer-top {
    min-height: 102px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-nav {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.footer-nav a,
.footer-clock {
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav a {
    margin: 14px;
    border-radius: 999px;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #fff;
    background: #000;
}

.footer-clock {
    border-left: 1px solid #e0e0e0;
    color: #000;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-brand {
    --footer-logo-gap: 60px;
    display: block;
    margin: 0;
    padding: 62px 0 70px;
    overflow: hidden;
}

.footer-brand-marquee {
    width: 100%;
    overflow: hidden;
}

.footer-brand-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: jvds58-footer-marquee 64s linear infinite;
    will-change: transform;
}

.footer-brand-sequence {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: var(--footer-logo-gap);
    padding-right: var(--footer-logo-gap);
}

.footer-brand-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    white-space: nowrap;
}

.footer-brand-logo strong {
    display: inline-flex;
    align-items: flex-start;
}

.footer-brand-mark {
    position: relative;
    flex: 0 0 clamp(108px, 12vw, 180px);
    width: clamp(108px, 12vw, 180px);
    aspect-ratio: 1;
    display: inline-block;
}

.footer-brand .footer-brand-rotor,
.footer-brand .footer-brand-eye {
    position: absolute;
    display: block;
    max-width: none;
    object-fit: contain;
}

.footer-brand .footer-brand-rotor {
    inset: 0;
    width: 100%;
    height: 100%;
    animation: jvds58-logo-rotate 18s linear infinite;
    transform-origin: center;
}

.footer-brand .footer-brand-eye {
    top: 50%;
    left: 50%;
    width: 34.1%;
    height: auto;
    transform: translate(-50%, -50%);
}

.footer-brand sup {
    display: inline-block;
    align-self: flex-start;
    margin-left: 0.04em;
    font-family: "Inter Variable", Arial, sans-serif;
    font-size: clamp(32px, 8.1vw, 146px);
    font-weight: 900;
    line-height: 1;
    vertical-align: top;
}

.footer-bottom {
    position: absolute;
    inset-inline: 20px;
    bottom: 20px;
    z-index: 3;
    display: block;
    padding: 0;
    min-height: 12px;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    position: absolute;
    top: 0;
    white-space: nowrap;
    line-height: 1;
}

.footer-bottom-left {
    left: 0;
}

.footer-bottom-center {
    left: auto;
    transform: none;
    text-align: center;
}

.footer-bottom-right {
    right: 0;
    text-align: right;
}

@media (max-width: 1100px) {
    .cta-section {
        height: 820px;
    }

    .cta-section .cta-content {
        margin-top: -140px;
    }

    .cta-art {
        width: 58%;
    }

    .cta-art img {
        bottom: 110px;
        width: 120%;
    }

    .cta-art-right img {
        right: -18%;
    }

    .cta-section .cta-kicker {
        font-size: 56px;
    }

    .cta-section h2 {
        font-size: 46px;
    }

    .cta-star {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .cta-section .cta-uiverse-button {
        width: 190px;
        height: 62px;
        min-width: 190px;
        min-height: 62px;
        font-size: 20px;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr) 180px;
    }
}

@media (max-width: 760px) {
    .cta-section {
        height: 680px;
    }

    .cta-art {
        width: 78%;
        opacity: 0.86;
    }

    .cta-art img {
        bottom: 78px;
        width: 130%;
    }

    .cta-art-left img {
        left: -32%;
    }

    .cta-art-right img {
        right: -44%;
    }

    .cta-section .cta-content {
        top: 38%;
        width: calc(100vw - 28px);
        margin-top: 0;
        gap: 22px;
    }

    .cta-section .cta-kicker {
        font-size: 38px;
    }

    .cta-section h2 {
        gap: 9px;
        font-size: 32px;
        line-height: 1.12;
    }

    .cta-star {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .cta-word {
        min-width: auto;
        text-align: center;
    }

    .cta-section .cta-uiverse-button {
        width: 148px;
        height: 56px;
        min-width: 148px;
        min-height: 56px;
        padding: 0 22px;
        font-size: 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .footer-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        height: auto;
    }

    .footer-nav a,
    .footer-clock {
        min-height: 62px;
    }

    .footer-clock {
        border-top: 1px solid #e0e0e0;
        border-left: 0;
    }

    .footer-brand {
        padding: 42px 0 34px;
    }

    .footer-brand-mark {
        flex-basis: clamp(58px, 18vw, 86px);
        width: clamp(58px, 18vw, 86px);
    }

    .footer-brand sup {
        font-size: clamp(28px, 8vw, 42px);
        vertical-align: 0.55em;
    }

    .footer-bottom {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 20px 24px;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        position: static;
        transform: none;
        justify-self: center;
        text-align: center;
    }
}

.site-footer-red {
    --footer-red: #050505;
    --footer-ink: #fff;
    --footer-line: rgba(255, 255, 255, 0.1);
    --footer-frame-width: min(1720px, calc(100vw - 40px));
    --footer-content-width: min(1560px, calc(100vw - 200px));
    --footer-grid-pad: clamp(48px, 4.2vw, 80px);
    --footer-side-panel-width: min(460px, 35.9vw);
    --footer-info-icon-size: 80px;
    --footer-side-line: calc((100vw - var(--footer-frame-width)) / 2);
    position: relative;
    min-height: auto;
    padding: 100px 0 0;
    border: 0;
    overflow: hidden;
    background: #000;
    color: var(--footer-ink);
    isolation: isolate;
}

.site-footer-red::before,
.site-footer-red::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 1px;
    content: "";
    background: var(--footer-line);
    pointer-events: none;
}

.site-footer-red::before {
    left: var(--footer-side-line);
}

.site-footer-red::after {
    right: var(--footer-side-line);
}

.footer-aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: transparent;
    opacity: 1;
    pointer-events: none;
}

.footer-aurora::before,
.footer-aurora::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.footer-aurora::before {
    top: -24%;
    right: -16%;
    left: -16%;
    height: 62%;
    background:
        radial-gradient(ellipse at 15% 52%, rgba(116, 255, 103, 0.36), transparent 34%),
        radial-gradient(ellipse at 52% 24%, rgba(174, 126, 219, 0.32), transparent 38%),
        radial-gradient(ellipse at 84% 54%, rgba(107, 39, 255, 0.34), transparent 34%),
        linear-gradient(105deg, rgba(116, 255, 103, 0.18), rgba(174, 126, 219, 0.28), rgba(107, 39, 255, 0.2));
    filter: blur(52px);
    mix-blend-mode: screen;
    transform: translate3d(-4%, 0, 0) skewY(-6deg);
    animation: jvds58-footer-aurora 16s ease-in-out infinite alternate;
}

.footer-aurora::after {
    top: 9%;
    right: -8%;
    left: -8%;
    height: 42%;
    background: linear-gradient(96deg, transparent 4%, rgba(116, 255, 103, 0.14) 24%, rgba(174, 126, 219, 0.18) 50%, rgba(107, 39, 255, 0.14) 76%, transparent 96%);
    clip-path: polygon(0 28%, 16% 10%, 33% 32%, 50% 14%, 68% 36%, 84% 16%, 100% 30%, 100% 68%, 82% 54%, 64% 74%, 48% 58%, 30% 78%, 14% 58%, 0 74%);
    filter: blur(32px);
    opacity: 0.9;
    mix-blend-mode: screen;
    transform: translate3d(5%, 0, 0) skewY(5deg);
    animation: jvds58-footer-aurora-ribbon 22s ease-in-out infinite alternate;
}

.footer-aurora-canvas {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
    mix-blend-mode: screen;
}

.footer-aurora.is-webgl-ready::before,
.footer-aurora.is-webgl-ready::after {
    opacity: 0;
    animation: none;
}

@keyframes jvds58-footer-aurora {
    from {
        transform: translate3d(-5%, -2%, 0) skewY(-7deg) scaleX(1.03);
    }

    to {
        transform: translate3d(5%, 5%, 0) skewY(-2deg) scaleX(1.12);
    }
}

@keyframes jvds58-footer-aurora-ribbon {
    from {
        transform: translate3d(6%, -2%, 0) skewY(5deg);
    }

    to {
        transform: translate3d(-6%, 8%, 0) skewY(-4deg);
    }
}

.footer-red-head {
    position: absolute;
    z-index: 4;
    top: clamp(18px, 2.4vw, 30px);
    right: clamp(20px, 10vw, 244px);
    left: clamp(20px, 10vw, 244px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    pointer-events: none;
}

.footer-red-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.8vw, 28px);
    pointer-events: auto;
}

.footer-red-nav a,
.footer-red-talk,
.footer-red-back span,
.footer-red-legal {
    color: var(--footer-ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.footer-red-nav a {
    transition: opacity 180ms ease;
}

.footer-red-nav a:hover,
.footer-red-nav a:focus-visible {
    opacity: 0.58;
}

.footer-red-talk {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--footer-ink);
    color: var(--footer-red);
    pointer-events: auto;
}

.footer-red-word {
    --footer-word-gap: clamp(22px, 3vw, 54px);
    --footer-word-mark-size: clamp(132px, 16vw, 260px);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--footer-word-gap);
    width: var(--footer-content-width);
    max-width: none;
    margin: 30px auto 0;
    color: var(--footer-ink);
    font-size: 0;
    line-height: 0;
    pointer-events: none;
    user-select: none;
}

.footer-red-word::before {
    display: none;
}

.footer-red-word > * {
    display: block !important;
}

.footer-red-word.has-custom-logo {
    min-height: var(--footer-word-mark-size);
}

.footer-red-custom-logo {
    display: block;
    width: min(100%, 1120px);
    max-height: clamp(132px, 16vw, 260px);
    object-fit: contain;
}

.footer-red-brand-mark {
    position: relative;
    display: block !important;
    flex: 0 0 var(--footer-word-mark-size);
    width: var(--footer-word-mark-size);
    height: var(--footer-word-mark-size);
    transform: none;
}

.footer-red-word-text {
    position: relative;
    display: block !important;
    flex: 0 1 clamp(560px, 54vw, 910px);
    max-width: clamp(560px, 54vw, 910px);
    width: clamp(560px, 54vw, 910px);
    aspect-ratio: 1137 / 248;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.footer-red-word-text::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--footer-ink);
    -webkit-mask: url("../images/logo.svg") center / contain no-repeat;
    mask: url("../images/logo.svg") center / contain no-repeat;
}

.footer-red-brand-mark img {
    position: absolute;
    display: block;
    max-width: none;
    object-fit: contain;
    filter: invert(1);
}

.footer-red-brand-rotor {
    inset: 0;
    width: 100%;
    height: 100%;
    animation: jvds58-logo-rotate 18s linear infinite;
    transform-origin: center;
}

.footer-red-brand-eye {
    top: 50%;
    left: 50%;
    width: 34.1%;
    height: auto;
    transform: translate(-50%, -50%);
}

.footer-red-contact {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--footer-side-panel-width);
    align-items: stretch;
    width: var(--footer-frame-width);
    min-height: clamp(180px, 12.8vw, 244px);
    margin: clamp(52px, 5vw, 96px) auto 0;
    border-top: 1px solid var(--footer-line);
    border-bottom: 1px solid var(--footer-line);
}

.footer-red-contact::before,
.footer-red-contact::after {
    display: none;
}

.footer-red-contact p {
    align-self: center;
    max-width: min(980px, 100%);
    margin: 0;
    padding: 0 var(--footer-grid-pad);
    color: var(--footer-ink);
    font-size: clamp(26px, 1.95vw, 36px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
    text-align: left;
}

.footer-red-contact a,
.footer-red-socials a {
    display: inline-block;
    border-bottom: 2px solid currentColor;
    color: var(--footer-ink);
    font-weight: 500;
    line-height: 0.98;
    text-transform: uppercase;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.footer-red-contact .footer-red-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: inherit;
    margin-top: 0;
    padding: 0 var(--footer-grid-pad);
    border: 0;
    border-left: 1px solid var(--footer-line);
    border-radius: 0;
    color: var(--footer-ink);
    background: transparent;
    font-size: clamp(26px, 1.95vw, 36px);
    font-weight: 800;
    line-height: 1;
    text-transform: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        opacity 180ms ease;
}

.footer-red-contact .footer-red-contact-button:hover,
.footer-red-contact .footer-red-contact-button:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #050505;
    opacity: 1;
}

.footer-red-socials a:hover,
.footer-red-socials a:focus-visible {
    opacity: 0.62;
}

.footer-red-actions {
    position: relative;
    z-index: 3;
    width: var(--footer-frame-width);
    min-height: clamp(260px, 17.5vw, 334px);
    margin: 100px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--footer-side-panel-width);
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--footer-line);
}

.footer-red-actions::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    content: "";
    background: var(--footer-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.footer-red-back {
    display: flex;
    align-self: stretch;
    justify-self: stretch;
    border-left: 1px solid var(--footer-line);
}

.footer-red-back a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 64px;
    padding: 0 var(--footer-grid-pad);
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--footer-ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.footer-red-back span {
    font-size: 14px;
}

.footer-red-back a:hover,
.footer-red-back a:focus-visible {
    background: #fff;
    color: #050505;
}

.footer-red-back a:hover span,
.footer-red-back a:focus-visible span {
    color: #050505;
}

.footer-red-arrow {
    display: inline-block;
    flex: 0 0 auto;
    width: 0.68em;
    height: 0.76em;
    background: currentColor;
    -webkit-mask: url("../images/Union.svg") center / contain no-repeat;
    mask: url("../images/Union.svg") center / contain no-repeat;
    transform-origin: center;
}

.footer-red-arrow-contact {
    transform: rotate(180deg) rotate(45deg);
}

.footer-red-arrow-top {
    width: 0.9em;
    height: 1em;
    transform: rotate(180deg);
}

.footer-red-socials {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-self: stretch;
    padding: 0 var(--footer-grid-pad);
}

.footer-red-socials div {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(22px, 2vw, 34px);
    min-height: 44px;
    overflow-x: visible;
    scrollbar-width: none;
}

.footer-red-socials div::-webkit-scrollbar {
    display: none;
}

.footer-red-socials a {
    flex: 0 0 auto;
    font-size: clamp(20px, 1.55vw, 28px);
    text-transform: none;
    white-space: nowrap;
}

.footer-red-info {
    grid-column: 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-self: stretch;
    gap: 0;
    justify-self: stretch;
    max-width: none;
    border-left: 1px solid var(--footer-line);
    color: var(--footer-ink);
    font-size: clamp(14px, 0.95vw, 17px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.footer-red-info span,
.footer-red-info a {
    color: var(--footer-ink);
}

.footer-red-info-item {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 18px);
    min-width: 0;
    padding: 0 clamp(20px, 2.4vw, 48px);
    color: rgba(255, 255, 255, 0.6);
}

.footer-red-info-item + .footer-red-info-item {
    border-top: 1px solid var(--footer-line);
}

.footer-red-info-icon {
    display: block;
    width: var(--footer-info-icon-size);
    height: var(--footer-info-icon-size);
    flex: 0 0 var(--footer-info-icon-size);
    object-fit: contain;
}

.footer-red-info-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.footer-red-info-label {
    color: rgba(255, 255, 255, 0.54);
    font-size: clamp(13px, 0.82vw, 15px);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.footer-red-info-value {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.12;
    white-space: nowrap;
}

.footer-red-info a.footer-red-info-value {
    border-bottom: 1px solid currentColor;
    color: #fff;
    overflow-wrap: normal;
    white-space: nowrap;
}

.footer-red-legal {
    position: relative;
    z-index: 3;
    width: var(--footer-frame-width);
    min-height: clamp(72px, 5vw, 92px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--footer-side-panel-width);
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.footer-red-legal-main {
    grid-column: 1;
    display: grid;
    grid-template-columns: auto repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: clamp(24px, 3vw, 64px);
    height: 100%;
    min-width: 0;
    padding: 0 var(--footer-grid-pad);
    font-weight: 500;
}

.footer-red-legal-main > span:first-child {
    justify-self: start;
}

.footer-red-clock {
    justify-self: center;
    color: rgba(255, 255, 255, 0.64);
    font: inherit;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.footer-red-legal-main > span:last-child {
    justify-self: center;
    color: rgba(255, 255, 255, 0.64);
}

.footer-red-legal .footer-red-back {
    grid-column: 2;
    align-self: stretch;
    justify-self: stretch;
}

@media (min-width: 1101px) {
    .footer-red-legal-main {
        grid-column: 1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        padding-right: 80px;
    }

    .footer-red-legal-main > span:last-child {
        justify-self: end;
    }

    .footer-red-legal .footer-red-back {
        grid-column: 2;
    }
}

@media (max-width: 1100px) {
    .site-footer-red {
        --footer-frame-width: calc(100vw - 40px);
        --footer-content-width: calc(100vw - 120px);
        --footer-grid-pad: clamp(36px, 5vw, 64px);
        --footer-side-panel-width: min(460px, 53.3vw);
        min-height: auto;
    }

    .footer-red-head {
        right: 28px;
        left: 28px;
    }

    .footer-red-head {
        grid-template-columns: 1fr auto;
    }

    .footer-red-nav {
        grid-column: 1;
        justify-content: flex-start;
    }

    .footer-red-talk {
        grid-column: 2;
    }

    .footer-red-word {
        margin-top: 28px;
        font-size: calc(33.96vw - 19px);
    }

    .footer-red-contact {
        margin-top: clamp(58px, 6.4vw, 84px);
    }

    .footer-red-actions {
        grid-template-columns: minmax(0, 1fr) var(--footer-side-panel-width);
    }

    .footer-red-socials {
        grid-column: 1;
        justify-self: stretch;
    }

    .footer-red-socials div {
        flex-wrap: wrap;
        gap: 18px 22px;
        overflow-x: visible;
    }

    .footer-red-info {
        max-width: none;
    }

    .footer-red-word-text {
        flex-basis: clamp(390px, 54vw, 650px);
        max-width: clamp(390px, 54vw, 650px);
        width: clamp(390px, 54vw, 650px);
    }
}

@media (max-width: 760px) {
    .site-footer-red {
        --footer-frame-width: calc(100vw - 28px);
        --footer-content-width: calc(100vw - 40px);
        --footer-grid-pad: 20px;
        --footer-side-panel-width: 1fr;
        --footer-info-icon-size: 60px;
        min-height: auto;
    }

    .footer-red-head {
        right: 20px;
        left: 20px;
    }

    .footer-red-head {
        align-items: start;
        gap: 18px;
    }

    .footer-red-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 16px;
        max-width: 260px;
    }

    .footer-red-talk {
        min-height: 28px;
        padding-inline: 14px;
    }

    .footer-red-word {
        margin-top: 24px;
        font-size: calc(33.96vw - 13.6px);
        letter-spacing: -0.07em;
    }

    .footer-red-word-text {
        flex-basis: clamp(150px, 50vw, 260px);
        max-width: clamp(150px, 50vw, 260px);
        width: clamp(150px, 50vw, 260px);
    }

    .footer-red-contact {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: 44px;
        gap: 0;
    }

    .footer-red-contact p {
        max-width: none;
        padding: 32px var(--footer-grid-pad);
        font-size: clamp(22px, 8vw, 30px);
    }

    .footer-red-contact .footer-red-contact-button {
        min-height: 78px;
        justify-content: flex-start;
        border-top: 1px solid var(--footer-line);
        border-left: 0;
        font-size: clamp(22px, 7vw, 28px);
    }

    .footer-red-actions {
        position: relative;
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: 40px;
        gap: 0;
    }

    .footer-red-socials,
    .footer-red-info {
        grid-column: 1;
        justify-self: stretch;
        max-width: 100%;
    }

    .footer-red-socials {
        padding: 40px var(--footer-grid-pad);
    }

    .footer-red-socials div {
        flex-wrap: wrap;
        gap: 18px 22px;
        overflow: visible;
    }

    .footer-red-legal {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .footer-red-info {
        border-top: 1px solid var(--footer-line);
        border-left: 0;
    }

    .footer-red-info-item {
        min-height: 72px;
        padding: 0 var(--footer-grid-pad);
    }

    .footer-red-legal-main {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 14px;
        row-gap: 14px;
        padding: 24px var(--footer-grid-pad);
    }

    .footer-red-legal-main > span:first-child,
    .footer-red-clock {
        flex: 0 0 auto;
        justify-self: auto;
    }

    .footer-red-legal-main > span:last-child {
        flex-basis: 100%;
        justify-self: auto;
    }

    .footer-red-legal .footer-red-back {
        grid-column: 1;
        grid-row: auto;
        border-top: 1px solid var(--footer-line);
        border-left: 0;
    }

    .footer-red-back a {
        justify-content: flex-start;
        min-height: 72px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-aurora::before,
    .footer-aurora::after {
        animation: none;
    }
}

/* Unified page frame lines */
:root {
    --jvds-page-frame-width: min(1720px, calc(100vw - 40px));
    --jvds-page-inner-gutter: 80px;
    --jvds-page-frame-line: #e0e0e0;
}

.work-archive-hero,
.blog-archive-hero,
.studio-page-hero,
.contact-page-hero,
.services-page-hero,
.services-stats,
.services-section[aria-labelledby="services-catalog-title"],
.studio-intro-collage,
.studio-metrics,
.studio-clients,
.section.contact-page,
.section.archive-work-section,
.blog-archive-hero ~ .blog-section,
.single-work .work-detail-hero,
.single-work .work-detail-cover,
.single-work.has-work-prose .work-detail-content,
.single-work .detail-nav,
.single-work .detail-related-works,
.single-article .article-hero,
.single-article .article-cover,
.single-article .article-layout,
.single-article .related-section {
    width: var(--jvds-page-frame-width);
    max-width: 1720px;
    margin-right: auto;
    margin-left: auto;
    border-right: 1px solid var(--jvds-page-frame-line);
    border-left: 1px solid var(--jvds-page-frame-line);
}

.work-archive-hero,
.blog-archive-hero,
.contact-page-hero,
.single-work .work-detail-hero,
.single-article .article-hero {
    border-bottom: 1px solid var(--jvds-page-frame-line);
}

.blog-archive-hero,
.contact-page-hero,
.studio-page-hero,
.services-page-hero {
    overflow: clip;
}

.archive-page-hero-copy,
.blog-archive-hero .archive-page-hero-copy,
.contact-page-hero .archive-page-hero-copy,
.studio-page-hero .archive-page-hero-copy,
.services-page-hero-copy {
    width: min(1600px, 100%);
}

.services-page-hero-media {
    width: 100%;
}

.services-stats::before,
.services-section[aria-labelledby="services-catalog-title"]::before {
    display: none;
}

.services-stats::after,
.studio-intro-collage::before {
    left: 0;
    width: 100%;
    transform: none;
}

.services-section[aria-labelledby="services-catalog-title"] {
    padding-right: 80px;
    padding-left: 80px;
}

.section.archive-work-section,
.blog-archive-hero ~ .blog-section {
    padding-right: 20px;
    padding-left: 20px;
}

.blog-archive-hero ~ .blog-section,
.section.contact-page,
.single-article .article-cover {
    border-top: 0;
}

.studio-intro-collage {
    --studio-intro-gutter: max(20px, calc((100% - 1600px) / 2 + 20px));
}

.single-work .work-detail-hero {
    padding-right: max(0px, calc((100% - 1400px) / 2));
    padding-left: max(0px, calc((100% - 1400px) / 2));
}

.single-work .work-detail-cover {
    aspect-ratio: auto;
    padding-right: max(0px, calc((100% - 1400px) / 2));
    padding-left: max(0px, calc((100% - 1400px) / 2));
    overflow: visible;
    background: transparent;
}

.single-work.has-work-prose .work-detail-content {
    padding-right: max(40px, calc((100% - 1400px) / 2));
    padding-left: max(40px, calc((100% - 1400px) / 2));
}

.single-article .article-hero {
    width: var(--jvds-page-frame-width);
}

.single-article .article-cover {
    width: var(--jvds-page-frame-width);
    padding-right: max(60px, calc((100% - 1200px) / 2));
    padding-left: max(60px, calc((100% - 1200px) / 2));
}

.single-article .article-layout {
    width: var(--jvds-page-frame-width);
    padding-right: max(60px, calc((100% - 960px) / 2));
    padding-left: max(60px, calc((100% - 960px) / 2));
}

.single-article .related-section {
    width: var(--jvds-page-frame-width);
}

.single-article .related-section-inner {
    width: min(1600px, calc(100% - 40px));
}

@media (max-width: 1100px) {
    .services-section[aria-labelledby="services-catalog-title"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    .single-work .work-detail-hero,
    .single-work .work-detail-cover,
    .single-work.has-work-prose .work-detail-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .single-article .article-cover,
    .single-article .article-layout {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 760px) {
    :root {
        --jvds-page-frame-width: calc(100vw - 28px);
    }

    .services-section[aria-labelledby="services-catalog-title"],
    .section.archive-work-section,
    .blog-archive-hero ~ .blog-section,
    .single-work .work-detail-hero,
    .single-work .work-detail-cover,
    .single-work.has-work-prose .work-detail-content,
    .single-article .article-cover,
    .single-article .article-layout {
        padding-right: 14px;
        padding-left: 14px;
    }

    .single-article .related-section-inner {
        width: calc(100% - 28px);
    }
}

/* Frame line refinements */
.work-archive-hero {
    border-bottom: 0;
}

.work-category-tabs {
    position: relative;
}

.work-category-tabs::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: var(--jvds-page-frame-width);
    max-width: 1720px;
    border-top: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.services-page-hero,
.services-stats,
.testimonials-section.services-testimonials {
    border-top: 1px solid var(--jvds-page-frame-line);
}

.services-stats {
    border-bottom: 1px solid var(--jvds-page-frame-line);
}

.services-stats::after {
    display: none;
}

.testimonials-section.services-testimonials {
    width: var(--jvds-page-frame-width);
    max-width: 1720px;
    margin-right: auto;
    margin-left: auto;
    border-right: 1px solid var(--jvds-page-frame-line);
    border-left: 1px solid var(--jvds-page-frame-line);
}

.testimonials-section.services-testimonials .center-heading,
.testimonials-section.services-testimonials .testimonial-grid {
    width: min(1600px, calc(100% - 40px));
}

.studio-page-hero,
.blog-archive-hero,
.contact-page-hero,
.single-article .article-hero,
.single-article .article-layout,
.single-work .work-detail-hero,
.single-work.has-work-prose .work-detail-content {
    border-bottom: 1px solid var(--jvds-page-frame-line);
}

.studio-page-hero {
    position: relative;
    overflow: visible;
    border-bottom: 0;
}

.studio-page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.studio-intro-collage::before {
    display: none;
}

.contact-page-hero {
    position: relative;
    overflow: visible;
    border-bottom: 0;
}

.contact-page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.blog-archive-hero ~ .blog-section > .text-link {
    width: min(1600px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.single-work .work-detail-cover {
    padding-right: 0;
    padding-left: 0;
}

.single-work .work-detail-image {
    width: 100%;
    height: auto;
}

.single-work.has-work-prose .work-detail-content {
    grid-template-columns: 350px minmax(0, 1fr);
    padding-right: 40px;
    padding-left: 40px;
}

.single-article .article-cover,
.single-article .article-layout {
    padding-right: var(--jvds-page-inner-gutter);
    padding-bottom: 0;
    padding-left: var(--jvds-page-inner-gutter);
}

.single-article .article-content,
.single-article .article-footer-meta {
    width: 100%;
    max-width: 1000px;
}

@media (max-width: 1100px) {
    .single-work.has-work-prose .work-detail-content {
        grid-template-columns: 1fr;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 760px) {
    .single-article .article-cover,
    .single-article .article-layout,
    .single-work.has-work-prose .work-detail-content {
        padding-right: 14px;
        padding-left: 14px;
    }

    .testimonials-section.services-testimonials .center-heading,
    .testimonials-section.services-testimonials .testimonial-grid {
        width: calc(100% - 28px);
    }
}

/* Work archive frame and header spacing refinements */
.archive-page-hero-copy,
.blog-archive-hero .archive-page-hero-copy,
.contact-page-hero .archive-page-hero-copy,
.studio-page-hero .archive-page-hero-copy,
.services-page-hero-copy {
    position: relative;
    width: min(1600px, calc(100% - 40px));
}

.services-page-hero-copy::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    border-bottom: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.work-archive-hero {
    position: relative;
    overflow: visible;
    padding-bottom: 20px;
}

.work-category-tabs {
    width: calc(100% - 40px);
    margin-top: 120px;
    margin-bottom: 0;
}

.work-category-tabs::before {
    top: -80px;
    width: 100vw;
    max-width: none;
}

.blog-archive-hero {
    position: relative;
    overflow: visible;
    border-bottom: 0;
}

.blog-archive-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.blog-archive-hero .archive-page-hero-copy {
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 1101px) {
    .work-archive-hero > .archive-page-hero-copy,
    .blog-archive-hero .archive-page-hero-copy,
    .contact-page-hero .archive-page-hero-copy {
        width: 100%;
        padding-right: 80px;
        padding-left: 80px;
    }

    .work-archive-hero > .archive-page-hero-copy {
        padding-bottom: 80px;
    }

    .work-category-tabs {
        width: calc(100% - 160px);
        margin-top: 80px;
    }

    .section.archive-work-section,
    .blog-archive-hero ~ .blog-section {
        padding-right: 80px;
        padding-left: 80px;
    }

    .blog-archive-hero ~ .blog-section {
        padding-top: 80px;
    }
}

.studio-metrics {
    padding-right: 80px;
    padding-left: 80px;
}

.services-page-hero {
    overflow: visible;
    border-bottom: 0;
}

.services-page-hero-media {
    position: relative;
    width: 100%;
}

.services-page-hero-media::before,
.services-page-hero-media::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 2;
    width: 100vw;
    width: 100dvw;
    border-top: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.services-page-hero-media::before {
    top: 0;
    display: none;
}

.services-page-hero-media::after {
    bottom: 0;
}

.services-section[aria-labelledby="services-catalog-title"] .service-list {
    position: relative;
    border-top: 0;
}

.services-section[aria-labelledby="services-catalog-title"] .service-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    border-top: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.services-section[aria-labelledby="services-catalog-title"] {
    position: relative;
    border-bottom: 0;
}

.services-section[aria-labelledby="services-catalog-title"]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    border-bottom: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.testimonials-section.services-testimonials {
    border-top: 0;
}

.services-section[aria-labelledby="services-catalog-title"] .service-row:last-child {
    border-bottom-color: transparent;
}

.services-catalog-heading h2 span,
.testimonials-section.services-testimonials .center-heading h2 span,
.studio-clients-copy h2 span {
    display: inline-block;
    width: 0.58em;
    height: 0.58em;
    margin-left: 0.08em;
    overflow: hidden;
    color: transparent;
    font-size: inherit;
    line-height: 1;
    vertical-align: -0.04em;
    background: #000;
    -webkit-mask: url("../images/subtract.svg") center / contain no-repeat;
    mask: url("../images/subtract.svg") center / contain no-repeat;
    animation: jvds58-logo-rotate 18s linear infinite;
}

.services-catalog-heading h2 span,
.testimonials-section.services-testimonials .center-heading h2 span {
    vertical-align: top;
}

.single-work .work-detail-hero {
    padding-right: var(--jvds-page-inner-gutter);
    padding-left: var(--jvds-page-inner-gutter);
}

.single-work .work-detail-hero h1 {
    max-width: 100%;
    letter-spacing: 0;
}

.single-work .work-detail-cover {
    padding-top: var(--jvds-page-inner-gutter);
    padding-right: var(--jvds-page-inner-gutter);
    padding-bottom: var(--jvds-page-inner-gutter);
    padding-left: var(--jvds-page-inner-gutter);
}

.single-work.has-work-prose .work-detail-content {
    position: relative;
    padding: var(--jvds-page-inner-gutter);
}

.single-work.has-work-prose .work-detail-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    border-top: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.detail-nav-card.is-previous {
    grid-column: 1;
}

.detail-nav-card.is-next {
    grid-column: 2;
}

.single-work .detail-nav {
    position: relative;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--jvds-page-frame-line);
}

.single-work .detail-nav::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
}

.single-work .detail-nav-card {
    min-height: 180px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.single-work .detail-nav-card.is-previous {
    padding: 40px 40px 40px var(--jvds-page-inner-gutter);
}

.single-work .detail-nav-card.is-next {
    padding: 40px var(--jvds-page-inner-gutter) 40px 40px;
}

.detail-related-works {
    min-height: 0;
    align-content: stretch;
    justify-items: stretch;
    gap: 36px;
    padding: var(--jvds-page-inner-gutter);
    border-radius: 0;
    background: var(--color-white);
}

.detail-related-header {
    display: block;
}

.detail-related-header .section-label {
    display: none;
}

.detail-related-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.detail-related-works h2 {
    grid-column: 2;
    margin: 0;
    color: var(--color-black);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.detail-related-more {
    grid-column: 3;
    justify-self: end;
    color: var(--color-black);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
}

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

.detail-related-card[hidden] {
    display: none;
}

.detail-related-card a {
    display: grid;
    gap: 16px;
    color: inherit;
    text-decoration: none;
}

.detail-related-card figure {
    aspect-ratio: 1.55 / 1;
    margin: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.detail-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.detail-related-card a:hover .detail-related-image,
.detail-related-card a:focus-visible .detail-related-image {
    transform: scale(1.035);
}

.detail-related-card span {
    color: #7d8183;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.detail-related-card h3 {
    margin: 0;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}

@media (min-width: 1101px) {
    .studio-page-hero .archive-page-hero-copy,
    .services-page-hero-copy {
        width: 100%;
        padding-right: var(--jvds-page-inner-gutter);
        padding-left: var(--jvds-page-inner-gutter);
    }

    .studio-intro-collage {
        --studio-intro-gutter: var(--jvds-page-inner-gutter);
    }

    .studio-clients-copy,
    .studio-client-grid,
    .testimonials-section.services-testimonials .center-heading {
        width: 100%;
        max-width: none;
        padding-right: var(--jvds-page-inner-gutter);
        padding-left: var(--jvds-page-inner-gutter);
    }

    .services-stats {
        padding-right: var(--jvds-page-inner-gutter);
        padding-left: var(--jvds-page-inner-gutter);
    }

    .studio-belief {
        padding-right: var(--jvds-page-inner-gutter);
        padding-left: var(--jvds-page-inner-gutter);
    }

    .studio-belief h2 {
        left: var(--jvds-page-inner-gutter);
        width: calc(100% - var(--jvds-page-inner-gutter) - var(--jvds-page-inner-gutter));
    }
}

@media (max-width: 1100px) {
    .single-work .work-detail-hero,
    .single-work .work-detail-cover,
    .single-work.has-work-prose .work-detail-content,
    .detail-related-works {
        padding-right: 20px;
        padding-left: 20px;
    }

    .single-work.has-work-prose .work-detail-content,
    .detail-related-works {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .single-work .detail-nav-card.is-previous {
        padding-left: 20px;
    }

    .single-work .detail-nav-card.is-next {
        padding-right: 20px;
    }

    .studio-metrics {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (max-width: 760px) {
    .single-work .work-detail-hero,
    .single-work .work-detail-cover,
    .single-work.has-work-prose .work-detail-content,
    .detail-related-works {
        padding-right: 14px;
        padding-left: 14px;
    }

    .single-work.has-work-prose .work-detail-content,
    .detail-related-works {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .detail-nav {
        grid-template-columns: 1fr;
    }

    .single-work .detail-nav::before {
        display: none;
    }

    .detail-nav-card.is-previous,
    .detail-nav-card.is-next {
        grid-column: 1;
    }

    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        padding: 28px 14px;
    }

    .single-work .detail-nav-card + .detail-nav-card {
        border-top: 1px solid var(--jvds-page-frame-line);
    }

    .detail-related-grid {
        grid-template-columns: 1fr;
    }

    .detail-related-title-row {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .detail-related-works h2,
    .detail-related-more {
        grid-column: 1;
        font-size: 28px;
    }

    .archive-page-hero-copy,
    .blog-archive-hero .archive-page-hero-copy,
    .contact-page-hero .archive-page-hero-copy,
    .studio-page-hero .archive-page-hero-copy,
    .services-page-hero-copy {
        width: calc(100% - 28px);
    }

    .work-archive-hero {
        padding-bottom: 14px;
    }

    .work-category-tabs {
        display: flex;
        width: calc(100% - 28px);
        margin: 54px auto 0;
    }

    .studio-metrics {
        padding-right: 14px;
        padding-left: 14px;
    }
}

/* Work detail refinements */
.single-work .work-detail-hero {
    position: relative;
    overflow: visible;
    border-bottom: 0;
}

.single-work .work-detail-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    border-bottom: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
    transform: translateX(-50%);
}

.single-work.has-work-prose .work-detail-content .work-detail-info div {
    background: transparent;
}

.single-work .detail-nav-card.is-previous,
.single-work .detail-nav-card.is-next {
    padding-right: var(--jvds-page-inner-gutter);
    padding-left: var(--jvds-page-inner-gutter);
}

.single-work .detail-nav-card:hover,
.single-work .detail-nav-card:focus-visible {
    background-color: #000;
    background: #000;
}

.single-work .detail-nav-card.is-previous:hover,
.single-work .detail-nav-card.is-previous:focus-visible,
.single-work .detail-nav-card.is-next:hover,
.single-work .detail-nav-card.is-next:focus-visible {
    color: var(--color-white);
    background-color: #000;
    background: #000;
}

.single-work .detail-related-works {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 80px;
}

.single-work .detail-related-works::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    height: 80px;
    border-right: 1px solid var(--jvds-page-frame-line);
    border-left: 1px solid var(--jvds-page-frame-line);
    pointer-events: none;
}

.detail-related-title-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.detail-related-works h2 {
    grid-column: 1;
    justify-self: start;
    font-size: 24px;
    text-align: left;
}

.detail-related-more {
    grid-column: 2;
    font-size: 24px;
}

.detail-related-card h3 {
    margin-top: -8px;
}

@media (max-width: 1100px) {
    .single-work .detail-related-works {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 760px) {
    .single-work .detail-related-works {
        padding-top: 56px;
        padding-bottom: 56px;
        margin-bottom: 56px;
    }

    .single-work .detail-related-works::after {
        height: 56px;
    }

    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        padding-right: 14px;
        padding-left: 14px;
    }

    .detail-related-title-row {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .detail-related-works h2,
    .detail-related-more {
        grid-column: 1;
        justify-self: start;
        font-size: 24px;
    }
}

/* Responsive and accessibility stabilization */
.services-stat-card span,
.services-section[aria-labelledby="services-catalog-title"] .service-row p,
.archive-work-section .work-card p,
.single-article .article-meta span,
.single-article .article-meta time,
.single-article .article-meta span::before,
.single-article .related-card time,
.blog-section .post-card time,
.detail-related-card span {
    color: #5f646c;
}

.single-work.has-work-prose .work-detail-content .work-detail-info dt {
    color: #69675f;
}

.contact-request-form input::placeholder,
.contact-request-form textarea::placeholder,
.contact-form-actions p,
.form-message {
    color: #66645d;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-request-form[aria-busy="true"] .button-dark {
    cursor: wait;
    opacity: 0.72;
}

.testimonials-section .center-heading .pill {
    color: #fff;
}

.testimonials-section.services-testimonials .testimonial-person > span,
.studio-intro-statement,
.single-work .work-detail-hero > p {
    color: #5f646c;
}

.single-work.has-work-prose .work-detail-content,
.single-work.has-work-prose .work-detail-sidebar,
.single-work.has-work-prose .work-detail-prose,
.single-work.has-work-prose .work-detail-content .work-meta.work-detail-info {
    min-width: 0;
}

.single-work.has-work-prose .work-detail-prose,
.single-work.has-work-prose .work-detail-content .work-detail-info dd {
    overflow-wrap: anywhere;
}

.archive-page-hero-copy > h2,
.services-page-hero-copy > h2 {
    order: 1;
}

.archive-page-hero-copy > div,
.services-page-hero-copy > div {
    order: 2;
}

.single-work.has-work-prose .work-detail-prose h2 {
    margin: 0 0 16px;
    color: var(--color-black);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

@media (max-width: 1100px) {
    .services-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 40px;
        padding: 56px 40px;
    }

    .single-work.has-work-prose .work-detail-prose h2 {
        font-size: 24px;
    }

    .single-work.has-work-prose .work-detail-content {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .services-page-hero-copy,
    .work-archive-hero .archive-page-hero-copy {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .services-page-hero-copy > div,
    .work-archive-hero .archive-page-hero-copy > div {
        margin-top: 0;
    }

    .nav-shell,
    .site-header.is-scrolled .nav-shell {
        height: auto;
        min-height: 52px;
        align-items: center;
        padding-top: 3px;
        padding-bottom: 3px;
        overflow: hidden;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .nav-menu {
        flex: 0 0 100%;
        padding: 4px 0 6px;
    }

    .nav-open .nav-shell,
    .nav-open .site-header.is-scrolled .nav-shell {
        padding-bottom: 8px;
    }

    .nav-list a,
    .nav-contact {
        min-height: 44px;
    }

    .hero-title-wrap h1,
    .hero-title {
        gap: 10px;
    }

    .hero-title-brand,
    .hero-title-brand-strong {
        font-size: clamp(30px, 9vw, 40px);
    }

    .hero-title-brand {
        gap: 6px;
        max-width: 100%;
    }

    .hero-title-line {
        flex-wrap: nowrap;
        gap: 6px;
        font-size: clamp(20px, 6.4vw, 28px);
        white-space: nowrap;
    }

    .hero-title-star {
        width: clamp(20px, 6.4vw, 28px);
        height: clamp(20px, 6.4vw, 28px);
        flex: 0 0 clamp(20px, 6.4vw, 28px);
    }

    .archive-page-hero-copy h2,
    .services-page-hero-copy h2 {
        max-width: 100%;
        font-size: clamp(54px, 17vw, 68px);
        line-height: 0.9;
        white-space: nowrap;
    }

    .services-page-hero-copy h2::after {
        display: none;
    }

    .services-stats {
        width: min(100%, 360px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 28px;
        padding: 72px 20px 96px;
    }

    .work-category-tabs a.is-active,
    .footer-red-socials a,
    .contact-socials a {
        min-height: 44px;
    }
}

/* Keep homepage content aligned to the FAQ frame. */
.home-testimonials-section {
    width: min(1720px, calc(100vw - 40px));
    max-width: 1720px;
    margin-right: auto;
    margin-left: auto;
}

.home-testimonials-section .testimonial-grid {
    width: 100%;
    max-width: none;
}

.services-section[aria-labelledby="services-title"] .section-heading,
.services-section[aria-labelledby="services-title"] .service-list {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

@media (max-width: 1100px) and (min-width: 761px) {
    .works-section {
        padding-right: 40px;
        padding-left: 40px;
    }

    .services-section[aria-labelledby="services-title"] .section-heading,
    .services-section[aria-labelledby="services-title"] .service-list {
        width: calc(100% - 80px);
        margin-right: 40px;
        margin-left: 40px;
    }

    .services-section[aria-labelledby="services-title"] > .text-link {
        width: calc(100% - 80px);
        margin-right: 40px;
        margin-left: 40px;
    }

    /* Match inner-page content to the homepage blog grid at this breakpoint. */
    .archive-page-hero-copy,
    .blog-archive-hero .archive-page-hero-copy,
    .services-page-hero-copy {
        padding-right: 20px;
        padding-left: 20px;
    }

    .work-category-tabs {
        width: calc(100% - 80px);
    }

    .section.archive-work-section,
    .blog-archive-hero ~ .blog-section,
    .services-section[aria-labelledby="services-catalog-title"],
    .single-work .work-detail-hero,
    .single-work.has-work-prose .work-detail-content,
    .single-work .detail-related-works,
    .single-article .article-hero,
    .single-article .article-cover,
    .single-article .article-layout {
        padding-right: 40px;
        padding-left: 40px;
    }

    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next,
    .contact-info-panel,
    .contact-form-panel {
        padding-right: 40px;
        padding-left: 40px;
    }

    .testimonials-section.services-testimonials {
        padding-right: 40px;
        padding-left: 40px;
    }

    .testimonials-section.services-testimonials .center-heading,
    .testimonials-section.services-testimonials .testimonial-grid {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
    }

    .testimonials-section.services-testimonials .center-heading {
        padding-right: 0;
        padding-left: 0;
    }

    .studio-intro-collage {
        --studio-intro-gutter: 40px;
    }

    .studio-clients-copy,
    .studio-client-grid {
        width: 100%;
        max-width: none;
        padding-right: 40px;
        padding-left: 40px;
    }

    .studio-belief h2 {
        left: 60px;
        width: calc(100% - 120px);
    }

    .single-article .related-section-inner {
        width: calc(100% - 80px);
    }

    main#primary > .section.prose-content {
        width: calc(100vw - 120px);
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        min-height: 0;
        padding: 48px 0 72px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row > span,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h3,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h2,
    .services-section[aria-labelledby="services-catalog-title"] .service-row p,
    .services-section[aria-labelledby="services-catalog-title"] .service-row ul,
    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        grid-column: 1;
        grid-row: auto;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row > span {
        margin-bottom: 48px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row h3,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h2 {
        margin-bottom: 24px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row p {
        width: 100%;
        max-width: none;
        margin: 0 0 40px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row ul {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-flow: row;
        gap: 20px 32px;
        width: 100%;
        max-width: none;
        margin: 0 0 48px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        width: 100%;
        height: auto;
        margin: 0;
        aspect-ratio: 1.88 / 1;
    }
}

@media (max-width: 1100px) {
    .studio-faq {
        height: auto;
    }
}

@media (max-width: 760px) {
    .home-testimonials-section {
        width: calc(100vw - 28px);
    }

    .services-section[aria-labelledby="services-title"] .section-heading,
    .services-section[aria-labelledby="services-title"] .service-list {
        width: calc(100% - 28px);
        margin-right: 14px;
        margin-left: 14px;
    }
}

/* Studio scroll-linked character reveals */
.studio-intro-collage {
    view-timeline-name: --studio-intro-reveal;
    view-timeline-axis: block;
}

.studio-belief {
    view-timeline-name: --studio-belief-reveal;
    view-timeline-axis: block;
}

[data-scroll-reveal-text],
.studio-intro-statement.scroll-reveal-text,
.studio-belief h2.scroll-reveal-text {
    color: #000;
}

.scroll-reveal-visual {
    display: inline;
}

.studio-intro-statement .scroll-reveal-char,
.studio-belief h2 .scroll-reveal-char {
    color: #000;
}

@supports (animation-timeline: --studio-scroll-reveal) {
    .has-scroll-reveal-timeline .scroll-reveal-char {
        animation-name: studio-character-ink;
        animation-duration: 1ms;
        animation-fill-mode: both;
        animation-play-state: paused;
        animation-timing-function: steps(1, end);
        animation-range-start: cover var(--scroll-reveal-start);
        animation-range-end: cover var(--scroll-reveal-end);
    }

    .studio-intro-collage.has-scroll-reveal-timeline .scroll-reveal-char {
        animation-timeline: --studio-intro-reveal;
    }

    .studio-belief.has-scroll-reveal-timeline .scroll-reveal-char {
        animation-timeline: --studio-belief-reveal;
    }

    .has-scroll-reveal-timeline.is-scroll-reveal-active .scroll-reveal-char {
        animation-play-state: running;
    }
}

.is-scroll-reveal-static .scroll-reveal-char,
.is-scroll-reveal-static [data-scroll-reveal-text] {
    color: #000;
}

@keyframes studio-character-ink {
    from {
        color: rgba(0, 0, 0, 0.42);
    }

    to {
        color: #000;
    }
}

@media (min-width: 761px) {
    .studio-intro-statement {
        position: sticky;
        top: calc(50vh + 120px);
        right: auto;
        left: auto;
        z-index: 2;
        width: calc(100% - var(--studio-intro-gutter) - var(--studio-intro-gutter));
        margin-right: var(--studio-intro-gutter);
        margin-left: var(--studio-intro-gutter);
        transform: translateY(-50%);
        pointer-events: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-title-split-char {
        opacity: 1;
        transform: none;
    }

    .page-title-split.is-split-active .page-title-split-char {
        animation: none;
    }

    .studio-intro-statement .scroll-reveal-char,
    .studio-belief h2 .scroll-reveal-char {
        animation: none !important;
        color: #000;
    }

    .article-breadcrumb a {
        transition: none;
    }

    .article-breadcrumb a:hover,
    .article-breadcrumb a:focus-visible,
    .article-breadcrumb a:active {
        transform: none;
    }
}

/* Homepage service illustrations replace the desktop-only pointer follower. */
.services-section[aria-labelledby="services-title"] .service-row {
    grid-template-columns: max-content minmax(250px, 1.35fr) minmax(220px, 1fr) minmax(135px, 221px) minmax(120px, 190px);
    gap: clamp(12px, 1.5vw, 28px);
}

.service-row-visual {
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 190px;
    margin: 0;
    pointer-events: none;
}

.service-row-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: max-content minmax(0, 1fr) clamp(130px, 19vw, 180px);
        grid-template-rows: auto auto auto;
        gap: 12px 20px;
    }

    .services-section[aria-labelledby="services-title"] .service-row > span {
        grid-column: 1;
        grid-row: 1;
    }

    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2 {
        grid-column: 2;
        grid-row: 1;
    }

    .services-section[aria-labelledby="services-title"] .service-row p {
        grid-column: 2;
        grid-row: 2;
    }

    .services-section[aria-labelledby="services-title"] .service-row ul {
        grid-column: 2;
        grid-row: 3;
    }

    .services-section[aria-labelledby="services-title"] .service-row .service-row-visual {
        grid-column: 3;
        grid-row: 1 / span 3;
    }
}

@media (max-width: 760px) {
    .works-section .work-card figure {
        aspect-ratio: 1.6 / 1;
    }

    .home-blog-section .post-card figure {
        aspect-ratio: 1.4375 / 1;
    }

    .works-section > .text-link {
        margin-top: 40px;
    }

    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: minmax(0, 1fr) clamp(112px, 30vw, 144px);
        grid-template-rows: auto auto auto auto;
        gap: 12px;
    }

    .services-section[aria-labelledby="services-title"] .service-row > span,
    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2,
    .services-section[aria-labelledby="services-title"] .service-row p {
        grid-column: 1 / -1;
    }

    .services-section[aria-labelledby="services-title"] .service-row > span {
        grid-row: 1;
    }

    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2 {
        grid-row: 2;
    }

    .services-section[aria-labelledby="services-title"] .service-row p {
        grid-row: 3;
    }

    .services-section[aria-labelledby="services-title"] .service-row ul {
        grid-column: 1;
        grid-row: 4;
        align-self: center;
    }

    .services-section[aria-labelledby="services-title"] .service-row .service-row-visual {
        grid-column: 2;
        grid-row: 4;
        align-self: center;
        justify-self: end;
    }
}

/* Apple-inspired mobile global navigation, scoped to the existing phone breakpoint. */
@media (max-width: 760px) {
    html.nav-open,
    html.nav-closing {
        height: 100%;
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.nav-open,
    body.nav-closing {
        position: fixed;
        top: var(--jvds-navigation-scroll-offset, 0px);
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .site-header {
        top: 0;
        z-index: 1000;
    }

    .nav-shell,
    .site-header.is-scrolled .nav-shell {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 48px;
        grid-template-rows: 48px minmax(0, 1fr);
        align-items: center;
        width: 100%;
        height: 48px;
        min-height: 48px;
        padding: 0 0 0 12px;
        gap: 0;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background-color: rgba(250, 250, 252, 0.82);
        background-image: none;
        box-shadow: none;
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
        transition-property: height, background-color, backdrop-filter, -webkit-backdrop-filter;
        transition-duration: 480ms, 240ms, 240ms, 240ms;
        transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1), ease, ease, ease;
    }

    body.nav-open .nav-shell,
    body.nav-open .site-header.is-scrolled .nav-shell {
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        padding-bottom: 0;
        background-color: #fafafc;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    body.nav-closing .nav-shell,
    body.nav-closing .site-header.is-scrolled .nav-shell {
        width: 100%;
        min-height: 48px;
        padding-bottom: 0;
        background-color: #fafafc;
    }

    .nav-shell .brand-mark {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        justify-self: start;
        width: 118px;
        min-width: 118px;
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: opacity 240ms ease, transform 240ms ease;
    }

    body.nav-open .nav-shell .brand-mark {
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -4px, 0);
    }

    .nav-toggle {
        position: relative;
        grid-column: 2;
        grid-row: 1;
        display: block;
        align-self: center;
        justify-self: end;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #1d1d1f;
        cursor: pointer;
        touch-action: manipulation;
    }

    .nav-toggle-line {
        position: absolute;
        left: 15px;
        display: block;
        width: 18px;
        height: 1.2px;
        margin: 0;
        border-radius: 999px;
        background: currentColor;
        opacity: 0.8;
        transform-origin: center;
        transition-property: top, transform;
        transition-duration: 120ms, 240ms;
        transition-timing-function: cubic-bezier(0.42, 0, 1, 1), cubic-bezier(0, 0, 0.58, 1);
    }

    .nav-toggle-line:first-of-type {
        top: 19px;
    }

    .nav-toggle-line:nth-of-type(2) {
        top: 26px;
    }

    body.nav-open .nav-toggle-line {
        top: 23.4px;
        transition-delay: 0ms, 120ms;
    }

    body.nav-open .nav-toggle-line:first-of-type {
        transform: rotate(45deg);
    }

    body.nav-open .nav-toggle-line:nth-of-type(2) {
        transform: rotate(-45deg);
    }

    .nav-toggle:focus-visible {
        outline: 2px solid #0071e3;
        outline-offset: -6px;
    }

    .nav-menu,
    .site-header.is-scrolled .nav-menu {
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: stretch;
        display: block;
        width: 100%;
        height: calc(100dvh - 48px);
        padding: 2px 0 32px;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;
        scrollbar-width: none;
        transition: visibility 0s linear 520ms;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    body.nav-open .nav-menu,
    body.nav-closing .nav-menu {
        visibility: visible;
        transition-delay: 0s;
    }

    body.nav-open .nav-menu {
        pointer-events: auto;
    }

    .nav-menu .nav-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu .nav-list li,
    .nav-menu .nav-contact {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
        transition-property: opacity, transform;
        transition-duration: 240ms, 240ms;
        transition-timing-function: ease, ease;
        transition-delay: 0ms, 0ms;
        will-change: opacity, transform;
    }

    body.nav-open .nav-menu .nav-list li,
    body.nav-open .nav-menu .nav-contact {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    body.nav-open .nav-menu .nav-list li:nth-child(1) {
        transition-delay: 200ms;
    }

    body.nav-open .nav-menu .nav-list li:nth-child(2) {
        transition-delay: 220ms;
    }

    body.nav-open .nav-menu .nav-list li:nth-child(3) {
        transition-delay: 240ms;
    }

    body.nav-open .nav-menu .nav-list li:nth-child(4) {
        transition-delay: 260ms;
    }

    body.nav-open .nav-menu .nav-list li:nth-child(5) {
        transition-delay: 280ms;
    }

    body.nav-open .nav-menu .nav-contact {
        transition-delay: 300ms;
    }

    .nav-menu .nav-list a,
    .nav-menu .nav-contact {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        min-width: 0;
        min-height: 53px;
        padding: 3px 48px 4px;
        border-radius: 0;
        background: transparent;
        color: #1d1d1f;
        font-size: 28px;
        font-weight: 600;
        line-height: 1;
        white-space: normal;
    }

    .nav-menu .nav-list a:hover,
    .nav-menu .nav-list a[aria-current="page"],
    .nav-menu .nav-contact:hover {
        background: transparent;
    }

    .nav-menu .letter-swap-text {
        justify-content: flex-start;
    }

    .nav-menu a:focus-visible {
        outline: 2px solid #0071e3;
        outline-offset: -4px;
    }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
    .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .nav-shell .brand-mark,
    .nav-toggle-line,
    .nav-menu,
    .nav-menu .nav-list li,
    .nav-menu .nav-contact {
        transition: none;
    }
}

/* Pointer-capable layouts keep the original service image cursor. */
.service-hover-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: min(427px, 28vw);
    max-width: none;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0) scale(0.9);
    transition: opacity 160ms ease, transform 160ms ease;
    will-change: left, top, transform, opacity;
}

.service-hover-cursor.is-visible {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: max-content minmax(250px, 1.35fr) minmax(220px, 1fr) minmax(135px, 221px);
    }

    .services-section[aria-labelledby="services-title"] .service-row .service-row-visual {
        display: none;
    }

    .has-service-cursor .services-section[aria-labelledby="services-title"] .service-row {
        cursor: none;
    }

    .service-hover-cursor {
        display: block;
    }
}

@media (min-width: 761px) and (max-width: 1100px) and (hover: hover) and (pointer: fine) {
    .services-section[aria-labelledby="services-title"] .service-row {
        grid-template-columns: max-content minmax(0, 1fr);
    }
}

/* Reviewed medium-width refinements. */
@media (min-width: 1101px) and (max-width: 1360px) {
    .services-section[aria-labelledby="services-catalog-title"] .service-row p {
        width: 261px;
        max-width: 261px;
    }
}

@media (min-width: 761px) and (max-width: 1200px) {
    .studio-intro-statement {
        transform: translateY(0);
    }
}

/* Keep the Studio title mark on the same size scale as the FAQ mark. */
.studio-clients-copy h2 span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-top: 18px;
    font-size: 0;
    line-height: 0;
    vertical-align: 0;
}

.faq-question > span {
    padding-right: 40px;
}

@media (max-width: 1100px) {
    .studio-clients-copy h2 span {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        margin-top: 12px;
    }
}

@media (max-width: 760px) {
    .studio-clients-copy h2 span {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        margin-top: 8px;
    }

    .faq-question > span {
        padding-right: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-hover-cursor {
        transition: none;
    }
}

/* Work-detail controls keep their intended type scale after letter splitting. */
:is(.single-work.has-work-prose, .single-article) .work-detail-contact-button > span:first-child {
    font-size: 14px;
}

.single-work .detail-nav-card > strong {
    font-size: 16px;
}

@media (max-width: 1100px) {
    :is(.single-work.has-work-prose, .single-article) .work-detail-sidebar {
        position: static;
        top: auto;
    }
}

@media (min-width: 1101px) and (max-width: 1360px) {
    .studio-metric-row strong {
        margin-left: 40px;
    }

    .studio-metric-row p {
        flex-basis: 260px;
        max-width: 260px;
    }
}

/* Each hand owns one clipped half, leaving a persistent 20px center gap. */
.cta-art {
    width: calc(50% - 10px);
}

/* Final reviewed responsive refinements. */
@media (min-width: 761px) and (max-width: 1200px) {
    .studio-intro-statement {
        transform: translateY(4px);
    }
}

.footer-red-contact a,
.footer-red-socials a,
.footer-red-info a.footer-red-info-value {
    border-bottom: 0;
    text-decoration: none;
}

@media (max-width: 760px) {
    /* Keep the mobile navigation as an inset, fully rounded sheet. */
    .nav-shell,
    .site-header.is-scrolled .nav-shell {
        top: 16px;
        right: 16px;
        left: 16px;
        width: calc(100% - 32px);
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    }

    body.nav-open .nav-shell,
    body.nav-open .site-header.is-scrolled .nav-shell {
        width: calc(100% - 32px);
        height: calc(100dvh - 32px);
        min-height: calc(100dvh - 32px);
        border-radius: 24px;
    }

    body.nav-closing .nav-shell,
    body.nav-closing .site-header.is-scrolled .nav-shell {
        width: calc(100% - 32px);
        border-radius: 24px;
    }

    body.nav-open .nav-shell .brand-mark {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-menu,
    .site-header.is-scrolled .nav-menu {
        display: block;
        height: calc(100dvh - 80px);
        transition: none;
    }

    body.nav-open .nav-menu,
    body.nav-open .nav-menu .nav-list,
    body.nav-open .nav-menu .nav-list li,
    body.nav-open .nav-menu .nav-contact {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition-delay: 0ms !important;
    }

    /* The menu fits on phone screens, so keep wheel and touch scrolling from shifting its links. */
    body.nav-open .nav-menu,
    body.nav-open .site-header.is-scrolled .nav-menu {
        overflow-y: hidden;
        overscroll-behavior: none;
    }

    /* Keep Contact with the other mobile navigation tabs, while the desktop CTA stays separate. */
    .nav-menu .nav-list-contact-mobile {
        display: block;
    }

    .nav-menu > .nav-contact-desktop {
        display: none;
    }

    html.nav-closing body.nav-closing .nav-menu,
    html.nav-closing body.nav-closing .nav-menu .nav-list,
    html.nav-closing body.nav-closing .nav-menu .nav-list li,
    html.nav-closing body.nav-closing .nav-menu .nav-contact {
        visibility: visible !important;
        opacity: 1;
        transform: none;
        transition-delay: 0ms !important;
    }

    /* Center the two homepage hero copy blocks and stabilize the circular label. */
    .hero-scroll-cue {
        width: 112px;
        height: 112px;
    }

    .hero-scroll-ring text {
        font-size: 9px;
        letter-spacing: 0.42em;
    }

    .hero-title-wrap h1,
    .hero-title {
        margin-top: 32px;
    }

    .hero-bottom {
        justify-items: center;
        text-align: center;
    }

    .hero-kicker,
    .hero-bottom p {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .hero-bottom p {
        justify-self: center;
    }

    /* One exact mobile type scale for homepage and inner-page section headings. */
    #featured-work-title,
    #services-title,
    #testimonials-title,
    #blog-title,
    #services-catalog-title,
    #services-testimonials-title,
    #studio-clients-title {
        font-size: 32px;
        line-height: 1.08;
    }

    .works-section .section-heading > p,
    .services-section[aria-labelledby="services-title"] .section-heading > p,
    .home-blog-section .section-heading > p {
        font-size: 18px;
        line-height: 1.35;
    }

    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h3,
    .services-section[aria-labelledby="services-catalog-title"] .service-row h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    #featured-work-title > span,
    #services-title > span,
    #blog-title > span,
    .blog-section .section-heading h2 > span,
    .faq-intro h2 > span,
    .services-catalog-heading h2 > span,
    .testimonials-section.services-testimonials .center-heading h2 > span,
    .studio-clients-copy h2 > span {
        display: inline-block;
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        margin-top: 3px;
        font-size: 0;
        line-height: 0;
        vertical-align: top;
    }

    /* Use the same mobile header composition on Work, Blog, Studio, Services and Contact. */
    .work-archive-hero,
    .blog-archive-hero,
    .studio-page-hero,
    .services-page-hero,
    .contact-page-hero {
        padding-top: 0;
    }

    .work-archive-hero > .archive-page-hero-copy,
    .blog-archive-hero .archive-page-hero-copy,
    .studio-page-hero .archive-page-hero-copy,
    .services-page-hero-copy,
    .contact-page-hero .archive-page-hero-copy {
        display: flex;
        width: calc(100% - 28px);
        padding: 104px 14px 40px;
        flex-direction: column;
        gap: 40px;
        overflow: hidden;
    }

    .work-archive-hero .archive-page-hero-copy h2,
    .blog-archive-hero .archive-page-hero-copy h2,
    .studio-page-hero .archive-page-hero-copy h2,
    .services-page-hero-copy h2,
    .contact-page-hero .archive-page-hero-copy h2 {
        max-width: 100%;
        font-size: 82px;
        line-height: 0.9;
        white-space: nowrap;
    }

    .work-archive-hero .archive-page-hero-copy > div,
    .blog-archive-hero .archive-page-hero-copy > div,
    .studio-page-hero .archive-page-hero-copy > div,
    .services-page-hero-copy > div,
    .contact-page-hero .archive-page-hero-copy > div {
        width: calc(100% - 35px);
        margin: 0 0 0 auto;
        text-align: left;
    }

    .work-archive-hero .archive-page-hero-copy h1,
    .work-archive-hero .archive-page-hero-copy p,
    .blog-archive-hero .archive-page-hero-copy h1,
    .blog-archive-hero .archive-page-hero-copy p,
    .studio-page-hero .archive-page-hero-copy h1,
    .studio-page-hero .archive-page-hero-copy p,
    .services-page-hero-copy h1,
    .services-page-hero-copy p,
    .contact-page-hero .archive-page-hero-copy h1,
    .contact-page-hero .archive-page-hero-copy p {
        margin-left: 0;
        text-align: left;
    }

    .services-page-hero-media {
        margin-top: 0;
    }

    /* Turn the Work categories into a real expandable filter on phones. */
    .work-category-tabs-anchor {
        position: relative;
        z-index: 6;
        height: 64px;
    }

    .work-category-tabs {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 4;
        display: flex;
        width: calc(100% - 28px);
        margin: 0 auto;
        padding-top: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        isolation: isolate;
    }

    .work-category-tabs::before {
        top: 0;
    }

    .work-category-tabs a,
    .work-category-tabs a.is-active {
        display: none;
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        place-items: center start;
        border: 0;
        border-bottom: 1px solid var(--jvds-page-frame-line);
        background: #fff;
        color: #000;
        font-size: 16px;
        line-height: 1.2;
    }

    .work-category-tabs a.is-active {
        display: inline-flex;
        order: -1;
        padding-left: 0;
        border-bottom-color: transparent;
    }

    .work-category-tabs.is-mobile-open {
        z-index: 7;
        box-sizing: border-box;
        padding: 12px 0;
        overflow: hidden;
        border-radius: 20px;
        background: #fafafc;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    }

    .work-category-tabs.is-mobile-open::after {
        display: none;
    }

    .work-category-tabs.is-mobile-open a {
        display: flex;
        min-height: 52px;
        padding: 0 20px;
        border-bottom-color: var(--jvds-page-frame-line);
        background: transparent;
    }

    .work-category-tabs.is-mobile-open a:last-child {
        border-bottom: 0;
    }

    .work-category-tabs.is-mobile-open a.is-active::after {
        transform: translateY(2px) rotate(225deg);
    }

    .nav-language {
        display: none;
    }

    .archive-work-section .work-card[hidden] {
        display: none;
    }

    /* Keep every service deliverable label compact and consistent on phones. */
    .services-section[aria-labelledby="services-title"] .service-row ul,
    .services-section[aria-labelledby="services-catalog-title"] .service-row ul {
        font-size: 12px;
    }

    /* Services: preserve the line rhythm while removing nested mobile gutters. */
    .services-catalog-heading {
        margin-bottom: 40px;
    }

    .services-catalog-heading p {
        max-width: none;
        font-size: 18px;
        line-height: 1.35;
    }

    .services-section[aria-labelledby="services-catalog-title"] {
        padding-bottom: 0;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row {
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonials-section.services-testimonials {
        width: calc(100vw - 28px);
        padding-right: 14px;
        padding-left: 14px;
    }

    .testimonials-section.services-testimonials .center-heading,
    .testimonials-section.services-testimonials .testimonial-grid,
    .testimonials-section.services-testimonials .testimonial-track,
    .testimonials-section.services-testimonials .testimonial-group,
    .testimonials-section.services-testimonials .testimonial-card,
    .testimonials-section.services-testimonials .testimonial-card:nth-child(odd) {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    /* Studio: keep the collage statement sticky throughout the image sequence. */
    .studio-intro-collage {
        margin-top: 40px;
        overflow: visible;
    }

    .studio-intro-statement {
        position: sticky;
        top: calc(50svh - 80px);
        z-index: 2;
        align-self: start;
        pointer-events: none;
    }

    .studio-metrics {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .studio-clients-copy,
    .studio-client-grid {
        box-sizing: border-box;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
    }

    .studio-clients-copy h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    /* Keep the Blog frame continuous and use the requested 40px list inset. */
    .blog-archive-hero ~ .blog-section {
        margin-top: 0;
        padding-top: 40px;
    }

    .single-article .article-hero {
        padding-top: 120px;
    }

    /* Contact information spacing. */
    .contact-info-panel {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact-social-label {
        margin-top: 40px;
    }

    .contact-socials {
        gap: 16px;
    }

    /* Work detail spacing follows the same 20px content gutter. */
    .single-work .work-detail-cover {
        padding: 20px;
    }

    .single-work.has-work-prose .work-detail-content {
        gap: 20px;
        padding: 20px;
    }

    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        padding: 16px;
    }

    .detail-related-title-row {
        display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .detail-related-works h2,
    .detail-related-more {
        flex: 0 0 auto;
        font-size: 24px;
    }

    /* Keep the mobile footer lockup prominent without exceeding its framed width. */
    .footer-red-word {
        --footer-word-gap: clamp(20px, 6vw, 24px);
        --footer-word-mark-size: clamp(44px, 14.533vw, 76px);
        width: auto;
    }

    .footer-red-word-text {
        flex-basis: clamp(150px, 50vw, 260px);
        width: clamp(150px, 50vw, 260px);
        max-width: clamp(150px, 50vw, 260px);
    }
}

/* Mobile navigation: a compact dropdown keeps the page scroll independent from the menu. */
@media (max-width: 760px) {
    html.nav-open,
    html.nav-closing,
    body.nav-open,
    body.nav-closing {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        width: auto;
        height: auto;
        overflow: visible;
        overscroll-behavior: auto;
    }

    .nav-shell,
    .site-header.is-scrolled .nav-shell,
    body.nav-open .nav-shell,
    body.nav-open .site-header.is-scrolled .nav-shell,
    body.nav-closing .nav-shell,
    body.nav-closing .site-header.is-scrolled .nav-shell {
        grid-template-rows: 48px;
        height: 48px;
        min-height: 48px;
        padding-bottom: 0;
        overflow: visible;
    }

    .nav-menu,
    .site-header.is-scrolled .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: -12px;
        z-index: 1;
        display: none;
        width: auto;
        height: auto;
        max-height: calc(100dvh - 96px);
        margin: 0;
        padding: 12px 0;
        overflow-x: hidden;
        overflow-y: auto;
        border-radius: 20px;
        background: #fafafc;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
        visibility: hidden;
        pointer-events: none;
    }

    body.nav-open .nav-menu,
    body.nav-open .site-header.is-scrolled .nav-menu {
        display: block;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu .nav-list {
        display: grid;
        gap: 0;
    }

    .nav-menu .nav-list li,
    .nav-menu .nav-contact {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nav-menu .nav-list a,
    .nav-menu .nav-contact {
        justify-content: center;
        min-height: 52px;
        padding: 0 20px;
        font-size: 22px;
        text-align: center;
        white-space: nowrap;
    }

    .nav-menu .letter-swap-text {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .services-page-hero-copy > h2 {
        align-self: flex-start;
        text-align: left;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-all;
    }

    .services-page-hero-copy > div {
        align-self: flex-end;
        text-align: right;
    }

    .services-page-hero-copy h1,
    .services-page-hero-copy p {
        text-align: right;
    }
}

@media (max-width: 760px) {
    .work-archive-hero > .archive-page-hero-copy,
    .blog-archive-hero .archive-page-hero-copy,
    .studio-page-hero .archive-page-hero-copy,
    .services-page-hero-copy,
    .contact-page-hero .archive-page-hero-copy {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .site-footer-red {
        padding-top: 40px;
    }

    .archive-work-section > .text-link {
        margin-top: 20px;
    }
}

@media (max-width: 760px) {
    .services-stats {
        width: calc(100% - 28px);
        max-width: none;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row p {
        margin-top: 0;
    }

    .testimonials-section.services-testimonials .center-heading {
        align-items: flex-start;
        justify-items: start;
        gap: 20px;
        text-align: left;
    }

    .testimonials-section.services-testimonials .center-heading p {
        margin: 0;
        text-align: left;
    }

    .testimonials-section.services-testimonials .testimonial-avatar,
    .testimonials-section.services-testimonials .testimonial-card:nth-child(odd) .testimonial-avatar {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 760px) {
    /* Services hero: keep the copy and image as one uninterrupted visual block. */
    .services-page-hero-copy::after,
    .services-page-hero-media::before,
    .services-page-hero-media::after {
        display: none;
    }

    .testimonials-section.services-testimonials .center-heading {
        padding-right: 0;
        padding-left: 0;
    }

    .testimonials-section.services-testimonials .testimonial-grid {
        margin-top: 32px;
    }

    .testimonials-section.services-testimonials .testimonial-content {
        gap: 24px;
    }

    .testimonials-section.services-testimonials .testimonial-quote {
        font-size: 16px;
        line-height: 24px;
    }

    .site-footer-red {
        --footer-info-icon-size: 40px;
    }
}

@media (max-width: 760px) {
    .services-stats {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-media {
        height: 300px;
        aspect-ratio: auto;
    }

    .testimonials-section.services-testimonials .testimonial-card strong {
        font-size: 12px;
        line-height: 20px;
    }

    .testimonials-section.services-testimonials .testimonial-person > span {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 760px) {
    .studio-quote-scene > div > span {
        font-family: "Inter Variable", Arial, sans-serif;
        font-size: 150px;
    }
}

@media (max-width: 760px) {
    /* Inner-page hero copy follows one consistent split alignment. */
    .work-archive-hero .archive-page-hero-copy > div,
    .blog-archive-hero .archive-page-hero-copy > div,
    .studio-page-hero .archive-page-hero-copy > div,
    .services-page-hero-copy > div,
    .contact-page-hero .archive-page-hero-copy > div,
    .work-archive-hero .archive-page-hero-copy h1,
    .work-archive-hero .archive-page-hero-copy p,
    .blog-archive-hero .archive-page-hero-copy h1,
    .blog-archive-hero .archive-page-hero-copy p,
    .studio-page-hero .archive-page-hero-copy h1,
    .studio-page-hero .archive-page-hero-copy p,
    .services-page-hero-copy h1,
    .services-page-hero-copy p,
    .contact-page-hero .archive-page-hero-copy h1,
    .contact-page-hero .archive-page-hero-copy p {
        text-align: right;
    }

    .blog-archive-hero ~ .blog-section .post-grid {
        gap: 60px;
    }
}

@media (max-width: 760px) {
    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        min-height: 52px;
        padding-top: 8px;
        padding-bottom: 8px;
        align-content: start;
        gap: 4px;
    }

    .single-work .detail-nav-card > strong.letter-swap-ready,
    .single-work .detail-nav-card > strong.letter-swap-ready .letter-swap-text {
        display: flex;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow: visible;
        white-space: normal;
    }

    .detail-related-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 1100px) {
    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        height: 60px;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .single-work .detail-nav-card > strong {
        display: none;
    }
}

.single-work .detail-nav-card:hover,
.single-work .detail-nav-card:focus-visible {
    transform: none;
}

.single-work .detail-nav-card {
    min-width: 0;
    align-content: start;
    gap: 24px;
}

.single-work .detail-nav-card > strong {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.detail-related-more-mobile {
    display: none;
}

@media (min-width: 1101px) {
    .single-work .detail-nav-card {
        align-content: center;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        height: 100px;
        min-height: 100px;
    }
}

@media (max-width: 760px) {
    .detail-related-header .detail-related-more {
        display: none;
    }

    .detail-related-more-mobile {
        display: inline-flex;
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .single-work .detail-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-work .detail-nav::before {
        display: block;
    }

    .single-work .detail-nav-card.is-previous {
        grid-column: 1;
    }

    .single-work .detail-nav-card.is-next {
        grid-column: 2;
        border-top: 0;
    }

    .single-work .detail-nav-card.is-previous,
    .single-work .detail-nav-card.is-next {
        height: 80px;
        min-height: 80px;
    }

    .single-work .detail-nav-card > strong.letter-swap-ready {
        display: none !important;
    }
}

/* Desktop interaction belongs to the home-page service list only. */
.services-section[aria-labelledby="services-catalog-title"] .service-row .service-row-visual {
    display: none;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
    .services-section[aria-labelledby="services-title"] .service-row {
        position: relative;
        isolation: isolate;
        transition: background-color 220ms ease, color 220ms ease;
    }

    .has-service-cursor .services-section[aria-labelledby="services-title"] .service-row {
        cursor: none;
    }

    .services-section[aria-labelledby="services-title"] .service-row > span,
    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2,
    .services-section[aria-labelledby="services-title"] .service-row p,
    .services-section[aria-labelledby="services-title"] .service-row ul {
        transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
    }

    .services-section[aria-labelledby="services-title"] .service-row:hover,
    .services-section[aria-labelledby="services-title"] .service-row:focus-within {
        background-color: #000;
        color: #fff;
    }

    .services-section[aria-labelledby="services-title"] .service-row:hover > span,
    .services-section[aria-labelledby="services-title"] .service-row:hover h3,
    .services-section[aria-labelledby="services-title"] .service-row:hover h2,
    .services-section[aria-labelledby="services-title"] .service-row:hover p,
    .services-section[aria-labelledby="services-title"] .service-row:focus-within > span,
    .services-section[aria-labelledby="services-title"] .service-row:focus-within h3,
    .services-section[aria-labelledby="services-title"] .service-row:focus-within h2,
    .services-section[aria-labelledby="services-title"] .service-row:focus-within p {
        color: #fff;
        transform: translateX(28px);
    }

    .services-section[aria-labelledby="services-title"] .service-row:hover ul,
    .services-section[aria-labelledby="services-title"] .service-row:focus-within ul {
        color: #fff;
        transform: translateX(-28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-section[aria-labelledby="services-title"] .service-row,
    .services-section[aria-labelledby="services-title"] .service-row > span,
    .services-section[aria-labelledby="services-title"] .service-row h3,
    .services-section[aria-labelledby="services-title"] .service-row h2,
    .services-section[aria-labelledby="services-title"] .service-row p,
    .services-section[aria-labelledby="services-title"] .service-row ul {
        transition: none;
    }
}

/* GSAP owns primary motion once the safe runtime has initialized. */
.motion-ready .hero-scroll-ring,
.motion-ready .hero-title-star img,
.motion-ready .page-title-split-char,
.motion-ready .scroll-reveal-char {
    animation: none;
}

.motion-ready .work-card-image,
.motion-ready .post-card-image,
.motion-ready .detail-related-card img {
    transition: none;
}

/* Studio text motion keeps the original copy visible until GSAP initializes. */
.studio-motion-visual {
    display: inline;
}

.studio-motion-word {
    display: inline-block;
    white-space: nowrap;
}

.studio-motion-char {
    display: inline-block;
    color: inherit;
    opacity: 1;
    visibility: visible;
}

.studio-intro-statement,
.studio-intro-statement .studio-motion-char {
    color: #000;
}

.studio-quote-scene p .studio-motion-visual,
.studio-quote-scene p .studio-motion-word,
.studio-quote-scene p .studio-motion-char {
    width: auto;
    height: auto;
    margin: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

.studio-quote-scene p .studio-motion-visual {
    display: inline;
}

.studio-quote-scene p .studio-motion-word,
.studio-quote-scene p .studio-motion-char {
    display: inline-block;
}

@media (min-width: 1101px) {
    .studio-belief h2 {
        left: 50%;
        width: min(var(--container-width), calc(100% - var(--jvds-page-inner-gutter) - var(--jvds-page-inner-gutter)));
        max-width: var(--container-width);
        transform: translate(-50%, -50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready .keyword-track,
    .motion-ready .studio-image-track,
    .motion-ready .services-testimonials .testimonial-grid,
    .motion-ready .hero-scroll-ring,
    .motion-ready .hero-title-star img,
    .motion-ready .footer-red-brand-rotor {
        animation: none !important;
    }
}

/* Canonical work-detail layout: one visual gutter and one content structure for every case. */
.single-work {
    --work-detail-inline-gutter: var(--jvds-page-inner-gutter);
}

.single-work .work-detail-cover,
.single-work.has-work-prose .work-detail-content {
    padding-right: var(--work-detail-inline-gutter);
    padding-left: var(--work-detail-inline-gutter);
}

.single-work .work-detail-cover-media {
    width: 100%;
    overflow: hidden;
}

.single-work .work-detail-cover-media .work-detail-image {
    display: block;
    width: 100%;
}

.single-work.has-work-prose .work-detail-content {
    grid-template-columns: clamp(350px, 22vw, 380px) minmax(0, 1fr);
}

.single-work.has-work-prose .work-detail-content.has-no-sidebar {
    grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 1100px) {
    .single-work {
        --work-detail-inline-gutter: 40px;
    }

    .single-work.has-work-prose .work-detail-content {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .single-work {
        --work-detail-inline-gutter: 20px;
    }
}

/* Footer type polish: preserve descenders and share the legal-row ink colour. */
.footer-red-socials a {
    line-height: 1.12;
}

.footer-red-legal .footer-red-back a,
.footer-red-legal .footer-red-back a span {
    color: inherit;
}

.footer-red-legal .footer-red-back a:hover,
.footer-red-legal .footer-red-back a:focus-visible,
.footer-red-legal .footer-red-back a:hover span,
.footer-red-legal .footer-red-back a:focus-visible span {
    color: #050505;
}

/* Match article cover spacing to the canonical case-detail frame. */
.single-article .article-cover {
    padding: var(--jvds-page-inner-gutter);
}

.single-article .article-cover-media {
    width: 100%;
    overflow: hidden;
}

.single-article .article-cover-media .article-cover-image {
    display: block;
    width: 100%;
}

@media (max-width: 1100px) {
    .single-article .article-cover {
        padding: 40px;
    }
}

@media (max-width: 760px) {
    .single-article .article-cover {
        padding: 20px;
    }
}

/* Keep article content framed while extending its two main dividers edge to edge. */
.single-article .article-hero,
.single-article .article-layout {
    position: relative;
}

.single-article .article-hero {
    border-bottom: 0;
}

.single-article .article-layout {
    border-top: 0;
}

.single-article .article-hero::after,
.single-article .article-layout::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    width: 100dvw;
    pointer-events: none;
    transform: translateX(-50%);
}

.single-article .article-hero::after {
    bottom: 0;
    border-bottom: 1px solid var(--jvds-page-frame-line);
}

.single-article .article-layout::before {
    top: 0;
    border-top: 1px solid var(--color-line);
}

/* Blog article tools reuse the Work detail sidebar and contact-button components. */
.single-article .article-layout {
    padding-right: var(--jvds-page-inner-gutter);
    padding-left: var(--jvds-page-inner-gutter);
}

.single-article .article-reading-grid {
    width: min(1390px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1000px) 350px;
    gap: 40px;
    align-items: start;
    margin: 0 auto;
}

.single-article .article-main-column {
    min-width: 0;
}

.single-article .article-content,
.single-article .article-footer-meta,
.single-article .article-share {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.single-article .article-content h2,
.single-article .article-content h3 {
    scroll-margin-top: 112px;
}

.single-article .blog-right-sidebar {
    --blog-sidebar-inner-padding: 40px;
    width: 350px;
    min-width: 350px;
    position: sticky;
    top: calc(96px + var(--wp-admin--admin-bar--height, 0px));
    display: grid;
    gap: 0;
    overflow: hidden;
    background: #fafbfc;
}

.single-article .blog-right-sidebar .blog-sidebar-card {
    min-width: 0;
    position: static;
    top: auto;
    border-bottom: 0;
    background: transparent;
}

.single-article .article-toc-card[hidden] {
    display: none;
}

.single-article .blog-sidebar-card h2 {
    margin: 0;
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.single-article .blog-right-sidebar .article-ai-card {
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
}

.single-article .blog-right-sidebar .article-ai-card::before {
    content: "";
    position: absolute;
    right: var(--blog-sidebar-inner-padding);
    left: var(--blog-sidebar-inner-padding);
    height: 1px;
    background: var(--jvds-page-frame-line);
    pointer-events: none;
}

.single-article .blog-right-sidebar .article-ai-card::before {
    top: 0;
}

.single-article .article-toc-card[hidden] + .article-ai-card::before {
    content: none;
}

.single-article .article-ai-card h2 {
    font-size: 14px;
}

.single-article .blog-sidebar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.single-article .article-toc-toggle {
    min-width: 44px;
    min-height: 44px;
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    border: 0;
    padding: 0;
    color: #2b2b2b;
    background: transparent;
    cursor: pointer;
}

.single-article .article-toc-toggle:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 3px;
}

.single-article .article-toc-nav {
    min-height: 0;
    flex: 1 1 auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #a8a8a8 transparent;
}

.single-article .article-toc-nav::-webkit-scrollbar {
    width: 6px;
}

.single-article .article-toc-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #a8a8a8;
}

.single-article .article-toc-nav ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0 10px 0 0;
    counter-reset: article-toc;
    list-style: none;
}

.single-article .article-toc-item {
    min-width: 0;
    margin: 0;
    counter-increment: article-toc;
}

.single-article .article-toc-link {
    display: block;
    color: #777a7d;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
    overflow-wrap: anywhere;
    transition: color 180ms ease, transform 180ms ease;
}

.single-article .article-toc-link::before {
    content: counter(article-toc) ".";
    display: inline-block;
    min-width: 1.8em;
    color: inherit;
}

.single-article .article-toc-link:hover,
.single-article .article-toc-link:focus-visible,
.single-article .article-toc-link.is-active {
    color: #000;
}

.single-article .article-toc-link:hover,
.single-article .article-toc-link:focus-visible {
    transform: translateX(4px);
}

.single-article .article-toc-link:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.single-article .article-toc-link.is-active {
    font-weight: 700;
}

.single-article .article-ai-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.single-article .article-ai-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.single-article .article-ai-button svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.single-article .article-ai-button img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.single-article .article-ai-status {
    min-height: 18px;
    color: #69675f;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.single-article .blog-right-sidebar > .work-detail-contact-button {
    width: calc(100% - (var(--blog-sidebar-inner-padding) * 2));
    margin: 0 var(--blog-sidebar-inner-padding) 40px;
    border: 1px solid #e0e0e0;
    background: transparent;
}

.single-article .article-share-actions .article-share-button {
    border: 0;
    background: #f2f2f2;
}

.single-article .article-share-actions .article-share-button:hover {
    border: 0;
    background: #f2f2f2;
}

.single-article .related-section {
    border-top: 0;
}

@media (max-width: 1100px) {
    .single-article .article-layout {
        padding-right: 40px;
        padding-left: 40px;
    }

    .single-article .article-reading-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .single-article .blog-right-sidebar {
        position: static;
        top: auto;
        width: 100%;
        min-width: 0;
        order: -1;
        margin-top: 0;
    }

    .single-article .article-toc-toggle {
        display: inline-flex;
    }

    .single-article .article-toc-card.is-toc-ready:not(.is-expanded) .article-toc-nav {
        display: none;
    }

    .single-article .article-toc-card {
        height: auto;
    }
}

@media (min-width: 1101px) {
    html[lang="en"] .single-article .article-reading-grid {
        grid-template-columns: minmax(0, 960px) 390px;
    }

    html[lang="en"] .single-article .blog-right-sidebar {
        width: 390px;
        min-width: 390px;
    }

    .single-article .blog-right-sidebar {
        margin-bottom: 80px;
    }

    .single-article .article-toc-nav {
        max-height: 230px;
    }

    .single-article .article-ai-heading-row {
        margin-bottom: -40px;
    }

    .single-article .article-ai-status:not(:empty) {
        margin-top: 40px;
    }
}

@media (max-width: 760px) {
    .single-article .article-layout {
        padding-right: 20px;
        padding-left: 20px;
    }

    .single-article .article-reading-grid {
        gap: 0;
    }

    .single-article .blog-right-sidebar {
        --blog-sidebar-inner-padding: 20px;
        gap: 0;
        margin-top: 0;
    }

    .single-article .blog-sidebar-card {
        padding: 20px;
    }

    .single-article .article-ai-button {
        width: 44px;
        height: 44px;
    }

    .single-article .article-toc-nav {
        max-height: 360px;
    }

    .single-article .article-ai-heading-row {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .single-article .article-ai-actions {
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .single-article .article-toc-link,
    .single-article .article-ai-button,
    .single-article .blog-right-sidebar .work-detail-contact-button,
    .single-article .blog-right-sidebar .work-detail-contact-button > span {
        transition: none;
    }
}

/* Blog archive filters: keep each tab underline separate, matching Work. */
.blog-category-tabs-anchor,
.blog-category-tabs,
.blog-category-tabs a {
    border-right: 0;
    border-left: 0;
}

.blog-archive-hero::after {
    display: none;
}

.blog-archive-hero ~ .blog-section {
    margin-top: 0;
    padding-top: 20px;
}

@media (max-width: 760px) {
    .blog-archive-hero {
        padding-bottom: 0;
    }
}

/* Touch category menus do not inherit desktop hover or letter-swap states. */
@media (max-width: 760px) {
    .work-category-tabs a:hover,
    .work-category-tabs a.is-letter-swap-hovered,
    .work-category-tabs.is-mobile-open a:hover,
    .work-category-tabs.is-mobile-open a.is-letter-swap-hovered {
        background: transparent;
        color: #000;
    }

    .work-category-tabs a .letter-swap-primary,
    .work-category-tabs a .letter-swap-secondary {
        transition: none;
    }

    .work-category-tabs a.is-letter-swap-hovered .letter-swap-primary {
        transform: translateY(0);
    }

    .work-category-tabs a.is-letter-swap-hovered .letter-swap-secondary {
        transform: translateY(100%);
    }

    html[lang="en"] .blog-category-tabs a.is-active {
        padding-right: 0;
        padding-left: 0;
    }

    html[lang="en"] .blog-category-tabs.is-mobile-open a,
    html[lang="en"] .blog-category-tabs.is-mobile-open a.is-active {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* Mobile navigation exposes the existing current-page language links below Contact. */
@media (max-width: 760px) {
    .nav-menu > .nav-language {
        position: relative;
        display: flex;
        width: 100%;
        min-height: 56px;
        align-items: center;
        justify-content: center;
        padding: 8px 20px 0;
    }

    .nav-menu > .nav-language .nav-language-toggle {
        display: none;
    }

    .nav-menu > .nav-language .nav-language-menu {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(176px, 100%);
        min-width: 0;
        padding: 3px;
        border: 1px solid rgba(15, 23, 42, 0.14);
        border-radius: 999px;
        background: #fff;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-menu > .nav-language .nav-language-option {
        display: grid;
        min-height: 36px;
        place-items: center;
        padding: 0 14px;
        border-radius: 999px;
        font-size: 13px;
        line-height: 1;
    }

    .nav-menu > .nav-language .nav-language-option.is-current,
    .nav-menu > .nav-language .nav-language-option:not(.is-current):hover,
    .nav-menu > .nav-language .nav-language-option:not(.is-current):focus-visible {
        border-radius: 999px;
    }
}
