:root {
    --ink: #090909;
    --paper: #f5f5f1;
    --white: #fff;
    --soft: #deded8;
    --muted: #72726d;
    --red: #ed3b2f;
    --line: rgba(9, 9, 9, .18);
    --line-dark: rgba(255, 255, 255, .2);
    --shell: min(92vw, 1560px);
    --header-h: 82px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

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

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

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

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

em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

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

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 5px;
}

[hidden] {
    display: none !important;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(90px, 10vw, 180px);
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    background: var(--red);
    color: var(--white);
    transform: translateY(-180%);
    transition: transform .2s ease;
}

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

.scroll-progress {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: calc(var(--scroll, 0) * 100%);
    height: 100%;
    background: var(--red);
    transform-origin: left;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kicker::before {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    content: "";
}

.kicker-invert {
    color: rgba(255, 255, 255, .58);
}

.section-rule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 13px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--line);
}

.section-rule > span {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-rule-dark {
    border-top-color: var(--white);
    border-bottom-color: var(--line-dark);
}

.section-rule-dark > span {
    color: rgba(255, 255, 255, .48);
}

.line-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    min-width: 190px;
    padding: 10px 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.line-link::before,
.line-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
}

.line-link::before {
    background: currentColor;
    opacity: .32;
}

.line-link::after {
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.line-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.line-link span {
    color: var(--red);
    font-size: 1.1rem;
    transition: transform .35s var(--ease);
}

.line-link:hover span {
    transform: translateX(5px);
}

.line-link-light::before {
    background: var(--white);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ink);
    font-size: .76rem;
    font-weight: 700;
}

.arrow-link span {
    color: var(--red);
    font-size: 1.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity .8s var(--ease),
        transform .8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 2000;
    top: 3px;
    left: 0;
    width: 100%;
    height: var(--header-h);
    border-bottom: 1px solid transparent;
    transition:
        height .3s var(--ease),
        background-color .3s ease,
        border-color .3s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    height: 70px;
    border-bottom-color: var(--line);
    background: rgba(245, 245, 241, .94);
    backdrop-filter: blur(18px);
}

.header-shell {
    position: relative;
    z-index: 2;
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.brand-mark {
    width: clamp(120px, 10vw, 165px);
}

.brand-mark img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-size: .75rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    justify-self: end;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: transparent;
    cursor: pointer;
    font-size: .72rem;
    font-weight: 700;
}

.menu-toggle i {
    position: relative;
    width: 28px;
    height: 9px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    transition: transform .3s ease;
}

.menu-active .menu-toggle i {
    border-bottom: 0;
    transform: rotate(45deg);
}

.menu-active .menu-toggle i::after {
    position: absolute;
    top: -1px;
    left: 0;
    width: 28px;
    border-top: 1px solid;
    content: "";
    transform: rotate(-90deg);
}

.mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    padding: calc(var(--header-h) + 50px) 4vw 30px;
    background: var(--paper);
}

.mobile-menu nav {
    border-top: 1px solid var(--ink);
}

.mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(2.7rem, 11vw, 5rem);
    letter-spacing: -.07em;
    line-height: 1;
}

.mobile-menu nav span {
    width: 28px;
    color: var(--red);
    font-size: .65rem;
    letter-spacing: 0;
}

.mobile-menu-foot {
    position: absolute;
    right: 4vw;
    bottom: 30px;
    left: 4vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--ink);
    font-size: .75rem;
}

.mobile-menu-foot p {
    margin: 0;
    color: var(--muted);
}

.page-contact .site-header:not(.is-scrolled):not(.menu-active) {
    color: var(--white);
}

.page-contact .site-header:not(.is-scrolled):not(.menu-active) .brand-mark img {
    filter: invert(1);
}

/* Home hero */

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding-top: var(--header-h);
    background: var(--paper);
}

.hero-grid {
    position: absolute;
    inset: var(--header-h) 0 0;
    opacity: .42;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent calc(12.5vh - 1px),
            rgba(9, 9, 9, .12) calc(12.5vh - 1px),
            rgba(9, 9, 9, .12) 12.5vh
        );
    pointer-events: none;
}

.hero-topline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding-top: 18px;
    border-top: 1px solid var(--ink);
}

.hero-topline p {
    margin: 0;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-topline p:nth-child(2) {
    text-align: center;
}

.hero-topline p:last-child {
    text-align: right;
}

.hero-copy {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 225px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 54px;
}

.hero-index {
    position: absolute;
    top: 11%;
    left: 0;
    color: var(--red);
    font-size: .7rem;
}

.hero h1 {
    max-width: 1400px;
    margin: 0;
    font-size: clamp(4.8rem, 12.2vw, 13.2rem);
    font-weight: 600;
    letter-spacing: -.085em;
    line-height: .71;
}

.hero-word {
    display: block;
    transform: translateX(-.065em);
}

.hero-word:nth-child(2) {
    padding-left: 16%;
}

.hero-word:nth-child(3) {
    padding-left: 4%;
}

.hero-word-serif {
    font-weight: 400;
    letter-spacing: -.07em;
}

.hero-rail {
    position: absolute;
    z-index: 2;
    top: 49.5%;
    right: -4vw;
    left: -4vw;
    height: 1px;
    background: rgba(9, 9, 9, .48);
}

.hero-rail-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 61%;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    animation: draw-line 1.4s .25s var(--ease) forwards;
}

.hero-rail i {
    position: absolute;
    top: 50%;
    left: 61%;
    width: 12px;
    height: 12px;
    background: var(--red);
    border: 2px solid var(--paper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: signal 2.2s 1.7s ease-in-out infinite;
}

.hero-rail b {
    position: absolute;
    bottom: 9px;
    left: calc(61% + 12px);
    color: var(--red);
    font-size: .63rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

@keyframes draw-line {
    to { transform: scaleX(1); }
}

@keyframes signal {
    50% { box-shadow: 0 0 0 9px rgba(237, 59, 47, .15); }
}

.hero-bottom {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-bottom p {
    width: min(460px, 44vw);
    margin: 0;
    font-size: clamp(.9rem, 1.25vw, 1.16rem);
    letter-spacing: -.02em;
}

/* Statement / showreel */

.statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(260px, .9fr);
    gap: 8vw;
    padding-top: clamp(70px, 8vw, 130px);
}

.statement-lead {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 5vw, 6.2rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .98;
}

.statement-side {
    align-self: end;
}

.statement-side > p {
    max-width: 410px;
    margin-bottom: 50px;
    color: #343431;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    letter-spacing: -.025em;
}

.showreel-section {
    padding-inline: 2vw;
    background: var(--paper);
}

.showreel-trigger {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.6;
    overflow: hidden;
    padding: 0;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.showreel-trigger > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.04);
    transition: transform 1s var(--ease), filter .6s ease;
}

.showreel-trigger:hover > img {
    filter: grayscale(0);
    transform: scale(1.025);
}

.showreel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), transparent 65%);
}

.showreel-trigger::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .8);
    content: "";
    transform: scaleX(.4);
    transform-origin: left;
    transition: transform .8s var(--ease);
}

.showreel-trigger:hover::after {
    transform: scaleX(1);
}

.showreel-label {
    position: absolute;
    z-index: 2;
    top: 8%;
    left: 5%;
}

.showreel-label small {
    display: block;
    margin-bottom: 18px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.showreel-label strong {
    display: block;
    max-width: 700px;
    font-size: clamp(3.2rem, 7.8vw, 9rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .85;
}

.showreel-play {
    position: absolute;
    z-index: 3;
    right: 5%;
    bottom: 7%;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .75rem;
    font-weight: 700;
}

.showreel-play i {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
}

.showreel-play i::after {
    position: absolute;
    margin: 19px 0 0 21px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--white);
    content: "";
}

/* Work cards */

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(60px, 8vw, 140px) 2.2vw;
    padding-top: clamp(70px, 8vw, 120px);
}

.work-grid-home .work-card:nth-child(4n + 1) {
    grid-column: span 2;
}

.work-grid-home .work-card:nth-child(4n + 1) .work-media {
    aspect-ratio: 16 / 7.7;
}

.work-card.is-filtered {
    display: none;
}

.work-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    overflow: hidden;
    padding: 0;
    background: #d8d8d2;
    cursor: pointer;
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition:
        filter .6s ease,
        transform .85s var(--ease);
}

.work-media:hover img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.work-scanline {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .72);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .65s var(--ease);
}

.work-media:hover .work-scanline {
    transform: scaleX(1);
    transform-origin: left;
}

.play-mark {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--white);
    color: var(--ink);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease;
}

.work-media:hover .play-mark {
    opacity: 1;
    transform: none;
}

.play-mark i {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--red);
}

.play-mark b {
    font-size: .66rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.work-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--ink);
}

.work-meta p,
.work-meta h2 {
    margin: 0;
}

.work-meta p {
    margin-bottom: 3px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.work-meta h2 {
    font-size: clamp(1.25rem, 2vw, 2.3rem);
    font-weight: 500;
    letter-spacing: -.04em;
}

.work-facts {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    color: var(--muted);
    font-size: .66rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.section-outro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: clamp(90px, 10vw, 160px);
    padding-top: 18px;
    border-top: 1px solid var(--ink);
}

.section-outro > p {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 2.1rem);
    letter-spacing: -.04em;
    line-height: 1.08;
}

/* Idea line */

.idea-intro {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 10vw;
    padding-top: clamp(70px, 8vw, 130px);
}

.idea-intro h2 {
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 8rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .88;
}

.idea-intro p {
    max-width: 420px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.process {
    position: relative;
    margin-top: clamp(90px, 10vw, 170px);
    padding-top: 25px;
}

.process-track {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .28);
}

.process-track span {
    display: block;
    width: calc(var(--process, 0) * 25%);
    height: 1px;
    background: var(--red);
    transition: width .55s var(--ease);
}

.process-track i {
    position: absolute;
    top: 50%;
    left: calc(var(--process, 0) * 25%);
    width: 10px;
    height: 10px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
    transition: left .55s var(--ease);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.process-step {
    position: relative;
    min-height: 160px;
    padding: 8px 28px 0 0;
    border-right: 1px solid var(--line-dark);
    background: transparent;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    text-align: left;
    transition: color .3s ease;
}

.process-step:last-child {
    border-right: 0;
    padding-left: 28px;
}

.process-step:not(:first-child):not(:last-child) {
    padding-left: 28px;
}

.process-step::before {
    position: absolute;
    top: -30px;
    left: -1px;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, .45);
    content: "";
}

.process-step.is-active {
    color: var(--white);
}

.process-step span,
.process-step strong,
.process-step small {
    display: block;
}

.process-step span {
    margin-bottom: 35px;
    color: var(--red);
    font-size: .62rem;
}

.process-step strong {
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 2vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -.045em;
}

.process-step small {
    max-width: 180px;
    font-size: .72rem;
    line-height: 1.45;
}

/* Services */

.services-head {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 10vw;
    padding-block: clamp(70px, 8vw, 130px);
}

.services-head h2 {
    margin: 0;
    font-size: clamp(3rem, 7.1vw, 8rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .88;
}

.services-head p {
    max-width: 420px;
    margin-bottom: 0;
    color: #464642;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
}

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

.service-row {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(240px, .8fr) 1.25fr 30px;
    align-items: center;
    gap: 30px;
    min-height: 132px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.service-row::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--ink);
    content: "";
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s var(--ease);
}

.service-row:hover {
    color: var(--white);
}

.service-row:hover::before {
    transform: scaleY(1);
}

.service-row > span {
    color: var(--red);
    font-size: .64rem;
}

.service-row h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.5vw, 3rem);
    font-weight: 500;
    letter-spacing: -.05em;
}

.service-row p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    transition: color .3s ease;
}

.service-row:hover p {
    color: rgba(255, 255, 255, .62);
}

.service-row > i {
    color: var(--red);
    font-style: normal;
    font-size: 1.2rem;
}

/* Studio / clients */

.studio {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    min-height: 720px;
    background: var(--ink);
    color: var(--white);
}

.studio-image {
    position: relative;
    overflow: hidden;
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.studio-image span {
    position: absolute;
    top: 52%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .75);
}

.studio-image span::after {
    position: absolute;
    top: 50%;
    right: 12%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    content: "";
    transform: translateY(-50%);
}

.studio-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 100px);
    border-left: 1px solid var(--line-dark);
}

.studio-copy h2 {
    margin: 70px 0 40px;
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .83;
}

.studio-copy > p:not(.kicker) {
    max-width: 360px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, .65);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(70px, 8vw, 120px);
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--line);
}

.client-cell {
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .3s ease, color .3s ease;
}

.client-cell:hover {
    background: var(--ink);
    color: var(--white);
}

.client-cell span {
    color: var(--red);
    font-size: .58rem;
}

.client-cell strong {
    font-size: clamp(1.15rem, 1.8vw, 2rem);
    font-weight: 500;
    letter-spacing: -.04em;
}

/* Page hero */

.page-hero {
    position: relative;
    min-height: min(860px, 92svh);
    padding-top: calc(var(--header-h) + 55px);
    overflow: hidden;
}

.page-hero .shell {
    position: relative;
    height: calc(min(860px, 92svh) - var(--header-h) - 55px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-meta {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--ink);
    color: var(--muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.page-hero-meta p {
    margin: 0;
}

.page-hero-meta span {
    color: var(--red);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(5rem, 11vw, 13rem);
    font-weight: 550;
    letter-spacing: -.085em;
    line-height: .76;
}

.page-hero-line {
    position: absolute;
    top: 52%;
    right: -4vw;
    left: -4vw;
    height: 1px;
    background: rgba(9, 9, 9, .55);
}

.page-hero-line i {
    position: absolute;
    top: 50%;
    left: 68%;
    width: 12px;
    height: 12px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
}

/* Work archive */

.archive-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 15px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--line);
}

.archive-tools > p {
    margin: 0;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.filters {
    display: flex;
    align-items: center;
    gap: 26px;
}

.filters button {
    position: relative;
    padding: 5px 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: .72rem;
    font-weight: 700;
}

.filters button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.filters button:hover,
.filters button.is-active {
    color: var(--ink);
}

.filters button.is-active::after {
    transform: scaleX(1);
}

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

.work-grid-archive .work-card:nth-child(5n + 1) {
    grid-column: span 2;
}

.work-grid-archive .work-card:nth-child(5n + 1) .work-media {
    aspect-ratio: 16 / 7.5;
}

.filter-empty {
    padding: 100px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 1.5rem;
}

.archive-cta {
    padding-block: clamp(90px, 11vw, 180px);
}

.archive-cta .shell {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--white);
}

.archive-cta p {
    margin: 0;
    font-size: clamp(3rem, 7vw, 8rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .88;
}

/* About */

.about-copy {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 10vw;
    padding-top: clamp(70px, 8vw, 130px);
}

.about-big {
    margin: 0;
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .92;
}

.about-columns {
    display: grid;
    gap: 28px;
    align-content: end;
    color: #3f3f3b;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.about-columns p {
    margin: 0;
}

.about-visual {
    position: relative;
    min-height: 86vh;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.about-visual img {
    width: 100%;
    height: 86vh;
    object-fit: cover;
    filter: grayscale(1) contrast(1.06);
}

.about-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7), transparent 62%);
    content: "";
}

.about-visual > p {
    position: absolute;
    z-index: 2;
    left: 4vw;
    bottom: 6vw;
    margin: 0;
    font-size: clamp(2.5rem, 5.8vw, 7rem);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .92;
}

.visual-rule {
    position: absolute;
    z-index: 3;
    top: 51%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .78);
}

.visual-rule span {
    position: absolute;
    top: 50%;
    left: 39%;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
}

.principle-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: clamp(70px, 8vw, 130px);
}

.principle-list article {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 20px 4vw 20px 0;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--line-dark);
}

.principle-list article:not(:first-child) {
    padding-left: 4vw;
}

.principle-list article:last-child {
    border-right: 0;
}

.principle-list span {
    color: var(--red);
    font-size: .64rem;
}

.principle-list h2 {
    margin: auto 0 38px;
    font-size: clamp(2.2rem, 4vw, 5rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .9;
}

.principle-list p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .86rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 2vw;
    padding-top: clamp(70px, 8vw, 120px);
}

.team-photo {
    position: relative;
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    background: #ddd;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .5s ease, transform .8s var(--ease);
}

.team-card:hover img {
    filter: grayscale(0);
    transform: scale(1.025);
}

.team-photo span {
    position: absolute;
    top: 57%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .75);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .55s var(--ease);
}

.team-card:hover .team-photo span {
    transform: scaleX(1);
    transform-origin: left;
}

.team-card h2 {
    margin: 15px 0 3px;
    padding-top: 14px;
    border-top: 1px solid var(--ink);
    font-size: clamp(1.35rem, 2vw, 2.4rem);
    font-weight: 500;
    letter-spacing: -.05em;
}

.team-card > p {
    max-width: 290px;
    margin: 0;
    color: var(--muted);
    font-size: .7rem;
}

.home-base {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    min-height: 680px;
    background: var(--ink);
    color: var(--white);
}

.home-base-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7vw 4vw;
    border-right: 1px solid var(--line-dark);
}

.home-base-copy h2 {
    margin: 70px 0 35px;
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .84;
}

.home-base-copy > p:not(.kicker) {
    max-width: 300px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, .6);
}

.home-base > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

/* Contact */

.contact-hero {
    position: relative;
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 55px);
    overflow: hidden;
}

.contact-hero .shell {
    position: relative;
    height: calc(100svh - var(--header-h) - 55px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-meta-dark {
    border-top-color: var(--white);
    color: rgba(255, 255, 255, .5);
}

.contact-hero h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: clamp(5rem, 11vw, 12.8rem);
    font-weight: 500;
    letter-spacing: -.085em;
    line-height: .76;
}

.contact-signal {
    position: absolute;
    z-index: 1;
    top: 52%;
    right: -4vw;
    left: -4vw;
    height: 1px;
    background: rgba(255, 255, 255, .55);
}

.contact-signal span {
    display: block;
    width: 72%;
    height: 1px;
    background: var(--red);
}

.contact-signal i {
    position: absolute;
    top: 50%;
    left: 72%;
    width: 12px;
    height: 12px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
}

.contact-direct {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line-dark);
    font-size: .7rem;
}

.contact-direct p {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
}

.contact-direct a {
    font-size: clamp(1.2rem, 2vw, 2rem);
    letter-spacing: -.04em;
}

.contact-layout {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 9vw;
}

.contact-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.contact-intro h2 {
    margin: 55px 0 35px;
    font-size: clamp(2.5rem, 4.4vw, 5.2rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .95;
}

.contact-intro > p:last-child {
    max-width: 370px;
    color: var(--muted);
    font-size: .8rem;
}

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

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 3px solid;
    font-size: .84rem;
}

.form-alert-success {
    border-color: #239d5c;
    background: rgba(35, 157, 92, .08);
}

.form-alert-error {
    border-color: var(--red);
    background: rgba(237, 59, 47, .08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--line);
}

.contact-form label {
    display: block;
    padding: 25px 22px 28px 0;
}

.form-row label + label {
    padding-left: 28px;
    border-left: 1px solid var(--line);
}

.contact-form label > span {
    display: block;
    margin-bottom: 35px;
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 2rem);
    letter-spacing: -.04em;
}

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

.contact-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position:
        calc(100% - 10px) 55%,
        calc(100% - 5px) 55%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.message-field {
    border-bottom: 1px solid var(--line);
}

.contact-form textarea {
    resize: vertical;
    min-height: 190px;
    line-height: 1.25;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
}

.form-submit p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: .65rem;
}

.form-submit button {
    min-width: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font-size: .76rem;
    font-weight: 700;
    transition: background .3s ease;
}

.form-submit button:hover {
    background: var(--red);
}

.visit-us {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    min-height: 620px;
    background: var(--soft);
}

.visit-map {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--ink);
}

.map-lines {
    position: absolute;
    inset: 0;
    opacity: .45;
    background:
        repeating-linear-gradient(to bottom, transparent 0, transparent 69px, rgba(9, 9, 9, .25) 70px),
        repeating-linear-gradient(to right, transparent 0, transparent 139px, rgba(9, 9, 9, .12) 140px);
}

.visit-map::after {
    position: absolute;
    top: 58%;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--red);
    content: "";
}

.map-node {
    position: absolute;
    z-index: 2;
    top: 58%;
    left: 62%;
    width: 17px;
    height: 17px;
    border: 3px solid var(--soft);
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
}

.visit-map > p {
    position: absolute;
    z-index: 2;
    top: calc(58% + 20px);
    left: calc(62% + 15px);
    margin: 0;
    font-size: clamp(3rem, 7vw, 8rem);
    font-weight: 600;
    letter-spacing: -.08em;
}

.visit-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vw;
}

.visit-copy h2 {
    margin: 70px 0 35px;
    font-size: clamp(2.7rem, 4.5vw, 5.3rem);
    font-weight: 500;
    letter-spacing: -.07em;
}

.visit-copy > p:not(.kicker) {
    margin-bottom: 45px;
    color: var(--muted);
}

/* Info / 404 */

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--line);
}

.info-grid article {
    min-height: 390px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.info-grid .kicker {
    margin-bottom: 70px;
}

.info-large-link {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.4rem, 2.3vw, 2.6rem);
    letter-spacing: -.05em;
}

.info-large-link span,
.info-row-link span {
    color: var(--red);
}

.info-address {
    margin-bottom: 45px;
    font-size: clamp(1.7rem, 3vw, 3.5rem);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.info-row-link {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: .84rem;
    font-weight: 650;
}

.not-found {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}

.not-found-lines {
    position: absolute;
    inset: 0;
    opacity: .4;
    background: repeating-linear-gradient(to bottom, transparent 0, transparent 12.5vh, rgba(255, 255, 255, .18) calc(12.5vh + 1px));
}

.not-found .shell {
    position: relative;
    z-index: 1;
}

.not-found .shell > p {
    color: var(--red);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.not-found h1 {
    margin: 70px 0;
    font-size: clamp(5rem, 12vw, 14rem);
    font-weight: 500;
    letter-spacing: -.085em;
    line-height: .76;
}

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: clamp(100px, 12vw, 200px);
    background: var(--ink);
    color: var(--white);
}

.footer-signal {
    position: absolute;
    top: 20%;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--line-dark);
}

.footer-signal-line {
    display: block;
    width: 48%;
    height: 1px;
    background: var(--red);
}

.footer-signal-node {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 12px;
    height: 12px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
}

.footer-head {
    position: relative;
    z-index: 1;
}

.footer-title {
    width: 100%;
    align-items: end;
    margin-top: 90px;
    padding-bottom: 35px;
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 500;
    letter-spacing: -.085em;
    line-height: .77;
}

.footer-title span {
    align-self: flex-end;
    padding-bottom: 20px;
    font-size: clamp(2rem, 4vw, 5rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr .65fr .65fr;
    gap: 4vw;
    padding-block: clamp(60px, 8vw, 120px);
    border-top: 1px solid var(--line-dark);
}

.footer-label {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .4);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-grid a {
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    line-height: 1.8;
}

.footer-grid a:hover {
    color: var(--red);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 20px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 35px;
    padding-block: 20px;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, .4);
    font-size: .62rem;
}

.footer-bottom p {
    margin: 0;
}

.back-top span {
    margin-left: 8px;
    color: var(--red);
}

/* Video dialog */

.video-modal {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--ink);
    color: var(--white);
}

.video-modal::backdrop {
    background: rgba(0, 0, 0, .92);
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-close span {
    color: var(--red);
    font-size: 1.4rem;
    font-weight: 400;
}

.video-frame {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 6vw;
}

.video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

/* Tablet */

@media (max-width: 1024px) {
    :root {
        --shell: 92vw;
        --header-h: 72px;
    }

    .hero h1 {
        font-size: clamp(4.8rem, 13.8vw, 9rem);
    }

    .statement-grid,
    .idea-intro,
    .services-head,
    .about-copy,
    .contact-layout {
        gap: 6vw;
    }

    .studio {
        grid-template-columns: 1.15fr .85fr;
        min-height: 620px;
    }

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

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

    .contact-layout {
        grid-template-columns: .8fr 1.2fr;
    }
}

/* Mobile */

@media (max-width: 760px) {
    :root {
        --shell: 90vw;
        --header-h: 66px;
    }

    body {
        font-size: 15px;
    }

    .section-pad {
        padding-block: 85px;
    }

    .desktop-nav {
        display: none;
    }

    .header-shell {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-topline {
        grid-template-columns: 1fr 1fr;
    }

    .hero-topline p:nth-child(2) {
        display: none;
    }

    .hero-copy {
        min-height: calc(100svh - 190px);
        padding-bottom: 120px;
    }

    .hero h1 {
        font-size: clamp(4.2rem, 21vw, 7.5rem);
        line-height: .77;
    }

    .hero-word:nth-child(2) {
        padding-left: 7%;
    }

    .hero-word:nth-child(3) {
        padding-left: 0;
    }

    .hero-rail {
        top: 46%;
    }

    .hero-rail-fill {
        width: 69%;
    }

    .hero-rail i {
        left: 69%;
    }

    .hero-rail b {
        left: calc(69% + 10px);
    }

    .hero-bottom {
        bottom: 20px;
    }

    .hero-bottom p {
        width: 56%;
        font-size: .78rem;
    }

    .arrow-link {
        gap: 18px;
    }

    .statement-grid,
    .idea-intro,
    .services-head,
    .about-copy,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .statement-grid {
        gap: 55px;
    }

    .statement-lead {
        font-size: clamp(2.25rem, 10.4vw, 4rem);
    }

    .showreel-section {
        padding-inline: 0;
    }

    .showreel-trigger {
        aspect-ratio: 4 / 5;
    }

    .showreel-trigger > img {
        object-position: center;
    }

    .showreel-label strong {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }

    .showreel-play i {
        width: 44px;
        height: 44px;
    }

    .showreel-play i::after {
        margin: 15px 0 0 18px;
    }

    .work-grid,
    .work-grid-archive {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .work-grid-home .work-card:nth-child(4n + 1),
    .work-grid-archive .work-card:nth-child(5n + 1) {
        grid-column: auto;
    }

    .work-grid-home .work-card:nth-child(4n + 1) .work-media,
    .work-grid-archive .work-card:nth-child(5n + 1) .work-media,
    .work-media {
        aspect-ratio: 4 / 3;
    }

    .work-media img {
        filter: grayscale(.8);
    }

    .play-mark {
        opacity: 1;
        transform: none;
    }

    .work-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .work-facts {
        justify-content: space-between;
    }

    .section-outro,
    .archive-cta .shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 45px;
    }

    .idea-intro {
        gap: 45px;
    }

    .idea-intro h2,
    .services-head h2 {
        font-size: clamp(3.2rem, 15vw, 5.8rem);
    }

    .process {
        padding: 0 0 0 28px;
    }

    .process-track {
        top: 0;
        right: auto;
        bottom: 0;
        left: 0;
        width: 1px;
        height: auto;
    }

    .process-track span {
        width: 1px;
        height: calc(var(--process, 0) * 25%);
        transition: height .55s var(--ease);
    }

    .process-track i {
        top: calc(var(--process, 0) * 25%);
        left: 50%;
        transition: top .55s var(--ease);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:not(:first-child):not(:last-child),
    .process-step:last-child {
        min-height: 130px;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .process-step::before {
        top: -1px;
        left: -33px;
        width: 10px;
        height: 1px;
    }

    .process-step span {
        margin-bottom: 18px;
    }

    .service-row {
        grid-template-columns: 38px 1fr 22px;
        gap: 12px;
        min-height: 118px;
        padding-block: 20px;
    }

    .service-row p {
        grid-column: 2 / 4;
    }

    .studio,
    .home-base,
    .visit-us {
        grid-template-columns: 1fr;
    }

    .studio-image,
    .home-base > img,
    .visit-map {
        min-height: 55vh;
    }

    .studio-copy,
    .home-base-copy,
    .visit-copy {
        min-height: 520px;
        padding: 60px 5vw;
        border: 0;
        border-top: 1px solid var(--line-dark);
    }

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

    .client-cell {
        min-height: 130px;
    }

    .page-hero,
    .page-hero .shell {
        min-height: 88svh;
        height: 88svh;
    }

    .page-hero h1,
    .contact-hero h1 {
        font-size: clamp(4.6rem, 20vw, 7.5rem);
        line-height: .78;
    }

    .archive-tools {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .filters {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .about-visual,
    .about-visual img {
        min-height: 74vh;
        height: 74vh;
    }

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

    .principle-list article,
    .principle-list article:not(:first-child) {
        min-height: 360px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .contact-hero {
        min-height: 100svh;
    }

    .contact-hero .shell {
        height: calc(100svh - var(--header-h) - 55px);
    }

    .contact-layout {
        gap: 70px;
    }

    .contact-intro {
        position: static;
    }

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

    .form-row label + label {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .contact-form label {
        padding-right: 0;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit button {
        width: 100%;
    }

    .visit-map {
        border: 0;
        border-bottom: 1px solid var(--ink);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-grid article {
        min-height: 330px;
        padding: 24px 20px;
    }

    .footer-signal {
        top: 17%;
    }

    .footer-title {
        margin-top: 80px;
        font-size: clamp(4rem, 19vw, 7.2rem);
    }

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

    .footer-grid > div:first-child {
        grid-column: span 2;
    }

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

    .back-top {
        display: none;
    }

    .video-frame {
        padding: 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
