﻿/*
Theme Name: EDV Pro Base
Author: ED Visualization
Description: Clean Elementor Pro base theme for ED Visualization template kit.
Version: 1.1.0
Text Domain: edv-pro-base
*/
:root {
    --rms-bg: #f5f1e8;
    --rms-ink: #11120f;
    --rms-muted: #666358;
    --rms-soft: #d8d1c4;
    --rms-line: rgba(17, 18, 15, 0.14);
    --rms-dark: #080908;
    --rms-dark-soft: #171915;
    --rms-paper: #fffdf7;
    --rms-moss: #506050;
    --rms-clay: #9a7258;
    --rms-light: #f8f5ed;
    --color-black: var(--rms-dark);
    --color-charcoal: var(--rms-dark-soft);
    --color-white: var(--rms-light);
    --color-muted: var(--rms-muted);
    --color-gold: var(--rms-clay);
    --color-green: var(--rms-moss);
    --container-width: 1180px;
    --section-spacing: clamp(88px, 12vw, 160px);
    --header-height: 64px;
    --hero-logo-width: clamp(180px, 28vw, 430px);
    --hero-video-position: center center;
    --hero-video-position-mobile: 50% 50%;
    --font-primary: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: geometricPrecision;
}

body.is-menu-open {
    overflow: hidden;
}

body.is-preloading {
    overflow: hidden;
}

body.is-preloading .site-header__logo {
    opacity: 0;
}

@keyframes preloader-fallback {
    0%,
    76% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes preloader-mark-fallback {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.97);
    }

    34%,
    72% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        filter: blur(8px);
        transform: scale(1.025);
    }
}

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

img,
video {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

a,
button,
[role="button"],
input,
select,
textarea {
    -webkit-touch-callout: none;
}

a:focus,
button:focus {
    outline: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 1px solid rgba(183, 155, 97, 0.78);
    outline-offset: 4px;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}

.section-reveal {
    will-change: transform, opacity, clip-path;
}

.section-reveal h1,
.section-reveal h2,
.section-reveal p,
.section-reveal article,
.section-reveal span,
.section-reveal img {
    will-change: transform, opacity, filter;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--color-black);
    color: var(--color-white);
    pointer-events: none;
    will-change: opacity;
    animation: preloader-fallback 2.35s cubic-bezier(0.72, 0, 0.22, 1) forwards;
}

.site-preloader.is-animated,
.site-preloader.is-animated .site-preloader__mark {
    animation: none;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.skip-work-preloader .site-preloader {
    display: none;
}

.work-handoff:not(.work-transition-ready) body::before,
.skip-work-preloader:not(.work-transition-ready) body::before {
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    display: block;
    content: "";
    background:
        linear-gradient(rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.62)),
        var(--wt-handoff-image, none) center / cover no-repeat,
        #050505;
    pointer-events: none;
}

.site-preloader__mark {
    width: clamp(92px, 11vw, 164px);
    height: auto;
    opacity: 0;
    filter:
        grayscale(1)
        saturate(0)
        contrast(1.04)
        brightness(0.9)
        blur(10px);
    mix-blend-mode: screen;
    transform: scale(0.97);
    animation: preloader-mark-fallback 1.95s cubic-bezier(0.72, 0, 0.22, 1) forwards;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: transparent;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    border-color: transparent;
    background: rgba(5, 5, 5, 0.16);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    position: relative;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-header__logo {
    font-size: clamp(1.8rem, 2.6vw, 2.45rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    transition: opacity 0.45s ease;
}

.site-header__logo img {
    width: clamp(24px, 2vw, 34px);
    height: auto;
}

.site-header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__menu a {
    color: rgba(247, 244, 236, 0.72);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-header__menu a:hover {
    color: var(--color-white);
}

.site-header__nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    align-items: stretch;
    min-height: 100svh;
    padding: calc(var(--header-height) + 48px) 0 52px;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px) saturate(50%);
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: opacity 0.2s ease, clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
}

.site-header__nav::before {
    display: none;
}

.site-header__nav::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, transparent 20%);
    content: "";
    pointer-events: none;
}

.site-header__nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    width: min(100% - 56px, 1100px);
    margin-inline: auto;
    padding-top: 12px;
}

.site-header__nav-menu {
    counter-reset: menu-item;
}

.site-header__nav-label {
    margin: 0 0 32px;
    color: rgba(247, 244, 236, 0.22);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-header__nav .site-header__menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.site-header__nav .site-header__menu li {
    counter-increment: menu-item;
    border-bottom: 1px solid rgba(247, 244, 236, 0.06);
    overflow: hidden;
}

.site-header__nav .site-header__menu li:first-child {
    border-top: 1px solid rgba(247, 244, 236, 0.06);
}

.site-header__nav .site-header__menu a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: clamp(12px, 1.4vw, 18px) 0;
    color: rgba(247, 244, 236, 0.45);
    font-size: clamp(1.4rem, 2.2vw, 2.4rem);
    font-weight: 200;
    letter-spacing: -0.01em;
    line-height: 1.0;
    text-transform: none;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__nav .site-header__menu a::before {
    display: none;
}

.site-header__nav .site-header__menu a::after {
    display: none;
}

.site-header__nav .site-header__menu a:hover {
    color: rgba(247, 244, 236, 0.92);
    transform: translateX(8px);
}

.site-header__nav .site-header__menu a:hover::after {
    display: none;
}

.site-header__nav-aside {
    max-width: 240px;
    padding: 6px 0 4px 28px;
    border-left: 1px solid rgba(247, 244, 236, 0.07);
    color: rgba(247, 244, 236, 0.38);
    font-size: 0.8rem;
    line-height: 1.75;
}

.site-header__nav-kicker {
    margin-bottom: 18px;
    color: rgba(247, 244, 236, 0.25);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-header__nav-aside p {
    color: rgba(247, 244, 236, 0.35);
}

.site-header__nav-aside a {
    display: inline-flex;
    margin-top: 20px;
    color: rgba(183, 155, 97, 0.75);
    font-size: 0.78rem;
    font-weight: 400;
    transition: color 0.25s ease;
}

.site-header__nav-aside a:hover {
    color: var(--color-gold);
}

.site-header__nav-meta {
    display: grid;
    gap: 6px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(247, 244, 236, 0.07);
    color: rgba(247, 244, 236, 0.22);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-header__toggle {
    display: none;
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(247, 244, 236, 0.6);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease;
}

.site-header__toggle:hover {
    color: var(--color-white);
}

.site-header__toggle-text {
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.site-header__toggle-text--close {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(6px);
}

.site-header__toggle.is-active .site-header__toggle-text--open {
    opacity: 0;
    transform: translateY(-6px);
}

.site-header__toggle.is-active .site-header__toggle-text--close {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: calc(var(--header-height) + 80px) 0 96px;
    isolation: isolate;
}

.hero--video {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 0;
    background: var(--color-black);
    z-index: 1;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-video-position);
}

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.08)),
        linear-gradient(90deg, rgba(5, 5, 5, 0.08), transparent 30%, rgba(5, 5, 5, 0.03));
}

.hero__brand-mark {
    display: block;
    width: var(--hero-logo-width);
    height: auto;
    color: var(--color-white);
    font-size: clamp(8rem, 20vw, 21rem);
    font-weight: 300;
    line-height: 0.82;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 18px 60px rgba(5, 5, 5, 0.15);
}

.hero__brand-mark img {
    display: block;
    width: 100%;
    height: auto;
}

.hero--video > .elementor-background-video-container,
.hero--video > .elementor-background-overlay {
    inset: 0;
}

.hero--video > .elementor-background-video-container {
    z-index: 0;
}

.hero--video > .elementor-background-overlay {
    z-index: 1;
}

.hero--video > .e-con-inner,
.hero--video > .elementor-widget {
    position: relative;
    z-index: 2;
}

.hero__copyright {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: max-content;
    max-width: calc(100% - 32px);
    margin: 0;
    color: rgba(5, 5, 5, 0.72);
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: center;
    transform: translateX(-50%);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.92)),
        url("../images/placeholder.jpg") center / cover;
    transform: scale(1.04);
}

.hero__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 45%;
    background: linear-gradient(180deg, transparent, var(--color-black));
}

.hero__content {
    max-width: 980px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--color-gold);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    line-height: 1.05;
    font-weight: 500;
}

.hero__title {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.hero__text {
    max-width: 620px;
    color: rgba(247, 244, 236, 0.76);
    font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(247, 244, 236, 0.16);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button--primary {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-black);
}

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

.button--ghost:hover {
    border-color: rgba(247, 244, 236, 0.45);
}

.button--outline {
    border-color: rgba(247, 244, 236, 0.3);
    color: var(--color-white);
    background: transparent;
}

.button--outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--color-gold);
    font-weight: 700;
}

.section {
    padding: var(--section-spacing) 0;
}

.section__header {
    max-width: 760px;
    margin-bottom: 56px;
}

.section__header h2,
.split-section h2,
.vr-preview h2,
.contact-cta h2,
.page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 4vw, 3.8rem);
}

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

.project-card__image {
    aspect-ratio: 4 / 5;
    margin-bottom: 18px;
    background:
        linear-gradient(145deg, rgba(183, 155, 97, 0.2), rgba(111, 128, 105, 0.14)),
        var(--color-charcoal);
}

.project-card__meta {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 0.82rem;
}

.project-card h3 {
    font-size: 1.35rem;
}

.split-section {
    border-top: 1px solid rgba(247, 244, 236, 0.1);
    border-bottom: 1px solid rgba(247, 244, 236, 0.1);
    background: var(--color-charcoal);
}

.split-section__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(40px, 8vw, 110px);
    align-items: start;
}

.split-section p,
.vr-preview p {
    color: rgba(247, 244, 236, 0.72);
}

.vr-preview {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.25), var(--color-black)),
        var(--color-green);
}

.vr-preview__inner,
.contact-cta__inner {
    max-width: 790px;
}

.contact-cta {
    text-align: center;
}

.contact-cta__inner {
    margin-inline: auto;
}

.contact-cta .button {
    margin-top: 28px;
}

.about-page {
    background: var(--color-black);
}

.about-hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: calc(var(--header-height) + 56px) 0 clamp(56px, 8vw, 92px);
    isolation: isolate;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    margin: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.2) 54%, rgba(5, 5, 5, 0.74)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.8)),
        url("../images/about-bg.jpg") center / cover;
    filter: saturate(0.82) contrast(1.08);
}

.about-hero::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background: linear-gradient(180deg, transparent, var(--color-black));
    content: "";
}

.about-hero__inner {
    max-width: 760px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    margin-bottom: 0;
    font-size: clamp(2.8rem, 5.6vw, 5.8rem);
    line-height: 0.98;
}

.about-overview {
    padding: 0 0 clamp(94px, 12vw, 170px);
    position: relative;
    z-index: 2;
}

.about-overview__inner {
    position: relative;
    min-height: clamp(640px, 68vw, 820px);
    display: grid;
    align-items: center;
    overflow: hidden;
}

.about-overview__copy {
    position: relative;
    z-index: 2;
    width: min(690px, calc(100% - 32px));
    margin-left: clamp(18px, 5vw, 78px);
    padding: clamp(42px, 7vw, 92px) 0;
    text-shadow: 0 22px 54px rgba(5, 5, 5, 0.68);
}

.about-overview__copy p {
    max-width: 560px;
    color: rgba(247, 244, 236, 0.74);
    font-size: clamp(1rem, 1.28vw, 1.14rem);
}

.about-overview__copy p:first-child {
    color: var(--color-white);
    font-size: clamp(1.58rem, 2.6vw, 3rem);
    line-height: 1.06;
}

.about-overview__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--color-charcoal);
}

.about-overview__media::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.24) 48%, rgba(5, 5, 5, 0.76)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.26) 58%, rgba(5, 5, 5, 0.9));
    content: "";
    pointer-events: none;
}

.about-overview__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05);
}

.about-approach {
    position: relative;
    padding: clamp(88px, 12vw, 162px) 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(18, 20, 18, 0.92) 48%, rgba(5, 5, 5, 0.98));
    overflow: hidden;
}

.about-approach::before {
    position: absolute;
    top: 8%;
    right: -14%;
    width: min(46vw, 620px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(183, 155, 97, 0.1), transparent 68%);
    content: "";
    opacity: 0.7;
    pointer-events: none;
}

.about-approach__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(42px, 8vw, 120px);
    align-items: start;
}

.about-approach__heading {
    max-width: 520px;
}

.about-approach__heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.02;
}

.about-approach__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 72px) clamp(34px, 5vw, 76px);
}

.about-approach__grid article {
    position: relative;
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding-right: clamp(8px, 2vw, 24px);
    transition: transform 0.4s ease;
}

.about-approach__grid article:nth-child(even) {
    transform: translateY(clamp(34px, 5vw, 68px));
}

.about-approach__grid article::before {
    position: absolute;
    inset: -20px auto auto -18px;
    width: 48px;
    height: 48px;
    background: radial-gradient(circle, rgba(183, 155, 97, 0.14), transparent 68%);
    content: "";
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.about-approach__grid article:hover {
    transform: translateY(-6px);
}

.about-approach__grid article:nth-child(even):hover {
    transform: translateY(calc(clamp(34px, 5vw, 68px) - 6px));
}

.about-approach__grid article:hover::before {
    opacity: 1;
    transform: scale(1);
}

.about-approach__grid span {
    color: var(--color-gold);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
}

.about-approach__grid h3 {
    margin-bottom: 0;
    color: rgba(247, 244, 236, 0.94);
    font-size: clamp(1.28rem, 1.9vw, 1.8rem);
    transition: color 0.32s ease;
}

.about-approach__grid article:hover h3 {
    color: var(--color-white);
}

.about-approach__grid p {
    margin-bottom: 0;
    color: rgba(247, 244, 236, 0.66);
    font-size: 0.98rem;
    line-height: 1.74;
}

.about-visual-story {
    padding: clamp(92px, 12vw, 170px) 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.88) 48%, rgba(18, 20, 18, 0.62));
    overflow: hidden;
}

.about-visual-story__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
    gap: clamp(42px, 8vw, 112px);
    align-items: center;
}

.about-visual-story__copy {
    max-width: 420px;
}

.about-visual-story__copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.8vw, 3.9rem);
    line-height: 1.02;
}

.about-visual-story__copy p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(247, 244, 236, 0.7);
}

.about-visual-story__copy .button {
    margin-top: 30px;
}

.about-visual-story__media {
    position: relative;
    min-height: clamp(520px, 56vw, 720px);
}

.about-visual-story__frame {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: var(--color-charcoal);
}

.about-visual-story__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.06);
    transform: scale(1.04);
    will-change: transform;
}

.about-visual-story__frame--large {
    inset: 0 13% 12% 0;
}

.about-visual-story__frame--small {
    right: 0;
    bottom: 0;
    width: min(44%, 360px);
    aspect-ratio: 4 / 5;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.about-people {
    padding: clamp(86px, 12vw, 166px) 0 clamp(76px, 10vw, 140px);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(18, 20, 18, 0.54) 46%, rgba(5, 5, 5, 0.98)),
        var(--color-black);
}

.about-people__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: clamp(44px, 8vw, 118px);
    align-items: start;
}

.about-people__heading {
    display: grid;
    max-width: 410px;
    text-align: left;
}

.about-people__heading .eyebrow {
    margin-bottom: 20px;
}

.about-people__heading h2 {
    max-width: 410px;
    margin-bottom: 28px;
    font-size: clamp(2rem, 3.9vw, 3.8rem);
    line-height: 1.02;
}

.about-people__heading p:not(.eyebrow) {
    max-width: 390px;
    color: rgba(247, 244, 236, 0.72);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.about-roster {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 30px) clamp(24px, 4vw, 58px);
    counter-reset: team-member;
}

.about-roster article {
    position: relative;
    min-height: 126px;
    display: grid;
    align-content: end;
    padding: 18px 0 18px 42px;
    counter-increment: team-member;
    overflow: hidden;
}

.about-roster article::before {
    position: absolute;
    left: 0;
    bottom: 23px;
    color: rgba(183, 155, 97, 0.78);
    content: counter(team-member, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    transition: transform 0.32s ease, color 0.32s ease;
}

.about-roster article:hover::before {
    color: var(--color-gold);
    transform: translateY(-4px);
}

.about-roster h3 {
    margin-bottom: 0;
    color: rgba(247, 244, 236, 0.92);
    font-size: clamp(1.16rem, 1.75vw, 1.6rem);
    font-weight: 500;
    transition: color 0.32s ease, transform 0.32s ease;
}

.about-roster p {
    order: -1;
    margin-bottom: 10px;
    color: var(--color-gold);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.about-roster article:hover h3 {
    color: var(--color-white);
    transform: translateX(5px);
}

.about-clients-inline {
    grid-column: 1 / -1;
    width: 100vw;
    margin-top: clamp(48px, 7vw, 92px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.about-clients-inline__label {
    display: block;
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
    margin-bottom: 20px;
    color: rgba(183, 155, 97, 0.88);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.client-logo-banner {
    position: relative;
    width: 100%;
    display: grid;
    align-items: center;
    padding: 0;
    background: transparent;
    overflow: hidden;
    will-change: transform, opacity, filter;
}

.client-logo-banner__glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.2), transparent);
    opacity: 0;
    transform: translateX(-120%);
    pointer-events: none;
    will-change: transform, opacity;
}

.client-logo-banner img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-inline: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.68;
    filter: grayscale(1) brightness(1.12);
    transform: scale(1);
    transform-origin: center center;
    transition: opacity 0.45s ease, filter 0.45s ease;
    will-change: transform, opacity, filter, clip-path;
}

.client-logo-banner:hover img {
    opacity: 0.92;
    filter: grayscale(0.18) brightness(1.14);
}

.portfolio-page {
    background: var(--color-black);
}

/* =============================================================
   Portfolio — Mersi-style Minimal Grid
   ============================================================= */
.portfolio-page--minimal {
    background: var(--color-black);
}

.portfolio-cover {
    padding: clamp(140px, 18vw, 220px) 0 clamp(40px, 5vw, 70px);
}

.portfolio-cover .container {
    display: grid;
    gap: clamp(28px, 3.4vw, 48px);
}

.portfolio-cover .eyebrow {
    margin-bottom: 0;
}

.portfolio-cover h1 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.018em;
}

.portfolio-filters {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-filters button {
    appearance: none;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(247, 244, 236, 0.18);
    color: rgba(247, 244, 236, 0.72);
    padding: 11px 22px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.portfolio-filters button:hover {
    color: var(--color-white);
    border-color: rgba(247, 244, 236, 0.4);
}

.portfolio-filters button.is-active {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.portfolio-gallery-wrap {
    padding: clamp(30px, 4vw, 60px) 0 clamp(80px, 11vw, 140px);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(32px, 3.2vw, 52px) clamp(20px, 2.2vw, 32px);
    align-items: start;
}

.portfolio-gallery__item {
    display: block;
    color: inherit;
    transition: opacity 0.45s ease, filter 0.45s ease;
}

.portfolio-gallery__item.is-dimmed {
    opacity: 0.18;
    filter: grayscale(0.6);
    pointer-events: none;
}

.portfolio-gallery__item {
    overflow: hidden;
    position: relative;
}

.portfolio-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    background: var(--color-charcoal);
    filter: saturate(0.85) contrast(1.04);
    will-change: transform, filter;
}

.portfolio-gallery__item:hover img {
    filter: saturate(1) contrast(1.07);
}

/* Split-word headline reveal */
.portfolio-cover h1 .word {
    display: inline-block;
    overflow: hidden;
    line-height: inherit;
    vertical-align: top;
    padding-bottom: 0.04em;
}

.portfolio-cover h1 .word .inner {
    display: inline-block;
    will-change: transform;
}

/* Custom "View" cursor */
.portfolio-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-black);
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-9999px, -9999px, 0) scale(0.4);
    transition: opacity 0.4s ease;
    z-index: 100;
    will-change: transform, opacity;
}

.portfolio-cursor.is-active {
    opacity: 1;
}

@media (max-width: 860px) {
    .portfolio-cursor { display: none; }
}

/* =============================================================
   Portfolio — Year dividers
   ============================================================= */
.portfolio-year {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: clamp(28px, 4vw, 56px) 0 clamp(14px, 1.6vw, 24px);
}

.portfolio-year:first-child {
    padding-top: 0;
}

.portfolio-year__num {
    font-family: var(--font-mono);
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    letter-spacing: -0.01em;
    color: var(--color-white);
    line-height: 1;
}

.portfolio-year__rule {
    height: 1px;
    background: linear-gradient(90deg, rgba(183, 155, 97, 0.55), rgba(247, 244, 236, 0.06));
}

.portfolio-year__count {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.45);
}

/* =============================================================
   Portfolio — Scroll progress + project counter
   ============================================================= */
.portfolio-progress {
    position: fixed;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 40;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.portfolio-progress.is-visible {
    opacity: 1;
}

.portfolio-progress__counter {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    color: var(--color-white);
    line-height: 1;
    text-align: center;
    min-width: 56px;
}

.portfolio-progress__counter span {
    color: var(--color-gold);
}

.portfolio-progress__track {
    position: relative;
    width: 1px;
    height: 140px;
    background: rgba(247, 244, 236, 0.14);
    overflow: hidden;
}

.portfolio-progress__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--color-gold);
    transform-origin: top center;
    transition: height 0.18s linear;
}

.portfolio-progress__label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.42);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@media (max-width: 860px) {
    .portfolio-progress { display: none; }
}

/* =============================================================
   Portfolio — Image blur-up loading
   ============================================================= */
.portfolio-gallery__item img {
    filter: saturate(0.85) contrast(1.04) blur(18px);
    transform: scale(1.04);
    transition: filter 1.1s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.portfolio-gallery__item img.is-loaded {
    filter: saturate(0.85) contrast(1.04) blur(0px);
}

.portfolio-gallery__item:hover img.is-loaded {
    filter: saturate(1) contrast(1.07) blur(0px);
}

/* =============================================================
   Portfolio — Cinematic page transition
   ============================================================= */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    display: grid;
    place-items: center;
    background: var(--color-black);
    clip-path: inset(0% 0% 100% 0%);
    will-change: clip-path;
}

.page-transition.is-leaving {
    pointer-events: auto;
    animation: pageTransitionIn 0.85s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.page-transition.is-entering {
    clip-path: inset(0% 0% 0% 0%);
    animation: pageTransitionOut 0.9s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes pageTransitionIn {
    0%   { clip-path: inset(0% 0% 100% 0%); }
    100% { clip-path: inset(0% 0% 0% 0%); }
}

@keyframes pageTransitionOut {
    0%   { clip-path: inset(0% 0% 0% 0%); }
    100% { clip-path: inset(100% 0% 0% 0%); }
}

.page-transition__inner {
    display: grid;
    gap: 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease 0.25s, transform 0.6s ease 0.25s;
}

.page-transition.is-leaving .page-transition__inner {
    opacity: 1;
    transform: translateY(0);
}

.page-transition__index {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.page-transition__title {
    font-size: clamp(2rem, 4.6vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.018em;
    color: var(--color-white);
    max-width: 16ch;
    margin: 0 auto;
}

/* Magnetic chip: extra smooth transform */
.portfolio-filters button {
    will-change: transform;
}

.portfolio-gallery__caption {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-top: 18px;
}

.portfolio-gallery__caption > span:first-child {
    font-size: clamp(0.98rem, 1.2vw, 1.18rem);
    color: var(--color-white);
    letter-spacing: -0.005em;
}

.portfolio-gallery__caption small {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.5);
}

@media (max-width: 980px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }
}

@media (max-width: 600px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .portfolio-cover h1 {
        font-size: clamp(2rem, 10vw, 3.4rem);
    }
}

/* =============================================================
   Portfolio — Editorial Intro (legacy — unused but kept)
   ============================================================= */
/* Portfolio refresh */
.portfolio-page--minimal {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 1) 42%),
        radial-gradient(circle at 82% 14%, rgba(111, 128, 105, 0.28), transparent 28%),
        var(--color-black);
}

.portfolio-cover {
    position: relative;
    padding: clamp(118px, 14vw, 190px) 0 clamp(58px, 7vw, 96px);
    overflow: hidden;
}

.portfolio-cover::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.16), transparent);
    content: "";
}

.portfolio-cover .container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(42px, 7vw, 116px);
}

.portfolio-cover__content {
    display: grid;
    gap: clamp(22px, 2.8vw, 34px);
}

.portfolio-cover h1 {
    max-width: 38ch;
    font-size: clamp(1.85rem, 3.2vw, 3.8rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.portfolio-cover__lede {
    max-width: 590px;
    margin: 0;
    color: rgba(247, 244, 236, 0.68);
    font-size: clamp(1rem, 1.28vw, 1.16rem);
    line-height: 1.68;
}

.portfolio-cover__visual {
    position: relative;
    min-height: clamp(420px, 46vw, 620px);
}

.portfolio-cover__visual img {
    position: absolute;
    width: min(78%, 430px);
    height: 84%;
    object-fit: cover;
    background: #111;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    filter: saturate(0.82) contrast(1.06);
}

.portfolio-cover__visual img:first-child {
    top: 0;
    right: 0;
    aspect-ratio: 4 / 5;
}

.portfolio-cover__visual img:nth-child(2) {
    left: 0;
    bottom: 0;
    width: min(62%, 340px);
    height: 36%;
    aspect-ratio: 4 / 3;
    border: 10px solid rgba(5, 5, 5, 0.86);
}

.portfolio-cover__stats {
    position: absolute;
    right: 0;
    bottom: clamp(34px, 5vw, 74px);
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1px;
    background: rgba(247, 244, 236, 0.12);
}

.portfolio-cover__stats span {
    min-width: 112px;
    padding: 14px 16px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(18px);
    color: rgba(247, 244, 236, 0.8);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.portfolio-filters {
    margin-top: 2px;
    gap: 8px;
}

.portfolio-filters button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 0;
    background: rgba(247, 244, 236, 0.035);
    font-size: 0.64rem;
    letter-spacing: 0.22em;
}

.portfolio-filters button.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.portfolio-gallery-wrap {
    padding: clamp(58px, 7vw, 94px) 0 clamp(96px, 13vw, 170px);
}

.portfolio-gallery {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.6vw, 36px);
    padding: clamp(18px, 2.8vw, 34px);
    border: 1px solid rgba(247, 244, 236, 0.12);
    background:
        linear-gradient(180deg, rgba(247, 244, 236, 0.055), rgba(247, 244, 236, 0.025)),
        rgba(18, 20, 18, 0.72);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.portfolio-year {
    margin-top: clamp(12px, 2vw, 28px);
    padding: 0 0 clamp(4px, 1vw, 10px);
}

.portfolio-year__num {
    font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.portfolio-gallery__item {
    grid-column: auto;
}

.portfolio-gallery__item:nth-of-type(4n + 2) {
    grid-column: auto;
    margin-top: 0;
}

.portfolio-gallery__item:nth-of-type(4n + 3) {
    grid-column: auto;
}

.portfolio-gallery__item:nth-of-type(4n + 4) {
    grid-column: auto;
}

.portfolio-gallery__item:nth-of-type(4n + 5) {
    grid-column: auto;
    margin-top: 0;
}

.portfolio-gallery__item img {
    aspect-ratio: 4 / 3.15;
    transform: scale(1.045);
}

.portfolio-gallery__item:nth-of-type(4n + 2) img,
.portfolio-gallery__item:nth-of-type(4n + 4) img {
    aspect-ratio: 4 / 3.15;
}

.portfolio-gallery__item:nth-of-type(4n + 3) img {
    aspect-ratio: 4 / 3.15;
}

.portfolio-gallery__caption {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(247, 244, 236, 0.12);
}

.portfolio-gallery__meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.portfolio-gallery__meta small,
.portfolio-gallery__year {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.45);
}

.portfolio-gallery__title {
    min-width: 0;
    color: var(--color-white);
    font-size: clamp(1.16rem, 1.65vw, 1.72rem);
    line-height: 1.08;
}

.portfolio-gallery__year {
    align-self: end;
}

.portfolio-gallery__caption > span:first-child {
    font-size: inherit;
}

.portfolio-gallery__caption small {
    color: rgba(247, 244, 236, 0.45);
}

@media (max-width: 980px) {
    .portfolio-cover .container {
        grid-template-columns: 1fr;
    }

    .portfolio-cover__visual {
        min-height: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
        gap: 14px;
    }

    .portfolio-cover__visual img,
    .portfolio-cover__visual img:first-child,
    .portfolio-cover__visual img:nth-child(2) {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        border: 0;
    }

    .portfolio-cover__visual img:first-child {
        aspect-ratio: 4 / 3;
    }

    .portfolio-cover__visual img:nth-child(2) {
        aspect-ratio: 4 / 5;
        align-self: end;
    }

    .portfolio-cover__stats {
        right: 14px;
        bottom: 14px;
    }

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

    .portfolio-gallery__item,
    .portfolio-gallery__item:nth-of-type(n) {
        grid-column: auto;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .portfolio-cover {
        padding-top: 94px;
    }

    .portfolio-cover h1 {
        max-width: 100%;
        font-size: clamp(1.72rem, 8vw, 2.8rem);
    }

    .portfolio-cover__visual {
        grid-template-columns: 1fr;
    }

    .portfolio-cover__visual img:nth-child(2) {
        display: none;
    }

    .portfolio-cover__stats {
        left: 10px;
        right: 10px;
        bottom: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-cover__stats span {
        min-width: 0;
        padding: 12px 10px;
        text-align: center;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .portfolio-gallery__item,
    .portfolio-gallery__item:nth-of-type(n) {
        grid-column: 1 / -1;
    }

    .portfolio-year {
        gap: 14px;
    }

    .portfolio-year__count {
        display: none;
    }
}

.portfolio-intro {
    position: relative;
    padding: clamp(140px, 18vw, 240px) 0 clamp(70px, 9vw, 130px);
    overflow: hidden;
}

.portfolio-intro::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.18), transparent);
}

.portfolio-intro__inner {
    display: grid;
    gap: clamp(48px, 6vw, 92px);
}

.portfolio-intro__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.portfolio-intro__kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 36px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.5);
}

.portfolio-intro__kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--color-gold);
}

.portfolio-intro__title {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2.8rem, 7vw, 7.4rem);
    line-height: 0.98;
    letter-spacing: -0.015em;
    color: var(--color-white);
}

.portfolio-intro__counter {
    align-self: end;
    text-align: right;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.42);
    line-height: 1.5;
}

.portfolio-intro__counter strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.18em;
}

.portfolio-intro__meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 48px);
    margin: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(247, 244, 236, 0.1);
}

.portfolio-intro__meta div {
    display: grid;
    gap: 10px;
}

.portfolio-intro__meta dt {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.38);
}

.portfolio-intro__meta dd {
    margin: 0;
    color: rgba(247, 244, 236, 0.86);
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    line-height: 1.5;
}

/* =============================================================
   Portfolio — Showcase Rows
   ============================================================= */
.portfolio-showcase {
    padding: clamp(90px, 12vw, 150px) 0 clamp(80px, 11vw, 140px);
}

.showcase-row {
    margin-bottom: clamp(110px, 15vw, 210px);
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row__inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(24px, 3.4vw, 56px);
    align-items: end;
}

.showcase-piece {
    position: relative;
}

.showcase-piece a {
    display: block;
    color: inherit;
}

.showcase-piece__media {
    position: relative;
    overflow: hidden;
    background: var(--color-charcoal);
    aspect-ratio: 4 / 3;
}

.showcase-piece__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.45));
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.showcase-piece:hover .showcase-piece__media::after {
    opacity: 1;
}

.showcase-piece__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
    transform: scale(1.03);
    transition: filter 0.7s ease, transform 1.2s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: transform;
}

.showcase-piece:hover .showcase-piece__media img {
    filter: saturate(1) contrast(1.07);
    transform: scale(1.07);
}

.showcase-piece__caption {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.showcase-piece__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(247, 244, 236, 0.1);
}

.showcase-piece__index {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    color: var(--color-gold);
    font-weight: 600;
}

.showcase-piece__type {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.42);
}

.showcase-piece__title {
    margin: 4px 0 0;
    font-size: clamp(1.4rem, 2.4vw, 2.4rem);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -0.012em;
    color: var(--color-white);
    transition: color 0.4s ease;
}

.showcase-piece:hover .showcase-piece__title {
    color: var(--color-gold);
}

.showcase-piece__meta {
    margin: 0;
    color: rgba(247, 244, 236, 0.52);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Layout variants */
.showcase-row--feature .showcase-piece {
    grid-column: 1 / -1;
}

.showcase-row--feature .showcase-piece__media {
    aspect-ratio: 21 / 9;
}

.showcase-row--feature .showcase-piece__caption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px clamp(40px, 6vw, 100px);
    margin-top: 36px;
}

.showcase-row--feature .showcase-piece__row {
    grid-column: 1 / -1;
}

.showcase-row--feature .showcase-piece__title {
    grid-column: 1;
    font-size: clamp(1.8rem, 3.4vw, 3.4rem);
    max-width: 16ch;
}

.showcase-row--feature .showcase-piece__lede {
    grid-column: 2;
    margin: 0;
    color: rgba(247, 244, 236, 0.65);
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.65;
    max-width: 46ch;
    align-self: end;
}

.showcase-row--duet .showcase-piece:first-child {
    grid-column: 1 / span 7;
}

.showcase-row--duet .showcase-piece:last-child {
    grid-column: 9 / span 4;
    padding-bottom: clamp(60px, 9vw, 120px);
}

.showcase-row--duet .showcase-piece:first-child .showcase-piece__media {
    aspect-ratio: 4 / 3;
}

.showcase-row--duet .showcase-piece:last-child .showcase-piece__media {
    aspect-ratio: 3 / 4;
}

.showcase-row--duet-rev .showcase-piece:first-child {
    grid-column: 1 / span 4;
    padding-bottom: clamp(60px, 9vw, 120px);
}

.showcase-row--duet-rev .showcase-piece:last-child {
    grid-column: 6 / span 7;
}

.showcase-row--duet-rev .showcase-piece:first-child .showcase-piece__media {
    aspect-ratio: 3 / 4;
}

.showcase-row--duet-rev .showcase-piece:last-child .showcase-piece__media {
    aspect-ratio: 4 / 3;
}

.showcase-row--spotlight .showcase-piece {
    grid-column: 2 / -2;
}

.showcase-row--spotlight .showcase-piece__media {
    aspect-ratio: 16 / 9;
}

.showcase-row--spotlight .showcase-piece__caption {
    max-width: 760px;
}

/* =============================================================
   Portfolio — Archive Index
   ============================================================= */
.portfolio-archive {
    position: relative;
    padding: clamp(90px, 12vw, 150px) 0;
    border-top: 1px solid rgba(247, 244, 236, 0.08);
}

.portfolio-archive__head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: end;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.portfolio-archive__head h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(1.8rem, 3.4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.012em;
}

.portfolio-archive__head p {
    margin: 0;
    max-width: 44ch;
    color: rgba(247, 244, 236, 0.6);
    font-size: clamp(0.92rem, 1.02vw, 1rem);
    line-height: 1.65;
}

.archive-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(247, 244, 236, 0.12);
}

.archive-list li {
    border-bottom: 1px solid rgba(247, 244, 236, 0.08);
}

.archive-list a {
    display: grid;
    grid-template-columns: 64px minmax(0, 2.4fr) minmax(0, 1.1fr) 90px 30px;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
    padding: clamp(22px, 2.6vw, 34px) 0;
    color: rgba(247, 244, 236, 0.78);
    transition: color 0.4s ease, padding 0.55s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.archive-list a:hover {
    color: var(--color-white);
    padding-left: 18px;
    padding-right: 18px;
}

.archive-list__index {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--color-gold);
}

.archive-list__title {
    font-size: clamp(1.15rem, 1.85vw, 1.7rem);
    font-weight: 400;
    letter-spacing: -0.008em;
    color: var(--color-white);
}

.archive-list__type,
.archive-list__year {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.5);
}

.archive-list__year {
    text-align: right;
}

.archive-list__arrow {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--color-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.45s ease, transform 0.55s ease;
    text-align: right;
}

.archive-list a:hover .archive-list__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Cursor-follow preview */
.archive-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(220px, 24vw, 340px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-9999px, -9999px, 0) scale(0.94);
    transition: opacity 0.45s ease;
    z-index: 60;
    will-change: transform, opacity;
}

.archive-preview.is-active {
    opacity: 1;
}

.archive-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

/* =============================================================
   Portfolio — Closing CTA
   ============================================================= */
.portfolio-closing {
    position: relative;
    padding: clamp(110px, 15vw, 200px) 0;
    text-align: center;
    border-top: 1px solid rgba(247, 244, 236, 0.08);
    background:
        radial-gradient(circle at 50% 0%, rgba(183, 155, 97, 0.08), transparent 50%),
        linear-gradient(180deg, rgba(247, 244, 236, 0.02), rgba(247, 244, 236, 0.05));
    overflow: hidden;
}

.portfolio-closing .eyebrow {
    margin-bottom: 28px;
}

.portfolio-closing h2 {
    max-width: 20ch;
    margin: 0 auto 28px;
    font-size: clamp(2rem, 4.4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
}

.portfolio-closing__copy {
    max-width: 460px;
    margin: 0 auto 36px;
    color: rgba(247, 244, 236, 0.6);
    font-size: clamp(0.92rem, 1.02vw, 1rem);
    line-height: 1.65;
}

.portfolio-closing__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    border: 1px solid rgba(247, 244, 236, 0.25);
    color: var(--color-white);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease, padding 0.5s ease;
}

.portfolio-closing__cta:hover {
    border-color: var(--color-gold);
    background: rgba(183, 155, 97, 0.08);
    color: var(--color-gold);
    padding-left: 44px;
    padding-right: 44px;
}

.portfolio-closing__cta::after {
    content: "↗";
    font-size: 1.05rem;
    transition: transform 0.4s ease;
}

.portfolio-closing__cta:hover::after {
    transform: translate(3px, -3px);
}

/* =============================================================
   Project Detail Page
   ============================================================= */
.project-page {
    background: var(--color-black);
    color: var(--color-white);
}

.project-hero {
    position: relative;
    min-height: clamp(540px, 78vh, 820px);
    padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 110px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.project-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.project-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(0.85) contrast(1.05) brightness(0.78);
    will-change: transform;
}

.project-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.15) 35%, rgba(5, 5, 5, 0.85) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.55), transparent 60%);
}

.project-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
}

.project-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.55);
}

.project-hero__breadcrumb a {
    color: rgba(247, 244, 236, 0.55);
    transition: color 0.3s ease;
}

.project-hero__breadcrumb a:hover {
    color: var(--color-gold);
}

.project-hero__breadcrumb span {
    color: rgba(247, 244, 236, 0.3);
}

.project-hero__index {
    display: block;
    margin-bottom: 22px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.project-hero__title {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2.4rem, 5.4vw, 5.6rem);
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--color-white);
}

.project-hero__strip {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: end;
    padding: 26px 0 0;
    border-top: 1px solid rgba(247, 244, 236, 0.2);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.78);
}

.project-hero__strip div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.project-hero__strip span:first-child {
    color: rgba(247, 244, 236, 0.45);
    letter-spacing: 0.32em;
}

/* Intro & meta */
.project-intro {
    padding: clamp(90px, 12vw, 150px) 0 clamp(60px, 8vw, 110px);
    border-bottom: 1px solid rgba(247, 244, 236, 0.06);
}

.project-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 120px);
    align-items: start;
}

.project-intro__meta {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 28px;
    border: 1px solid rgba(247, 244, 236, 0.08);
    background: rgba(247, 244, 236, 0.02);
}

.project-intro__meta div {
    display: grid;
    gap: 8px;
}

.project-intro__meta dt {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.4);
}

.project-intro__meta dd {
    margin: 0;
    font-size: 0.94rem;
    color: var(--color-white);
}

.project-intro__copy .eyebrow {
    margin-bottom: 22px;
}

.project-intro__lede {
    margin: 0 0 28px;
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: var(--color-white);
    max-width: 24ch;
}

.project-intro__body p {
    margin: 0 0 18px;
    max-width: 58ch;
    font-size: clamp(0.94rem, 1.05vw, 1.02rem);
    line-height: 1.75;
    color: rgba(247, 244, 236, 0.72);
}

.project-intro__body p:last-child {
    margin-bottom: 0;
}

/* Gallery */
.project-gallery {
    padding: clamp(70px, 10vw, 130px) 0;
}

.project-gallery--single .project-gallery__media {
    aspect-ratio: 21 / 9;
}

.project-gallery--portrait .project-gallery__media {
    aspect-ratio: 16 / 11;
}

.project-gallery--duo {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: clamp(20px, 2.4vw, 36px);
    align-items: stretch;
}

.project-gallery--duo .project-gallery__media {
    aspect-ratio: 4 / 3;
    margin: 0;
}

.project-gallery--duo .project-gallery__media:last-child {
    aspect-ratio: 3 / 4;
}

.project-gallery__media {
    position: relative;
    overflow: hidden;
    background: var(--color-charcoal);
    margin: 0;
}

.project-gallery__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.04);
    transform: scale(1.025);
    transition: transform 1.4s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: transform;
}

.project-gallery__media:hover img {
    transform: scale(1.06);
}

.project-gallery__caption {
    margin: 22px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.42);
}

.project-gallery__caption strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* Pullquote */
.project-quote {
    padding: clamp(90px, 12vw, 150px) 0;
    border-top: 1px solid rgba(247, 244, 236, 0.06);
    border-bottom: 1px solid rgba(247, 244, 236, 0.06);
    text-align: center;
}

.project-quote blockquote {
    margin: 0 auto;
    max-width: 26ch;
    font-size: clamp(1.4rem, 2.6vw, 2.4rem);
    line-height: 1.3;
    letter-spacing: -0.012em;
    color: var(--color-white);
}

.project-quote cite {
    display: block;
    margin-top: 36px;
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.48);
}

.project-quote cite::before {
    content: "—  ";
    color: var(--color-gold);
}

/* Approach */
.project-approach {
    padding: clamp(90px, 12vw, 150px) 0;
}

.project-approach__head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    margin-bottom: clamp(50px, 7vw, 80px);
}

.project-approach__head h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.012em;
}

.project-approach__head p {
    margin: 0;
    max-width: 44ch;
    color: rgba(247, 244, 236, 0.62);
    font-size: clamp(0.96rem, 1.1vw, 1.04rem);
    line-height: 1.7;
}

.project-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 60px);
    padding-top: 40px;
    border-top: 1px solid rgba(247, 244, 236, 0.1);
}

.project-approach__step {
    display: grid;
    gap: 16px;
}

.project-approach__step-index {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.project-approach__step h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.7vw, 1.6rem);
    font-weight: 400;
    letter-spacing: -0.008em;
    color: var(--color-white);
}

.project-approach__step p {
    margin: 0;
    color: rgba(247, 244, 236, 0.6);
    line-height: 1.65;
    font-size: 0.94rem;
}

/* Specs */
.project-specs {
    padding: clamp(80px, 11vw, 140px) 0;
    border-top: 1px solid rgba(247, 244, 236, 0.06);
}

.project-specs__head {
    margin-bottom: clamp(40px, 5vw, 70px);
}

.project-specs__head h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    letter-spacing: -0.012em;
}

.project-specs__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(247, 244, 236, 0.12);
}

.project-specs__list > div {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(247, 244, 236, 0.08);
}

.project-specs__list > div:nth-child(odd) {
    padding-right: clamp(28px, 4vw, 60px);
    border-right: 1px solid rgba(247, 244, 236, 0.08);
}

.project-specs__list > div:nth-child(even) {
    padding-left: clamp(28px, 4vw, 60px);
}

.project-specs__list dt {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.42);
    align-self: center;
}

.project-specs__list dd {
    margin: 0;
    font-size: 0.94rem;
    color: var(--color-white);
}

/* Next project navigator */
.project-nav {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(247, 244, 236, 0.06);
}

.project-nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
}

.project-nav__back,
.project-nav__next {
    position: relative;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(60px, 8vw, 110px) 0;
    overflow: hidden;
    transition: background 0.5s ease, border-color 0.45s ease;
}

.project-nav__back {
    padding-right: clamp(28px, 4vw, 60px);
    border-right: 1px solid rgba(247, 244, 236, 0.08);
    isolation: isolate;
}

.project-nav__back::before {
    content: "<";
    display: grid;
    place-items: center;
    width: clamp(42px, 4vw, 58px);
    height: clamp(42px, 4vw, 58px);
    margin-bottom: clamp(14px, 2vw, 24px);
    border: 1px solid rgba(247, 244, 236, 0.2);
    border-radius: 50%;
    color: rgba(247, 244, 236, 0.82);
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 300;
    line-height: 1;
    background: rgba(247, 244, 236, 0.035);
    transform: translateX(0);
    transition: transform 0.45s cubic-bezier(0.16, 0.84, 0.44, 1), border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.project-nav__back::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(183, 155, 97, 0.12), transparent 46%),
        linear-gradient(180deg, rgba(247, 244, 236, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.project-nav__next {
    padding-left: clamp(28px, 4vw, 60px);
    text-align: right;
    position: relative;
}

.project-nav__back:hover,
.project-nav__next:hover {
    background: rgba(247, 244, 236, 0.025);
}

.project-nav__back:hover {
    border-color: rgba(183, 155, 97, 0.26);
}

.project-nav__back:hover::before {
    color: #050505;
    border-color: rgba(183, 155, 97, 0.85);
    background: var(--color-gold);
    transform: translateX(-6px);
}

.project-nav__back:hover::after {
    opacity: 1;
}

.project-nav__label {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.42);
    transition: color 0.35s ease, transform 0.45s ease;
}

.project-nav__title {
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    letter-spacing: -0.01em;
    color: var(--color-white);
    transition: color 0.4s ease, transform 0.45s ease;
    max-width: 18ch;
}

.project-nav__next .project-nav__title {
    justify-self: end;
}

.project-nav__back:hover .project-nav__title,
.project-nav__next:hover .project-nav__title {
    color: var(--color-gold);
}

.project-nav__back:hover .project-nav__label,
.project-nav__back:hover .project-nav__title {
    transform: translateX(-4px);
}

.project-nav__meta {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.45);
}

/* Project closing CTA reuses portfolio-closing - already defined */

/* Editorial project detail */
.project-page--editorial.page-shell {
    padding-top: 0;
}

.project-page--editorial {
    position: relative;
    background:
        radial-gradient(circle at 78% 8%, rgba(183, 155, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #020202 0%, #080907 52%, #020202 100%);
}

.project-cover {
    position: fixed;
    inset: 0;
    z-index: 0;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    color: var(--color-white);
}

.project-cover__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #050505;
}

.project-cover__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04) brightness(0.94);
    transform: scale(1.08);
    will-change: opacity, transform;
}

.project-cover__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 62% 36%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.26) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.03) 58%, rgba(0, 0, 0, 0.22) 100%);
}

.project-cover__inner {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + clamp(24px, 4vw, 56px));
    padding-bottom: clamp(34px, 6vw, 82px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-cover__breadcrumb {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.5);
}

.project-cover__breadcrumb a {
    color: rgba(247, 244, 236, 0.72);
}

.project-cover__breadcrumb a:hover {
    color: var(--color-gold);
}

.project-cover__breadcrumb span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 16px;
    vertical-align: middle;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.78;
}

.project-cover__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
    gap: clamp(32px, 6vw, 90px);
    align-items: end;
}

.project-cover h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(3.4rem, 10.5vw, 9.6rem);
    line-height: 0.86;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.project-cover__meta {
    margin: 0;
    list-style: none;
    display: grid;
    gap: 18px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.project-cover__meta li,
.project-info li {
    display: grid;
    gap: 7px;
}

.project-cover__meta span,
.project-info span,
.project-brief__label {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.project-cover__meta strong,
.project-info strong {
    margin: 0;
    color: rgba(247, 244, 236, 0.86);
    font-size: 0.94rem;
    font-weight: 500;
}

.project-brief {
    position: relative;
    z-index: 2;
    margin-top: 100svh;
    padding: clamp(96px, 12vw, 160px) 0 clamp(48px, 7vw, 96px);
    background:
        radial-gradient(circle at 78% 0%, rgba(183, 155, 91, 0.055), transparent 28%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.99) 0%, #050604 100%);
    box-shadow: 0 -120px 180px rgba(0, 0, 0, 0.74);
    clip-path: inset(var(--brief-curtain-inset, 0%) 0 0 0);
    will-change: clip-path, transform;
}

.project-brief::before {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(183, 155, 91, 0.42), transparent);
    opacity: var(--brief-edge-opacity, 0.2);
}

.project-brief::after {
    position: absolute;
    inset: 0 0 auto;
    height: clamp(86px, 12vw, 170px);
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
    transform: translateY(-100%);
}

.project-brief__inner {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
    gap: clamp(34px, 8vw, 120px);
    align-items: start;
}

.project-brief__lede {
    margin: 0;
    max-width: 24ch;
    font-size: clamp(1.55rem, 3.1vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--color-white);
}

.project-brief__copy {
    margin: clamp(22px, 3vw, 34px) 0 0;
    max-width: 48ch;
    color: rgba(247, 244, 236, 0.58);
    line-height: 1.72;
}

.project-visuals {
    position: relative;
    z-index: 2;
    padding: clamp(28px, 5vw, 70px) 0 clamp(82px, 11vw, 150px);
    background: #050604;
}

.project-visuals::before {
    position: absolute;
    inset: clamp(22px, 4vw, 60px) 0 auto;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(247, 244, 236, 0.1), transparent);
    transform: scaleX(0);
    transform-origin: center;
}

.project-visuals__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 28px);
}

@media (min-width: 861px) {
    .project-visuals__grid {
        row-gap: clamp(22px, 3vw, 42px);
    }

    .project-visuals__grid .project-frame:nth-child(1) {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 8.6;
    }

    .project-visuals__grid .project-frame:nth-child(2) {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 8.6;
    }

    .project-visuals__grid .project-frame:nth-child(3) {
        grid-column: 1 / 7;
        aspect-ratio: 4 / 3;
    }

    .project-visuals__grid .project-frame:nth-child(4) {
        grid-column: 7 / 13;
        aspect-ratio: 4 / 3;
        margin-top: 0;
    }

    .project-visuals__grid .project-frame:nth-child(5) {
        grid-column: 1 / 7;
        aspect-ratio: 4 / 3;
        margin-top: 0;
    }

    .project-visuals__grid .project-frame:nth-child(6) {
        grid-column: 7 / 13;
        aspect-ratio: 4 / 3;
    }
}

/* ── Gallery layout: modifier-class overrides (must come after nth-child rules) ── */
@media (min-width: 861px) {
    .project-visuals__grid .project-frame:nth-child(1),
    .project-visuals__grid .project-frame:nth-child(2),
    .project-visuals__grid .project-frame:nth-child(3),
    .project-visuals__grid .project-frame:nth-child(4),
    .project-visuals__grid .project-frame:nth-child(5),
    .project-visuals__grid .project-frame:nth-child(6),
    .project-visuals__grid .project-frame:nth-child(n) {
        grid-column: span 6;
        aspect-ratio: 3 / 2;
    }
    .project-visuals__grid .project-frame.project-frame--wide {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 8.5;
    }
    .project-visuals__grid .project-frame.project-frame--tall {
        grid-column: span 6;
        aspect-ratio: 4 / 5;
    }
    .project-visuals__grid .project-frame.project-frame--video {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 8.4;
    }
}

.project-frame {
    position: relative;
    grid-column: span 6;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: rgba(247, 244, 236, 0.04);
}

.project-frame--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 8.5;
}

.project-frame--tall {
    aspect-ratio: 4 / 5;
}

.project-frame img,
.project-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.05);
    transform: translateZ(0) scale(1.04);
    transform-origin: center;
    backface-visibility: hidden;
    opacity: 0;
    will-change: transform;
    transition: opacity 0.75s ease, filter 0.75s ease;
}

.project-frame img.is-loaded,
.project-frame video.is-loaded {
    opacity: 1;
    filter: saturate(0.86) contrast(1.05) blur(0);
}

.project-frame video {
    display: block;
    background: #050505;
    transform: translateZ(0) scale(1.02);
}

.project-frame--video {
    aspect-ratio: 16 / 8.4;
}

.project-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 32%, rgba(0, 0, 0, 0.16));
    opacity: 0;
    transition: opacity 0.65s ease;
}

.project-frame figcaption {
    position: absolute;
    left: clamp(18px, 2vw, 30px);
    bottom: clamp(16px, 2vw, 28px);
    z-index: 2;
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.78);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.project-frame:hover::after,
.project-frame:hover figcaption {
    opacity: 1;
}

.project-frame:hover figcaption {
    transform: translateY(0);
}

.project-frame__expand {
    position: absolute;
    top: clamp(14px, 1.7vw, 24px);
    right: clamp(14px, 1.7vw, 24px);
    z-index: 3;
    width: 42px;
    height: 42px;
    appearance: none;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.48);
    color: rgba(247, 244, 236, 0.86);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.project-frame__expand span,
.project-frame__expand span::before,
.project-frame__expand span::after {
    position: absolute;
    content: "";
    display: block;
}

.project-frame__expand span {
    inset: 12px;
}

.project-frame__expand span::before,
.project-frame__expand span::after {
    background: currentColor;
}

.project-frame__expand span::before {
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.project-frame__expand span::after {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
}

.project-frame__expand:hover {
    background: rgba(183, 155, 91, 0.72);
    color: #050505;
}

.project-frame:hover .project-frame__expand,
.project-frame:focus-within .project-frame__expand {
    opacity: 1;
    transform: translateY(0);
}

.project-frame__duration {
    position: absolute;
    right: clamp(16px, 2vw, 28px);
    bottom: clamp(16px, 2vw, 28px);
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: rgba(247, 244, 236, 0.74);
    background: rgba(0, 0, 0, 0.44);
    padding: 8px 10px;
    backdrop-filter: blur(12px);
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 18px;
    padding: clamp(18px, 3vw, 42px);
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.36s ease, visibility 0.36s ease;
}

html.has-media-lightbox {
    overflow: hidden;
}

.media-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.media-lightbox.is-transitioning .media-lightbox__stage,
.media-lightbox.is-transitioning .media-lightbox__bar,
.media-lightbox.is-transitioning .media-lightbox__nav {
    opacity: 0;
}

.media-lightbox__stage {
    position: relative;
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.media-lightbox__stage,
.media-lightbox__bar,
.media-lightbox__nav {
    transition: opacity 0.28s ease;
}

.media-lightbox__stage img,
.media-lightbox__stage video {
    display: block;
    max-width: min(100%, 1480px);
    max-height: calc(100svh - 132px);
    object-fit: contain;
    background: #040404;
}

.media-lightbox__stage > * {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.media-lightbox.is-open .media-lightbox__stage > * {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.media-lightbox__stage video {
    width: min(100%, 1480px);
}

.media-lightbox__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.62);
}

.media-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(48px, 5vw, 70px);
    height: clamp(48px, 5vw, 70px);
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(0, 0, 0, 0.38);
    color: rgba(247, 244, 236, 0.9);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.28s ease, color 0.28s ease;
}

.media-lightbox__nav:hover {
    background: rgba(183, 155, 91, 0.78);
    color: #050505;
}

.media-lightbox__nav--prev {
    left: clamp(12px, 2vw, 32px);
}

.media-lightbox__nav--next {
    right: clamp(12px, 2vw, 32px);
}

.media-lightbox__count {
    color: rgba(247, 244, 236, 0.36);
}

.media-lightbox__close {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(247, 244, 236, 0.9);
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    cursor: pointer;
}

.media-lightbox__close:hover {
    color: var(--color-gold);
}

.media-lightbox-flight {
    position: fixed;
    z-index: 10000;
    overflow: hidden;
    pointer-events: none;
    background: #050505;
}

.media-lightbox-flight img,
.media-lightbox-flight video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    position: relative;
    z-index: 2;
    padding: 0 0 clamp(80px, 10vw, 140px);
    background: #050604;
}

.project-info__inner {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
    gap: clamp(34px, 8vw, 120px);
}

.project-info__inner > p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.46);
}

.project-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 46px);
}

.project-page--editorial .project-nav {
    position: relative;
    z-index: 2;
    border-top: 0;
    background: #020202;
}

.project-page--editorial .project-nav__inner {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(18px, 2vw, 30px);
    padding-top: clamp(34px, 5vw, 70px);
    padding-bottom: clamp(34px, 5vw, 70px);
}

.project-page--editorial .project-nav__back,
.project-page--editorial .project-nav__next {
    padding-top: 0;
    padding-bottom: 0;
}

.project-page--editorial .project-nav__back {
    padding:
        clamp(28px, 4vw, 54px)
        clamp(24px, 4vw, 58px);
    border: 1px solid rgba(247, 244, 236, 0.08);
    min-height: 320px;
    background:
        linear-gradient(180deg, rgba(247, 244, 236, 0.025), rgba(247, 244, 236, 0.008)),
        #050505;
}

.project-nav__next--visual {
    position: relative;
    min-height: clamp(320px, 42vw, 560px);
    overflow: hidden;
    text-align: left;
    background: #070707;
}

.project-nav__next--visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) brightness(0.62);
    transform: scale(1.04);
    transition: transform 1.1s cubic-bezier(0.16, 0.84, 0.44, 1), filter 0.6s ease;
}

.project-nav__next--visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18));
}

.project-nav__next--visual:hover img {
    transform: scale(1.09);
    filter: saturate(0.9) brightness(0.72);
}

.project-nav__next-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    gap: 14px;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: clamp(24px, 4vw, 54px);
}

.project-nav__next-copy .project-nav__label,
.project-nav__next-copy .project-nav__title {
    transition: transform 0.55s ease, color 0.35s ease;
}

.project-nav__next--visual:hover .project-nav__label {
    transform: translateY(-4px);
}

.project-nav__next--visual:hover .project-nav__title {
    transform: translateY(-8px);
}

.project-nav__next--visual .project-nav__title {
    justify-self: start;
    max-width: 14ch;
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.94;
}

/* =============================================================
   Home — Works Preview Section
   ============================================================= */
.home-works {
    position: relative;
    z-index: 2;
    overflow: visible;
    background:
        linear-gradient(180deg, #050505 0%, #0b0a08 45%, #050505 100%);
    color: var(--color-white);
    margin-top: 0;
    isolation: isolate;
}

.home-works__header {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(76px, 9vw, 132px) 0 clamp(46px, 6vw, 82px);
}

.home-works__header h2 {
    font-size: clamp(2.2rem, 5.8vw, 6.8rem);
    font-weight: 300;
    line-height: 0.95;
    max-width: 10ch;
    color: var(--color-ink, #f7f4ec);
}

.home-works__strip {
    display: block;
    position: relative;
    padding-bottom: clamp(18px, 2vw, 28px);
}

.home-works__item {
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    transform-origin: center top;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background: #050505;
    clip-path: inset(0%);
    will-change: transform, filter, clip-path;
}

.home-works__item + .home-works__item {
    margin-top: -1px;
}

.home-works__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    outline: 0;
}

.home-works__link:focus-visible {
    outline: 0;
}

.home-works__link:focus-visible .home-works__title {
    color: var(--color-gold, #b79b61);
}

.home-works__media {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
    clip-path: inset(0%);
    transform-origin: center;
    will-change: transform;
}

.home-works__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.04) 38%, rgba(5, 5, 5, 0.76) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.52) 0%, transparent 28%, transparent 72%, rgba(5, 5, 5, 0.44) 100%);
    pointer-events: none;
}

.home-works__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at var(--home-work-x, 50%) var(--home-work-y, 44%), rgba(247, 244, 236, 0.16), transparent 23%),
        linear-gradient(90deg, transparent 0%, rgba(183, 155, 97, 0.1) 50%, transparent 100%);
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateX(-14%);
    transition: opacity 0.65s ease, transform 0.95s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.home-works__media img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.78) saturate(0.82) contrast(1.04);
    transform: scale(1.08);
    transition: filter 0.7s ease;
    will-change: transform, filter;
}

.home-works__item:hover .home-works__media::after,
.home-works__item:focus-within .home-works__media::after {
    opacity: 1;
    transform: translateX(0);
}

.home-works__info {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: minmax(46px, 0.14fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(18px, 3vw, 42px);
    padding:
        clamp(32px, 5vw, 72px)
        clamp(120px, 12vw, 178px)
        clamp(38px, 6vw, 90px)
        clamp(26px, 5vw, 82px);
    background: none;
    pointer-events: none;
}

.home-works__num {
    font-family: var(--font-mono, monospace);
    font-size: clamp(0.66rem, 0.82vw, 0.78rem);
    letter-spacing: 0.18em;
    color: rgba(247, 244, 236, 0.58);
    flex-shrink: 0;
    padding-bottom: 0.52em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
    transition: color 0.4s ease;
}

.home-works__item:hover .home-works__num {
    color: rgba(247, 244, 236, 0.8);
}

.home-works__title {
    display: block;
    max-width: 11.6ch;
    font-size: clamp(2.55rem, 8.4vw, 9.35rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0;
    color: var(--color-ink, #f7f4ec);
    text-wrap: balance;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.74);
    transition: transform 0.55s cubic-bezier(0.16, 0.84, 0.44, 1), text-shadow 0.4s ease;
}

.home-works__item:hover .home-works__title {
    transform: translateX(clamp(4px, 0.9vw, 14px));
    text-shadow: 0 0 34px rgba(183, 155, 97, 0.28), 0 8px 28px rgba(0, 0, 0, 0.74);
}

.home-works__title .hw-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 0.95;
}

.home-works__title .hw-word-inner {
    display: inline-block;
    will-change: transform;
}

.home-works__cat {
    font-family: var(--font-mono, monospace);
    font-size: clamp(0.6rem, 0.82vw, 0.76rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.64);
    flex-shrink: 0;
    padding-bottom: 0.6em;
    text-align: right;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    transition: color 0.4s ease, transform 0.45s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.home-works__item:hover .home-works__cat {
    color: var(--color-gold, #b79b61);
    transform: translateY(-4px);
}

.home-works__info::after {
    content: ">";
    position: absolute;
    right: clamp(26px, 5vw, 82px);
    bottom: clamp(32px, 5vw, 72px);
    display: grid;
    place-items: center;
    width: clamp(42px, 4vw, 58px);
    height: clamp(42px, 4vw, 58px);
    border-radius: 50%;
    color: rgba(247, 244, 236, 0.82);
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 300;
    line-height: 1;
    background-color: rgba(5, 5, 5, 0.36);
    opacity: 0;
    transform: scale(0.75) rotate(-45deg);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 0.84, 0.44, 1), background-color 0.35s ease;
}

.home-works__item:hover .home-works__info::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background-color: rgba(183, 155, 97, 0.34);
}

.home-works__footer {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    padding: clamp(44px, 6vw, 86px) 0 clamp(70px, 9vw, 128px);
}

@media (max-width: 860px) {
    .home-works__header {
        padding: 72px 0 34px;
    }
    .home-works__header h2 {
        max-width: 9ch;
        font-size: clamp(2.45rem, 16vw, 5.25rem);
    }
    .home-works__strip {
        display: grid;
        gap: 0;
        width: 100%;
        margin-inline: auto;
        padding-bottom: 0;
    }
    .home-works__item {
        position: relative;
        top: auto;
        height: clamp(460px, 84svh, 650px);
        min-height: 0;
    }
    .home-works__info {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 10px;
        padding: 28px 78px 32px 22px;
    }
    .home-works__num,
    .home-works__cat {
        padding-bottom: 0;
        text-align: left;
    }
    .home-works__title {
        max-width: 9.2ch;
        font-size: clamp(2.55rem, 14.8vw, 4.9rem);
        line-height: 0.92;
    }
    .home-works__info::after {
        right: 22px;
        bottom: 30px;
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-works__title,
    .home-works__media img,
    .home-works__media::after,
    .home-works__info::after {
        transition: none;
    }
}

/* =============================================================
   Portfolio gallery — Mersi-inspired index
   ============================================================= */
.portfolio-mersi {
    --mersi-paper: var(--color-black);
    --mersi-ink: var(--color-white);
    --mersi-muted: rgba(247, 244, 236, 0.58);
    --mersi-accent: var(--color-gold);
    position: relative;
    background: var(--mersi-paper);
    color: var(--mersi-ink);
    isolation: isolate;
    overflow: hidden;
}

.portfolio-mersi.page-shell {
    padding-top: 0;
}

.portfolio-mersi::after {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(247, 244, 236, 0.045) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(183, 155, 97, 0.045) 0 1px, transparent 1px);
    background-size: 3px 3px, 5px 5px;
    content: "";
    mix-blend-mode: screen;
    opacity: 0.28;
    pointer-events: none;
}

body:has(.portfolio-mersi) {
    background: var(--mersi-paper);
    color: var(--mersi-ink);
}

body:has(.portfolio-mersi) .site-header {
    color: var(--mersi-ink);
}

body:has(.portfolio-mersi) .site-header.is-scrolled,
body:has(.portfolio-mersi) .site-header.is-open {
    background: rgba(5, 5, 5, 0.18);
    backdrop-filter: blur(14px);
}

body:has(.portfolio-mersi) .site-header__toggle,
body:has(.portfolio-mersi) .site-header__menu a {
    color: rgba(247, 244, 236, 0.78);
}

.portfolio-mersi__intro {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: clamp(250px, 33vw, 410px);
    align-items: end;
    padding: calc(var(--header-height) + clamp(48px, 7vw, 98px)) 0 clamp(36px, 4.8vw, 68px);
    text-align: center;
}

.portfolio-mersi__intro .container {
    width: min(100% - 40px, 980px);
}

.portfolio-mersi__label,
.portfolio-mersi__intro h1,
.portfolio-mersi__filters {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1), filter 0.85s ease;
}

.portfolio-mersi.is-ready .portfolio-mersi__label,
.portfolio-mersi.is-ready .portfolio-mersi__intro h1,
.portfolio-mersi.is-ready .portfolio-mersi__filters {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

.portfolio-mersi.is-ready .portfolio-mersi__intro h1 {
    transition-delay: 0.08s;
}

.portfolio-mersi.is-ready .portfolio-mersi__filters {
    transition-delay: 0.16s;
}

.portfolio-mersi__label {
    margin: 0 0 20px;
    color: var(--mersi-accent);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.portfolio-mersi__intro h1 {
    margin: 0 auto;
    color: var(--mersi-ink);
    font-size: clamp(1.35rem, 2.05vw, 2.2rem);
    font-weight: 300;
    line-height: 1.28;
    letter-spacing: 0;
}

.portfolio-mersi__gallery {
    position: relative;
    z-index: 2;
    --mersi-gallery-depth: 0;
    padding: 0 0 clamp(92px, 11vw, 156px);
    transform-origin: center top;
    will-change: clip-path, transform;
}

.portfolio-mersi__filters {
    position: sticky;
    z-index: 20;
    top: calc(var(--header-height) + 12px);
    width: max-content;
    max-width: calc(100% - 28px);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto clamp(34px, 5vw, 72px);
    padding: 6px;
    border: 1px solid rgba(247, 244, 236, 0.1);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.42);
    color: var(--mersi-ink);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1), filter 0.85s ease, background 0.28s ease, border-color 0.28s ease, padding 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-mersi__filters.is-compact {
    padding: 4px;
    border-color: rgba(183, 155, 97, 0.18);
    background: rgba(5, 5, 5, 0.64);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
    transform: translateY(-2px);
}

.portfolio-mersi.is-ready .portfolio-mersi__filters.is-compact {
    transform: translateY(-2px);
}

.portfolio-mersi__filters button {
    position: relative;
    appearance: none;
    border: 0;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: transparent;
    color: rgba(247, 244, 236, 0.56);
    font-family: var(--font-mono);
    font-size: clamp(0.62rem, 0.72vw, 0.76rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
}

.portfolio-mersi__filters.is-compact button {
    min-height: 32px;
}

.portfolio-mersi__filters button::after {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 1px;
    background: var(--mersi-accent);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.portfolio-mersi__filters button:hover,
.portfolio-mersi__filters button.is-active {
    color: var(--mersi-accent);
}

.portfolio-mersi__filters button.is-active {
    background: rgba(247, 244, 236, 0.06);
}

.portfolio-mersi__filters button:hover::after,
.portfolio-mersi__filters button.is-active::after {
    transform: scaleX(1);
}

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

.portfolio-mersi__filters button:focus-visible {
    outline: 1px solid rgba(183, 155, 97, 0.72);
    outline-offset: 4px;
}

.portfolio-mersi__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px) clamp(12px, 1.4vw, 22px);
    width: min(100% - clamp(28px, 5vw, 88px), 1500px);
    margin-inline: auto;
    align-items: start;
}

.portfolio-mersi__item {
    min-width: 0;
    filter: blur(7px);
    opacity: 0;
    clip-path: inset(6% 0 0 0);
    transform: translateY(28px);
    transition: opacity 0.52s ease, transform 0.78s cubic-bezier(0.16, 0.84, 0.44, 1), filter 0.62s ease, clip-path 0.78s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: opacity, transform, clip-path;
}

.portfolio-mersi__item.is-visible {
    filter: blur(0);
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

.portfolio-mersi__item.is-filtered {
    display: none;
}

.portfolio-mersi__item.is-filtering {
    filter: blur(8px);
    opacity: 0;
    clip-path: inset(5% 0 0 0);
    transform: translateY(18px) scale(0.985);
    pointer-events: none;
}

.portfolio-mersi__card,
.portfolio-mersi__media {
    display: block;
    color: inherit;
}

.portfolio-mersi__card {
    position: relative;
    outline: 0;
    transform-origin: center top;
    will-change: clip-path, transform, filter;
}

.portfolio-mersi__card:focus-visible .portfolio-mersi__media {
    box-shadow: 0 0 0 1px rgba(183, 155, 97, 0.82), 0 0 0 7px rgba(183, 155, 97, 0.16);
}

.portfolio-mersi__media {
    position: relative;
    aspect-ratio: 4 / 4.45;
    overflow: hidden;
    background: var(--color-charcoal);
    transition: box-shadow 0.4s ease, transform 0.65s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: transform;
}

.portfolio-mersi__item.is-scroll-active .portfolio-mersi__media {
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(183, 155, 97, 0.2);
}

.portfolio-mersi__media img {
    --mersi-scroll-y: 0px;
    --mersi-hover-x: 0px;
    --mersi-hover-y: 0px;
    --mersi-img-scale: 1.01;
    --mersi-hover-scale: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05) brightness(0.9) blur(14px);
    opacity: 0.72;
    transform:
        translate3d(var(--mersi-hover-x), calc(var(--mersi-scroll-y) + var(--mersi-hover-y)), 0)
        scale(calc(var(--mersi-img-scale) + var(--mersi-hover-scale)));
    transition: opacity 0.75s ease, filter 0.75s ease;
    will-change: transform, filter, opacity;
}

.portfolio-mersi__media img.is-loaded {
    opacity: 1;
    filter: saturate(0.82) contrast(1.05) brightness(0.9) blur(0);
}

.portfolio-mersi__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    gap: 12px;
    padding: clamp(18px, 2.2vw, 34px);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.74)),
        rgba(5, 5, 5, 0.18);
    backdrop-filter: blur(2px);
    color: var(--color-white);
    opacity: 0;
    transform: scale(1.018);
    transform-origin: center;
    transition: opacity 0.38s ease, transform 0.55s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.portfolio-mersi__overlay::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(247, 244, 236, 0.08) 0 1px, transparent 1px);
    background-size: 4px 4px;
    content: "";
    opacity: 0.16;
    pointer-events: none;
}

.portfolio-mersi__overlay::after {
    position: absolute;
    top: clamp(18px, 2vw, 30px);
    right: clamp(18px, 2vw, 30px);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(247, 244, 236, 0.28);
    border-radius: 50%;
    color: var(--color-gold);
    font-family: var(--font-mono);
    content: "\2197";
    font-size: 0.92rem;
    line-height: 1;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 0.84, 0.44, 1), border-color 0.35s ease;
    pointer-events: none;
}

.portfolio-mersi__overlay strong {
    position: relative;
    z-index: 1;
    max-width: 13ch;
    font-size: clamp(1.45rem, 2.4vw, 3rem);
    font-weight: 400;
    line-height: 0.95;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.34s ease, transform 0.52s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: transform;
}

.portfolio-mersi__overlay small {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.62);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.34s ease 0.04s, transform 0.52s cubic-bezier(0.16, 0.84, 0.44, 1) 0.04s;
    will-change: transform;
}

.portfolio-mersi__card:hover img {
    --mersi-hover-scale: 0.045;
    filter: saturate(0.98) contrast(1.08) brightness(0.98) blur(0);
}

.portfolio-mersi__card:hover .portfolio-mersi__overlay {
    opacity: 1;
    transform: scale(1);
}

.portfolio-mersi__card:hover .portfolio-mersi__overlay::after,
.portfolio-mersi__card:hover .portfolio-mersi__overlay strong,
.portfolio-mersi__card:hover .portfolio-mersi__overlay small {
    opacity: 1;
    transform: translate(0, 0);
}

.portfolio-mersi__card:hover .portfolio-mersi__overlay::after {
    border-color: rgba(183, 155, 97, 0.72);
    transform: translate(3px, -3px) rotate(8deg);
}

.portfolio-mersi__caption {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0 clamp(32px, 4vw, 54px);
    color: var(--mersi-ink);
    font-size: clamp(0.76rem, 0.88vw, 0.9rem);
    line-height: 1.2;
    will-change: opacity, transform, filter;
}

.portfolio-mersi__caption strong,
.portfolio-mersi__caption span,
.portfolio-mersi__caption small {
    min-width: 0;
    font-weight: 500;
}

.portfolio-mersi__caption small {
    color: rgba(183, 155, 97, 0.72);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.portfolio-mersi__item.is-scroll-active .portfolio-mersi__caption small {
    color: var(--mersi-accent);
}

.portfolio-mersi__caption span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mersi-muted);
    text-align: right;
}

@media (max-width: 980px) {
    .portfolio-mersi__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100% - 28px, 1500px);
        gap: 26px 18px;
    }

    .portfolio-mersi__filters {
        position: relative;
        top: auto;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 18px;
    }
}

@media (max-width: 620px) {
    .portfolio-mersi__intro {
        min-height: auto;
        padding-top: calc(var(--header-height) + 54px);
        text-align: left;
    }

    .portfolio-mersi__intro .container {
        width: min(100% - 28px, 980px);
    }

    .portfolio-mersi__grid {
        grid-template-columns: 1fr;
        width: min(100% - 24px, 1500px);
        gap: 30px;
    }

    .portfolio-mersi__filters {
        width: calc(100% - 16px);
        justify-content: flex-start;
        gap: 6px;
        padding: 6px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .portfolio-mersi__caption {
        grid-template-columns: 32px minmax(0, 1fr);
        padding-bottom: 22px;
    }

    .portfolio-mersi__caption span {
        grid-column: 2;
        text-align: left;
    }

    .portfolio-mersi__overlay {
        opacity: 1;
        align-content: end;
        background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.72));
    }

    .portfolio-mersi__overlay::after {
        opacity: 1;
        transform: none;
    }

    .portfolio-mersi__overlay strong,
    .portfolio-mersi__overlay small {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-mersi__gallery {
        clip-path: none !important;
        transform: none !important;
    }
}

.portfolio-mersi.is-leaving .portfolio-mersi__intro,
.portfolio-mersi.is-leaving .portfolio-mersi__filters,
.portfolio-mersi.is-leaving .portfolio-mersi__grid {
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.38s ease, transform 0.62s cubic-bezier(0.7, 0, 0.3, 1);
}

.portfolio-flight {
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    transform-origin: center;
}

.portfolio-flight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-transition {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    pointer-events: none;
    overflow: hidden;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
}

.work-transition.is-entering,
.work-transition.is-leaving {
    opacity: 1;
    visibility: visible;
}

.work-transition.is-done {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.42s ease, visibility 0.42s ease;
}

.work-transition__scrim {
    position: absolute;
    inset: 0;
    background: #050505;
    opacity: 0;
}

.work-transition__image-wrap {
    position: absolute;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48);
    transform-origin: center center;
    will-change: left, top, width, height;
}

.work-transition__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05) brightness(0.8);
    transform: scale(1.02);
    will-change: transform, filter;
}

.work-transition__copy {
    position: absolute;
    left: clamp(24px, 6vw, 88px);
    right: clamp(24px, 6vw, 88px);
    bottom: clamp(34px, 7vw, 96px);
    z-index: 3;
    display: grid;
    gap: 14px;
    max-width: 720px;
    opacity: 0;
    will-change: opacity, transform, filter;
}

.work-transition__index {
    width: max-content;
    color: var(--color-gold);
    font-family: var(--font-mono);
    font-size: clamp(0.68rem, 0.82vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.work-transition__title {
    color: var(--color-white);
    font-size: clamp(2.4rem, 7.2vw, 7.4rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.62);
}

.work-transition.is-entering {
    background: #050505;
    animation: workTransitionEnter 0.95s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.work-transition.is-entering .work-transition__scrim {
    opacity: 1;
}

.work-transition.is-entering .work-transition__image-wrap {
    inset: 0;
}

.work-transition.is-entering .work-transition__image {
    filter: saturate(0.86) contrast(1.08) brightness(0.52);
    transform: scale(1.08);
}

.work-transition.is-entering .work-transition__copy {
    opacity: 1;
}

@keyframes workTransitionEnter {
    0% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }

    100% {
        clip-path: inset(0 0 100% 0);
        opacity: 1;
    }
}

@media (max-width: 860px) {
    .work-transition__copy {
        left: 22px;
        right: 22px;
        bottom: clamp(34px, 10svh, 72px);
        max-width: 92vw;
    }

    .work-transition__title {
        font-size: clamp(2.55rem, 15vw, 5rem);
    }
}

@media (max-width: 860px) {
    .project-cover__bottom,
    .project-brief__inner,
    .project-info__inner {
        grid-template-columns: 1fr;
    }

    .project-cover h1 {
        font-size: clamp(3.2rem, 18vw, 5.8rem);
    }

    .project-cover__meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        padding: 18px;
    }

    .project-frame,
    .project-frame--wide,
    .project-frame--tall,
    .project-frame--video {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 5;
    }

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

    .project-frame__expand {
        opacity: 1;
        transform: none;
    }

    .project-page--editorial .project-nav__inner {
        grid-template-columns: 1fr;
        gap: clamp(14px, 3vw, 22px);
    }

    .project-page--editorial .project-nav__back {
        min-height: clamp(150px, 26vw, 210px);
        padding: clamp(24px, 5vw, 38px);
        border-right: 1px solid rgba(247, 244, 236, 0.08);
    }

    .project-nav__back::before {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }
}

@media (max-width: 560px) {
    .project-cover__meta,
    .project-info ul {
        grid-template-columns: 1fr;
    }

    .project-brief__lede {
        font-size: clamp(1.7rem, 10vw, 2.6rem);
    }
}

.page-shell {
    padding-top: var(--header-height);
}

.page-hero {
    padding: 96px 0 48px;
}

.page-content {
    max-width: 820px;
    padding-bottom: var(--section-spacing);
    color: rgba(247, 244, 236, 0.78);
}

.contact-page {
    background: #050505;
    color: var(--color-white);
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: visible;
}

.contact-hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
    isolation: isolate;
    padding: calc(var(--header-height) + clamp(74px, 9vw, 124px)) 0 clamp(64px, 8vw, 108px);
}

.contact-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.contact-hero__media::before,
.contact-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.contact-hero__media::before {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.9)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.98) 94%);
    z-index: 1;
}

.contact-hero__media::after {
    background: linear-gradient(180deg, transparent, #050505);
    opacity: 0.92;
    z-index: 2;
}

.contact-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.18) brightness(0.68) contrast(1.05);
    transform: scale(1.02);
}

.contact-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: start;
}

.contact-hero__copy {
    min-width: 0;
}

.contact-hero__copy h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3.6rem, 7.8vw, 7.8rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: 0;
}

.contact-panel {
    position: relative;
    padding: clamp(66px, 8vw, 118px) 0 clamp(62px, 7vw, 98px);
    background:
        linear-gradient(180deg, #050505, #080908 64%, #050505),
        var(--color-black);
}

.contact-panel::before {
    display: none;
}

.contact-panel__inner {
    display: grid;
    grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: start;
}

.contact-panel__info {
    position: sticky;
    top: calc(var(--header-height) + 42px);
    display: grid;
    gap: 28px;
}

.contact-panel__info h2 {
    max-width: 560px;
    margin: 0;
    color: rgba(247, 244, 236, 0.9);
    font-size: clamp(1.65rem, 2.8vw, 3rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: 0;
}

.contact-response {
    display: grid;
    gap: 7px;
    max-width: 320px;
    padding: 18px 20px;
    border-radius: 4px;
    background: rgba(247, 244, 236, 0.045);
}

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

.contact-methods a,
.contact-methods div {
    display: grid;
    gap: 7px;
    padding: 16px 18px;
    border-radius: 4px;
    background: rgba(247, 244, 236, 0.045);
    border: 1px solid rgba(247, 244, 236, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-methods a:hover {
    background: rgba(247, 244, 236, 0.075);
    border-color: rgba(183, 155, 97, 0.28);
    transform: translateY(-2px);
}

.contact-methods span {
    color: var(--color-gold);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-methods strong {
    color: rgba(247, 244, 236, 0.84);
    font-size: 0.98rem;
    font-weight: 400;
}

.contact-response span,
.contact-form label > span,
.contact-details article > span {
    color: var(--color-gold);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-response strong {
    color: rgba(247, 244, 236, 0.84);
    font-size: 1rem;
    font-weight: 400;
}

.contact-form {
    display: grid;
    gap: 20px;
    padding: clamp(24px, 3vw, 38px);
    border-radius: 6px;
    background:
        linear-gradient(145deg, rgba(247, 244, 236, 0.075), rgba(247, 244, 236, 0.025)),
        rgba(7, 8, 7, 0.72);
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(247, 244, 236, 0.1);
}

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

.contact-form label {
    display: grid;
    gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-radius: 4px;
    background: rgba(247, 244, 236, 0.075);
    color: var(--color-white);
    min-height: 52px;
    padding: 14px 16px;
    outline: none;
    font: inherit;
    font-size: 0.98rem;
    line-height: 1.4;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(247, 244, 236, 0.36);
}

.contact-form select {
    appearance: none;
    min-height: 50px;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(247, 244, 236, 0.74) 50%),
        linear-gradient(135deg, rgba(247, 244, 236, 0.74) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form select option {
    background: #111;
    color: var(--color-white);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: rgba(247, 244, 236, 0.11);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-form .button {
    width: max-content;
    margin-top: 10px;
    border: 0;
    box-shadow: 0 18px 42px rgba(183, 155, 97, 0.16);
}

.contact-details {
    padding: 0 0 clamp(84px, 10vw, 142px);
    background: #050505;
}

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

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

.contact-details article {
    min-height: 190px;
    display: grid;
    align-content: end;
    gap: 12px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 6px;
    background: rgba(247, 244, 236, 0.045);
}

.contact-details h3 {
    margin: 0;
    color: rgba(247, 244, 236, 0.92);
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
    font-weight: 300;
    line-height: 1.18;
}

.contact-details p {
    margin: 0;
    color: rgba(247, 244, 236, 0.58);
    font-size: 0.94rem;
    line-height: 1.6;
}

.contact-details a {
    color: rgba(247, 244, 236, 0.78);
    text-decoration: none;
    transition: color 0.24s ease;
}

.contact-details a:hover {
    color: var(--color-gold);
}

.site-footer {
    border-top: 1px solid rgba(247, 244, 236, 0.1);
    padding: 24px 0;
    background: #030303;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.site-footer__copyright {
    margin: 0;
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    :root {
        --header-height: 58px;
    }

    .container {
        width: min(100% - 28px, var(--container-width));
    }

    .site-header__toggle {
        display: inline-block;
    }

    .site-header__menu {
        width: 100%;
        margin-inline: auto;
    }

    .site-header__nav {
        overflow-y: auto;
        padding: calc(var(--header-height) + 36px) 0 32px;
    }

    .site-header__nav-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
        width: min(100% - 28px, var(--container-width));
        padding-top: 0;
    }

    .site-header__nav-label {
        margin-bottom: 20px;
    }

    .site-header__nav .site-header__menu a {
        gap: 0;
        padding: 11px 0;
        font-size: clamp(1.25rem, 6vw, 1.9rem);
        font-weight: 200;
    }

    .site-header__nav .site-header__menu a::before {
        display: none;
    }

    .site-header__nav .site-header__menu a:hover {
        transform: none;
    }

    .site-header__nav-aside {
        max-width: 100%;
        padding: 4px 0 0;
        border-left: 0;
        font-size: 0.8rem;
    }

    .site-header__nav-meta {
        margin-top: 20px;
    }

    .hero {
        min-height: 92svh;
        padding-bottom: 64px;
    }

    .hero--video {
        min-height: 100svh;
        padding: 0;
    }

    .hero__video {
        object-position: var(--hero-video-position-mobile);
    }

    .project-grid,
    .split-section__inner,
    .about-approach__inner,
    .about-approach__grid,
    .about-visual-story__inner,
    .about-people__inner,
    .about-roster,
    .about-clients-inline,
    .gallery-hero__inner {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: 78svh;
        padding: calc(var(--header-height) + 34px) 0 48px;
    }

    .about-hero h1 {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .about-overview {
        margin-top: -38px;
        padding-bottom: 72px;
    }

    .about-overview__inner {
        min-height: auto;
        display: block;
    }

    .about-overview__media {
        position: relative;
        aspect-ratio: 4 / 5;
    }

    .about-overview__copy {
        width: 100%;
        margin: 0;
        padding: 28px 0 0;
        background: transparent;
        backdrop-filter: none;
        text-shadow: none;
    }

    .about-overview__copy p:first-child {
        font-size: clamp(1.45rem, 7vw, 2.45rem);
        line-height: 1.08;
    }

    .about-approach {
        padding: 76px 0 84px;
    }

    .about-approach::before {
        display: none;
    }

    .about-approach__inner {
        gap: 36px;
    }

    .about-approach__heading h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .about-approach__grid {
        gap: 34px;
    }

    .about-approach__grid article {
        min-height: auto;
        padding-right: 0;
        transform: none;
    }

    .about-approach__grid article:nth-child(even),
    .about-approach__grid article:hover,
    .about-approach__grid article:nth-child(even):hover {
        transform: none;
    }

    .about-approach__grid article::before {
        display: none;
    }

    .about-approach__grid h3 {
        font-size: 1.35rem;
    }

    .about-approach__grid p {
        font-size: 0.96rem;
    }

    .about-visual-story {
        padding: 76px 0;
    }

    .about-visual-story__inner {
        gap: 34px;
    }

    .about-visual-story__copy {
        max-width: 100%;
    }

    .about-visual-story__copy h2 {
        font-size: clamp(2rem, 9.6vw, 3.1rem);
    }

    .about-visual-story__media {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .about-visual-story__frame {
        position: relative;
    }

    .about-visual-story__frame--large {
        inset: auto;
        aspect-ratio: 4 / 5;
    }

    .about-visual-story__frame--small {
        right: auto;
        bottom: auto;
        width: 72%;
        aspect-ratio: 16 / 10;
        justify-self: end;
        box-shadow: none;
    }

    .about-people__inner {
        gap: 42px;
    }

    .about-people__heading,
    .about-people__heading h2,
    .about-people__heading p:not(.eyebrow) {
        max-width: 100%;
    }

    .about-roster article {
        min-height: auto;
        padding: 16px 0 16px 36px;
    }

    .about-roster article::before {
        bottom: 24px;
    }

    .about-clients-inline {
        grid-column: auto;
        margin-top: 28px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .about-clients-inline__label {
        width: min(100% - 28px, var(--container-width));
    }

    .client-logo-banner {
        padding: 0;
    }

    .client-logo-banner img {
        width: 100%;
        max-height: none;
    }

    .portfolio-intro {
        padding: calc(var(--header-height) + 72px) 0 64px;
    }

    .portfolio-intro__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .portfolio-intro__counter {
        text-align: left;
    }

    .portfolio-intro__title {
        font-size: clamp(2.6rem, 12vw, 4.4rem);
    }

    .portfolio-intro__meta {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .portfolio-showcase {
        padding: 70px 0 40px;
    }

    .showcase-row {
        margin-bottom: 100px;
    }

    .showcase-row__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .showcase-row--feature .showcase-piece,
    .showcase-row--duet .showcase-piece,
    .showcase-row--duet-rev .showcase-piece,
    .showcase-row--spotlight .showcase-piece {
        grid-column: auto;
        padding-bottom: 0;
    }

    .showcase-row--feature .showcase-piece__media {
        aspect-ratio: 4 / 3;
    }

    .showcase-row--feature .showcase-piece__caption {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .showcase-row--feature .showcase-piece__title,
    .showcase-row--feature .showcase-piece__lede {
        grid-column: auto;
    }

    .showcase-row--duet .showcase-piece:first-child .showcase-piece__media,
    .showcase-row--duet .showcase-piece:last-child .showcase-piece__media,
    .showcase-row--duet-rev .showcase-piece:first-child .showcase-piece__media,
    .showcase-row--duet-rev .showcase-piece:last-child .showcase-piece__media {
        aspect-ratio: 4 / 3;
    }

    .portfolio-archive {
        padding: 80px 0;
    }

    .portfolio-archive__head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .archive-list a {
        grid-template-columns: 40px 1fr auto;
        gap: 18px;
        padding: 22px 0;
    }

    .archive-list a:hover {
        padding-left: 8px;
        padding-right: 8px;
    }

    .archive-list__type {
        display: none;
    }

    .archive-list__arrow {
        display: none;
    }

    .archive-preview {
        display: none;
    }

    .portfolio-closing {
        padding: 80px 0;
    }

    .portfolio-closing h2 {
        font-size: clamp(2rem, 9.8vw, 3.2rem);
    }

    /* Project detail responsive */
    .project-hero__inner {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .project-hero__title {
        font-size: clamp(2.4rem, 10vw, 4rem) !important;
    }

    .project-intro__inner {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .project-intro__meta {
        position: static !important;
        grid-template-columns: 1fr 1fr;
    }

    .project-approach__grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .project-specs__list {
        grid-template-columns: 1fr !important;
    }

    .project-nav__inner {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .project-nav__next {
        text-align: left !important;
    }

    .project-gallery--duo {
        grid-template-columns: 1fr !important;
    }

    .section__header {
        margin-bottom: 36px;
    }

    .site-footer__inner {
        justify-content: center;
    }

    .contact-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 50px) 0 48px;
    }

    .contact-hero__inner,
    .contact-panel__inner,
    .contact-details__inner {
        grid-template-columns: 1fr;
    }

    .contact-details__inner--four {
        grid-template-columns: 1fr;
    }

    .contact-hero__copy h1 {
        font-size: clamp(2.75rem, 12.6vw, 4.7rem);
        line-height: 0.96;
        overflow-wrap: break-word;
    }

    .contact-hero__copy {
        width: 100%;
        max-width: calc(100vw - 28px);
    }

    .contact-panel__info {
        position: static;
    }

    .contact-panel {
        padding: 48px 0 58px;
    }

    .contact-panel__info h2 {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
        line-height: 1.16;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .contact-form .button {
        width: 100%;
        justify-content: center;
    }

    .contact-details article {
        min-height: 0;
    }
}

@media (min-width: 861px) {
    .site-header__toggle {
        display: inline-block;
    }
}

/* ================================================================
   MOBILE — Comprehensive redesign for small screens
   ================================================================ */

/* ----------------------------------------------------------
   PORTFOLIO — Fix GSAP inline clip-path causing blank gap.
   The gallery animation uses clip-path for a scroll reveal,
   but on mobile it clips out the filters and top of the grid,
   producing a large invisible region. Override it.
   Also: disable parallax and will-change on images — both
   cause GPU compositing at reduced resolution on mobile,
   making images appear soft/blurry.
   ---------------------------------------------------------- */
@media (max-width: 860px) {
    /* The overlay covers the full image with inset:0 and has
       backdrop-filter: blur(2px) — on mobile it's always visible
       (opacity:1), so the entire image gets blurred 2px through it.
       Remove the backdrop-filter on mobile. */
    .portfolio-mersi__overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Remove GSAP-applied filter from card — even blur(0px) creates
       a GPU compositing layer that renders at reduced resolution on mobile */
    .portfolio-mersi__card {
        filter: none !important;
        will-change: auto !important;
    }

    .portfolio-mersi__item {
        filter: none !important;
        will-change: auto !important;
    }

    .portfolio-mersi__media,
    .portfolio-mersi__media img {
        will-change: auto !important;
    }

    .portfolio-mersi__media img {
        transform: none !important;
        filter: saturate(0.85) contrast(1.04) brightness(0.92) !important;
        opacity: 1 !important;
        transition: none;
    }

    .portfolio-mersi__media img.is-loaded {
        filter: saturate(0.85) contrast(1.04) brightness(0.92) !important;
        opacity: 1 !important;
    }
    .portfolio-mersi__gallery {
        clip-path: none !important;
        transform: none !important;
    }

    .portfolio-mersi__filters {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px;
        margin: 0 0 clamp(22px, 4vw, 36px);
        padding: 4px;
        border-radius: 8px;
        backdrop-filter: none;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .portfolio-mersi__filters button {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.7rem;
        letter-spacing: 0.16em;
        border: 1px solid rgba(247, 244, 236, 0.14);
        border-radius: 999px;
        background: rgba(247, 244, 236, 0.04);
    }

    .portfolio-mersi__filters button.is-active {
        background: rgba(183, 155, 97, 0.14);
        border-color: rgba(183, 155, 97, 0.48);
        color: var(--color-gold);
    }

    /* Project cover hero title — reduce from 18vw (67px at 375px) */
    .project-cover h1 {
        font-size: clamp(2.6rem, 13vw, 4.8rem);
    }

    /* Project nav bottom — full-width stack */
    .project-page--editorial .project-nav__inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .project-page--editorial .project-nav__back {
        min-height: 142px;
        padding: 24px 20px;
        border: 1px solid rgba(247, 244, 236, 0.1);
        border-bottom-color: rgba(247, 244, 236, 0.14);
    }

    .project-page--editorial .project-nav__back::before {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        font-size: 1.05rem;
    }

    .project-page--editorial .project-nav__back .project-nav__title {
        max-width: 100%;
        font-size: clamp(1.45rem, 7vw, 2.15rem);
    }

    .project-nav__next--visual {
        padding: 0;
        min-height: 220px;
        position: relative;
        overflow: hidden;
        display: grid;
        align-items: end;
    }

    .project-nav__next--visual img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.55;
        filter: brightness(0.7) saturate(0.8);
    }

    .project-nav__next--visual .project-nav__next-copy {
        position: relative;
        z-index: 2;
        padding: clamp(20px, 4vw, 32px);
        text-align: left;
    }

    .project-nav__next--visual .project-nav__title {
        justify-self: start;
        color: var(--color-white);
    }
}

/* ----------------------------------------------------------
   PORTFOLIO — Tighten intro on small phones
   ---------------------------------------------------------- */
@media (max-width: 620px) {
    .portfolio-mersi__intro {
        padding-top: calc(var(--header-height) + 36px);
        padding-bottom: 28px;
    }

    .portfolio-mersi__intro h1 {
        font-size: clamp(1.35rem, 4.8vw, 1.75rem);
        max-width: 100%;
    }

    .portfolio-mersi__gallery {
        padding-bottom: clamp(56px, 9vw, 96px);
    }
}

/* ----------------------------------------------------------
   PROJECT / CONTACT — Reduce oversized headings on phones
   ---------------------------------------------------------- */
@media (max-width: 560px) {
    /* Project cover — was clamp(3.2rem, 18vw, 5.8rem) */
    .project-cover h1 {
        font-size: clamp(2.2rem, 11.5vw, 3.6rem);
    }

    /* Project brief quote — was clamp(1.7rem, 10vw, 2.6rem) */
    .project-brief__lede {
        font-size: clamp(1.35rem, 7vw, 1.9rem);
        line-height: 1.28;
    }

    /* Project gallery gap */
    .project-visuals__grid {
        gap: 10px;
    }

    /* Project info items horizontal on small phone */
    .project-info ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Contact hero — was clamp(3.15rem, 16vw, 5.5rem) */
    .contact-hero__copy h1 {
        font-size: clamp(2.35rem, 11vw, 3.45rem);
        line-height: 0.98;
    }

    /* Contact hero less top padding on small phones */
    .contact-hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 42px);
    }

    /* About hero heading */
    .about-hero h1 {
        font-size: clamp(2.2rem, 10.5vw, 3.6rem);
    }

    /* About overview first paragraph */
    .about-overview__copy p:first-child {
        font-size: clamp(1.3rem, 6.5vw, 2.1rem);
    }

    /* Tighten section spacing on phone */
    :root {
        --section-spacing: clamp(56px, 9vw, 88px);
    }
}

/* ─── HEADER SOCIAL LINKS ────────────────────────────────────────────────────*/
.site-header__nav-social {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    margin-top: 16px;
}

.site-header__nav-social a {
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 244, 236, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.site-header__nav-social a:hover {
    color: #f7f4ec;
}

/* ─── CLIENT LOGO GRID ───────────────────────────────────────────────────────*/
.client-logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 64px);
    padding: clamp(28px, 4vw, 52px) clamp(32px, 6vw, 100px);
    position: relative;
    z-index: 2;
}
.client-logo-grid img {
    height: clamp(22px, 2.8vw, 38px);
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.45;
    filter: grayscale(1) brightness(2);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.client-logo-grid img:hover {
    opacity: 0.9;
    filter: grayscale(0) brightness(1);
}

@media (max-width: 600px) {
    .client-logo-grid { gap: clamp(20px, 6vw, 36px); padding: 24px 20px; }
    .client-logo-grid img { height: clamp(18px, 5vw, 28px); max-width: 100px; }
}

/* =============================================================
   Reel Motion landing page
   ============================================================= */
.reel-motion-page {
    --reel-surface: #0b0c0b;
    --reel-surface-soft: #141511;
    --reel-border: rgba(247, 244, 236, 0.12);
    --reel-copy: rgba(247, 244, 236, 0.74);
    --reel-accent: #8fa18a;
    --reel-accent-strong: #d8e3d3;
    --reel-accent-rgb: 143, 161, 138;
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.reel-motion-page .eyebrow {
    margin: 0 0 18px;
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-motion-page a:focus-visible,
.reel-motion-page button:focus-visible,
.reel-motion-page summary:focus-visible {
    outline-color: rgba(var(--reel-accent-rgb), 0.9);
}

.reel-motion-page .button--primary {
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-black);
}

.reel-motion-page .button--primary:hover {
    border-color: var(--reel-accent-strong);
    background: var(--reel-accent-strong);
}

.reel-motion-page .button--outline:hover {
    border-color: var(--reel-accent);
    color: var(--reel-accent-strong);
}

.reel-hero {
    position: relative;
    display: grid;
    min-height: 760px;
    align-items: end;
    padding: calc(var(--header-height) + 92px) 0 82px;
    isolation: isolate;
}

.reel-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: var(--color-black);
}

.reel-hero__bg::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.46) 54%, rgba(5, 5, 5, 0.82)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.88));
    content: "";
}

.reel-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.06);
    opacity: 0.78;
}

.reel-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 64px;
    align-items: end;
}

.reel-hero__copy {
    max-width: 760px;
}

.reel-hero h1,
.reel-section__header h2,
.reel-cta h2 {
    letter-spacing: 0;
}

.reel-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: 4.6rem;
    line-height: 0.95;
}

.reel-hero__copy > p:last-of-type {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--reel-copy);
    font-size: 1.12rem;
    line-height: 1.72;
}

.reel-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.reel-hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    border: 1px solid var(--reel-border);
    background: rgba(5, 5, 5, 0.42);
    backdrop-filter: blur(18px);
}

.reel-hero__facts div {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 18px;
    min-height: 76px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--reel-border);
}

.reel-hero__facts div:last-child {
    border-bottom: 0;
}

.reel-hero__facts dt,
.reel-hero__facts dd {
    margin: 0;
}

.reel-hero__facts dt {
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reel-hero__facts dd {
    color: var(--color-white);
    font-weight: 600;
}

.reel-section {
    position: relative;
    padding: 118px 0;
    background: var(--color-black);
}

.reel-section + .reel-section {
    border-top: 1px solid rgba(247, 244, 236, 0.08);
}

.reel-section__header {
    max-width: 780px;
    margin-bottom: 52px;
}

.reel-section__header h2 {
    margin: 0;
    font-size: 3.3rem;
    line-height: 1.02;
}

.reel-section__header > p:not(.eyebrow),
.reel-section__header--split > p,
.reel-section__header--center > p {
    color: var(--reel-copy);
    line-height: 1.7;
}

.reel-section__header--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: 56px;
    align-items: end;
}

.reel-section__header--split > p {
    margin: 0;
    font-size: 1rem;
}

.reel-section__header--center {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.reel-section__header--center p:last-child {
    margin: 18px auto 0;
}

.reel-process {
    background: var(--reel-surface);
}

.reel-process__grid,
.reel-why__grid,
.reel-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reel-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reel-process article,
.reel-why article,
.reel-price-card {
    min-height: 100%;
    border: 1px solid var(--reel-border);
    background: rgba(247, 244, 236, 0.035);
}

.reel-process article {
    padding: 30px 24px 28px;
}

.reel-process article span {
    display: block;
    margin-bottom: 44px;
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
}

.reel-process h3,
.reel-why h3,
.reel-price-card h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    line-height: 1.28;
}

.reel-process p,
.reel-why p,
.reel-price-card p {
    margin: 0;
    color: var(--reel-copy);
    line-height: 1.68;
}

.reel-samples {
    background: var(--color-black);
}

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

.reel-sample {
    border: 1px solid var(--reel-border);
    background: var(--reel-surface-soft);
}

.reel-sample__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--reel-border);
}

.reel-sample figure {
    position: relative;
    margin: 0;
    aspect-ratio: 9 / 12;
    overflow: hidden;
    background: var(--color-charcoal);
}

.reel-sample img,
.reel-sample video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.reel-sample figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 9px;
    background: rgba(5, 5, 5, 0.68);
    color: rgba(247, 244, 236, 0.84);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reel-sample__caption {
    display: grid;
    gap: 6px;
    padding: 20px;
}

.reel-sample__caption strong {
    font-size: 1.05rem;
}

.reel-sample__caption span {
    color: var(--color-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.reel-why {
    background: var(--reel-surface);
}

.reel-why article {
    padding: 34px 30px 32px;
}

.reel-why__icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 32px;
    border: 1px solid rgba(var(--reel-accent-rgb), 0.42);
    color: var(--reel-accent-strong);
}

.reel-why__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.reel-pricing {
    background: var(--color-black);
}

.reel-price-card {
    position: relative;
    padding: 34px 28px 30px;
}

.reel-price-card--featured {
    border-color: rgba(var(--reel-accent-rgb), 0.74);
    background:
        linear-gradient(180deg, rgba(var(--reel-accent-rgb), 0.14), rgba(247, 244, 236, 0.035)),
        var(--reel-surface-soft);
}

.reel-price-card__label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    margin-bottom: 22px;
    padding: 0 10px;
    border: 1px solid rgba(var(--reel-accent-rgb), 0.48);
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reel-price-card > strong {
    display: block;
    margin: 6px 0 22px;
    color: var(--color-white);
    font-size: 2.4rem;
    line-height: 1;
}

.reel-price-card ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.reel-price-card li {
    position: relative;
    min-height: 24px;
    padding-left: 24px;
    color: rgba(247, 244, 236, 0.78);
    line-height: 1.5;
}

.reel-price-card li::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border: 1px solid var(--reel-accent);
    content: "";
    transform: rotate(45deg);
}

.reel-pricing__note {
    max-width: 760px;
    margin: 30px auto 0;
    color: var(--color-muted);
    text-align: center;
    line-height: 1.7;
}

.reel-cta {
    border-top: 1px solid rgba(var(--reel-accent-rgb), 0.3);
    border-bottom: 1px solid rgba(var(--reel-accent-rgb), 0.18);
    background:
        linear-gradient(90deg, rgba(var(--reel-accent-rgb), 0.18), rgba(5, 5, 5, 0.9)),
        var(--reel-surface);
    text-align: center;
}

.reel-cta__inner {
    max-width: 850px;
}

.reel-cta h2 {
    margin: 0 auto;
    font-size: 3.6rem;
    line-height: 1.02;
}

.reel-cta p:not(.eyebrow) {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--reel-copy);
    line-height: 1.74;
}

.reel-cta__button {
    margin-top: 34px;
}

.reel-cta__email a,
.reel-footer a {
    color: var(--reel-accent-strong);
}

.reel-faq {
    background: var(--color-black);
}

.reel-faq__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.reel-faq__list {
    display: grid;
    gap: 10px;
}

.reel-faq details {
    border: 1px solid var(--reel-border);
    background: rgba(247, 244, 236, 0.035);
}

.reel-faq summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    color: var(--color-white);
    font-weight: 700;
    cursor: pointer;
}

.reel-faq summary::-webkit-details-marker {
    display: none;
}

.reel-faq summary::after {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-3px);
    transition: transform 0.22s ease;
}

.reel-faq details[open] summary::after {
    transform: rotate(225deg) translateY(-3px);
}

.reel-faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--reel-copy);
    line-height: 1.74;
}

.reel-footer {
    padding: 48px 0;
    border-top: 1px solid rgba(247, 244, 236, 0.08);
    background: var(--reel-surface);
}

.reel-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.reel-footer p {
    max-width: 480px;
    margin: 0;
    color: rgba(247, 244, 236, 0.82);
    line-height: 1.6;
}

.reel-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.reel-footer a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .reel-hero {
        min-height: 700px;
    }

    .reel-hero__inner,
    .reel-section__header--split,
    .reel-faq__inner {
        grid-template-columns: 1fr;
    }

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

    .reel-hero__facts div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .reel-hero__facts div:nth-child(2) {
        border-bottom: 1px solid var(--reel-border);
    }

    .reel-process__grid,
    .reel-why__grid,
    .reel-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .reel-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 62px) 0 58px;
    }

    .reel-hero h1 {
        font-size: 3rem;
        line-height: 1;
    }

    .reel-hero__copy > p:last-of-type {
        font-size: 1rem;
    }

    .reel-hero__actions {
        flex-direction: column;
    }

    .reel-hero__actions .button,
    .reel-cta__button {
        width: 100%;
    }

    .reel-hero__facts,
    .reel-process__grid,
    .reel-samples__grid,
    .reel-why__grid,
    .reel-pricing__grid {
        grid-template-columns: 1fr;
    }

    .reel-section {
        padding: 76px 0;
    }

    .reel-section__header {
        margin-bottom: 34px;
    }

    .reel-section__header h2,
    .reel-cta h2 {
        font-size: 2.35rem;
        line-height: 1.08;
    }

    .reel-sample__media {
        grid-template-columns: 1fr;
    }

    .reel-sample figure {
        aspect-ratio: 4 / 5;
    }

    .reel-footer__inner {
        grid-template-columns: 1fr;
    }

    .reel-footer__links {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .reel-hero h1 {
        font-size: 2.5rem;
    }

    .reel-hero__facts {
        margin-top: 18px;
    }

    .reel-price-card > strong {
        font-size: 2rem;
    }

    .reel-faq summary {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reel-faq summary::after,
    .reel-motion-page .button {
        transition: none;
    }
}

/* =============================================================
   Reel Motion — EDV editorial pass
   ============================================================= */
.reel-motion-page {
    --reel-accent: #8fa18a;
    --reel-accent-strong: #d8e3d3;
    --reel-accent-rgb: 143, 161, 138;
    --reel-surface: #080908;
    --reel-surface-soft: #10120f;
    --reel-border: rgba(247, 244, 236, 0.12);
    --reel-copy: rgba(247, 244, 236, 0.66);
    background:
        linear-gradient(180deg, #050505 0%, #0a0c09 46%, #050505 100%);
}

body:has(.reel-motion-page) .site-header.is-scrolled,
body:has(.reel-motion-page) .site-header.is-open {
    background: rgba(5, 5, 5, 0.18);
    backdrop-filter: blur(14px);
}

.reel-motion-page .eyebrow {
    margin: 0 0 18px;
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reel-motion-page .button--primary {
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-black);
}

.reel-motion-page .button--primary:hover {
    border-color: var(--reel-accent-strong);
    background: var(--reel-accent-strong);
}

.reel-motion-page .button--outline:hover {
    border-color: var(--reel-accent);
    color: var(--reel-accent-strong);
}

.reel-hero {
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    padding: calc(var(--header-height) + 48px) 0 64px;
    overflow: hidden;
}

.reel-hero__bg::after {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.46) 0%, rgba(5, 5, 5, 0.14) 36%, rgba(5, 5, 5, 0.9) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.28) 52%, rgba(5, 5, 5, 0.72) 100%);
}

.reel-hero__bg img {
    height: 112%;
    object-position: center center;
    filter: saturate(0.72) contrast(1.12) brightness(0.78);
    transform: scale(1.04);
}

.reel-hero__inner {
    min-height: calc(100svh - var(--header-height) - 112px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 54px;
}

.reel-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 0;
    color: rgba(247, 244, 236, 0.62);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reel-hero__breadcrumb span + span::before {
    margin-right: 22px;
    color: rgba(247, 244, 236, 0.28);
    content: "/";
}

.reel-hero__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
    gap: 56px;
    align-items: end;
}

.reel-hero__copy {
    max-width: 930px;
}

.reel-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--color-white);
    font-size: 5.8rem;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.76);
}

.reel-hero__copy > p:last-of-type {
    max-width: 640px;
    margin-top: 28px;
    color: rgba(247, 244, 236, 0.72);
    font-size: 1rem;
    line-height: 1.76;
}

.reel-hero__actions {
    gap: 12px;
    margin-top: 34px;
}

.reel-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    border-top: 1px solid rgba(247, 244, 236, 0.2);
    border-bottom: 1px solid rgba(247, 244, 236, 0.14);
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: none;
}

.reel-hero__facts div {
    min-height: 92px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    padding: 20px 22px;
    border-bottom: 0;
    border-right: 1px solid rgba(247, 244, 236, 0.1);
}

.reel-hero__facts div:nth-child(2n) {
    border-right: 0;
}

.reel-hero__facts div:nth-child(n + 3) {
    border-top: 1px solid rgba(247, 244, 236, 0.1);
}

.reel-hero__facts dt {
    color: rgba(247, 244, 236, 0.48);
    font-size: 0.68rem;
    letter-spacing: 0;
}

.reel-hero__facts dd {
    font-size: 1rem;
    font-weight: 500;
}

.reel-section {
    padding: 126px 0;
}

.reel-section__header h2,
.reel-cta h2 {
    color: var(--color-white);
    font-size: 4.4rem;
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 0;
    text-wrap: balance;
}

.reel-section__header--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.55fr);
    align-items: end;
}

.reel-process {
    border-top: 1px solid rgba(247, 244, 236, 0.1);
    background: var(--color-black);
}

.reel-process .container {
    display: grid;
    grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.reel-process .reel-section__header {
    position: sticky;
    top: calc(var(--header-height) + 54px);
    margin: 0;
}

.reel-process .reel-section__header h2 {
    font-size: 3.2rem;
    line-height: 1;
}

.reel-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--reel-border);
}

.reel-process article {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    padding: 28px 28px 30px;
    border: 0;
    border-right: 1px solid var(--reel-border);
    border-bottom: 1px solid var(--reel-border);
    background: transparent;
}

.reel-process article:nth-child(2n) {
    border-right: 0;
}

.reel-process article span {
    margin-bottom: 48px;
    color: var(--reel-accent-strong);
    letter-spacing: 0;
}

.reel-process h3,
.reel-why h3,
.reel-price-card h3 {
    font-weight: 400;
    letter-spacing: 0;
}

.reel-samples {
    padding-top: 0;
    padding-bottom: 0;
    background:
        linear-gradient(180deg, #050505 0%, #0a0c09 44%, #050505 100%);
    overflow: visible;
}

.reel-samples .container {
    width: min(100% - 40px, 1280px);
}

.reel-samples .reel-section__header {
    padding: 118px 0 72px;
    margin-bottom: 0;
}

.reel-samples__grid {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.reel-sample {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 660px;
    overflow: hidden;
    border: 0;
    background: #050505;
    clip-path: inset(0);
    transform-origin: center top;
    will-change: transform, filter, clip-path;
}

.reel-sample + .reel-sample {
    margin-top: -1px;
}

.reel-sample__media {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(247, 244, 236, 0.08);
}

.reel-sample__media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.03) 42%, rgba(5, 5, 5, 0.82) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.48) 0%, transparent 24%, transparent 76%, rgba(5, 5, 5, 0.46) 100%);
    content: "";
    pointer-events: none;
}

.reel-sample figure {
    height: 100%;
    aspect-ratio: auto;
    background: #050505;
}

.reel-sample img,
.reel-sample video {
    height: 112%;
    filter: brightness(0.82) saturate(0.78) contrast(1.05);
    transform: scale(1.045);
    will-change: transform, filter;
}

.reel-sample figcaption {
    z-index: 4;
    left: clamp(20px, 3.2vw, 52px);
    top: clamp(86px, 10vw, 132px);
    bottom: auto;
    padding: 0;
    background: transparent;
    color: rgba(247, 244, 236, 0.62);
    letter-spacing: 0;
}

.reel-sample figure + figure figcaption {
    left: calc(50% + clamp(20px, 3.2vw, 52px));
}

.reel-sample__caption {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: minmax(44px, 0.16fr) minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
    padding: 42px clamp(28px, 6vw, 86px) 58px;
    pointer-events: none;
}

.reel-sample__num {
    color: rgba(247, 244, 236, 0.58);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 0.72em;
}

.reel-sample__caption strong {
    max-width: 10ch;
    color: var(--color-white);
    font-size: 6.4rem;
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: 0;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.76);
}

.reel-sample__caption > span:last-child {
    max-width: 22ch;
    color: rgba(247, 244, 236, 0.66);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: right;
    text-transform: uppercase;
    padding-bottom: 0.8em;
}

.reel-why {
    background: var(--color-black);
}

.reel-why__grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--reel-border);
}

.reel-why article {
    display: grid;
    grid-template-columns: 90px minmax(220px, 0.55fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    padding: 34px 0;
    border: 0;
    border-bottom: 1px solid var(--reel-border);
    background: transparent;
}

.reel-why__icon {
    margin: 0;
    border-color: rgba(var(--reel-accent-rgb), 0.42);
    color: var(--reel-accent-strong);
}

.reel-pricing {
    background: var(--reel-surface);
}

.reel-pricing__grid {
    display: block;
    border-top: 1px solid var(--reel-border);
}

.reel-price-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.42fr) minmax(160px, 0.38fr) minmax(0, 1fr) minmax(220px, 0.6fr);
    gap: 34px;
    align-items: start;
    padding: 34px 0;
    border: 0;
    border-bottom: 1px solid var(--reel-border);
    background: transparent;
}

.reel-price-card--featured {
    border-color: rgba(var(--reel-accent-rgb), 0.42);
    background: transparent;
}

.reel-price-card__label {
    width: max-content;
    margin: 0 0 14px;
    border-color: rgba(var(--reel-accent-rgb), 0.48);
    color: var(--reel-accent-strong);
    letter-spacing: 0;
}

.reel-price-card > strong {
    margin: 0;
    font-size: 2.6rem;
    font-weight: 300;
}

.reel-price-card p {
    max-width: 42ch;
}

.reel-price-card ul {
    margin: 0;
}

.reel-pricing__note {
    max-width: 720px;
    margin-top: 34px;
}

.reel-cta {
    min-height: 76svh;
    display: grid;
    align-items: center;
    border-top: 1px solid rgba(var(--reel-accent-rgb), 0.28);
    border-bottom: 1px solid rgba(var(--reel-accent-rgb), 0.18);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.94)),
        linear-gradient(90deg, rgba(var(--reel-accent-rgb), 0.16), transparent 58%),
        var(--color-black);
}

.reel-cta h2 {
    max-width: 920px;
    font-size: 5rem;
}

.reel-faq__inner {
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
}

.reel-faq details {
    border: 0;
    border-top: 1px solid var(--reel-border);
    background: transparent;
}

.reel-faq details:last-child {
    border-bottom: 1px solid var(--reel-border);
}

.reel-faq summary {
    min-height: 72px;
    padding: 22px 0;
}

.reel-faq details p {
    padding: 0 0 26px;
}

.reel-footer {
    background: var(--reel-surface);
}

@media (max-width: 1080px) {
    .reel-hero__bottom,
    .reel-process .container,
    .reel-section__header--split,
    .reel-faq__inner {
        grid-template-columns: 1fr;
    }

    .reel-hero h1 {
        font-size: 4.6rem;
    }

    .reel-process .reel-section__header {
        position: static;
    }

    .reel-price-card {
        grid-template-columns: minmax(160px, 0.5fr) minmax(0, 1fr);
    }

    .reel-sample__caption strong {
        font-size: 4.8rem;
    }
}

@media (max-width: 760px) {
    .reel-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 44px) 0 46px;
    }

    .reel-hero__inner {
        min-height: auto;
    }

    .reel-hero__breadcrumb span + span::before {
        margin-right: 12px;
    }

    .reel-hero h1,
    .reel-section__header h2,
    .reel-cta h2 {
        font-size: 2.7rem;
        line-height: 1;
    }

    .reel-hero__facts {
        grid-template-columns: 1fr;
    }

    .reel-hero__facts div,
    .reel-hero__facts div:nth-child(2n) {
        border-right: 0;
        border-top: 1px solid rgba(247, 244, 236, 0.1);
    }

    .reel-process__grid {
        grid-template-columns: 1fr;
    }

    .reel-process article,
    .reel-process article:nth-child(2n) {
        min-height: 220px;
        border-right: 0;
    }

    .reel-samples .reel-section__header {
        padding: 76px 0 42px;
    }

    .reel-sample {
        position: relative;
        height: auto;
        min-height: 0;
    }

    .reel-sample__media {
        position: relative;
        grid-template-columns: 1fr;
    }

    .reel-sample figure {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .reel-sample figcaption,
    .reel-sample figure + figure figcaption {
        top: 18px;
        left: 18px;
    }

    .reel-sample__caption {
        position: relative;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 22px 32px;
        background: var(--color-black);
    }

    .reel-sample__caption strong {
        font-size: 3rem;
        line-height: 0.95;
    }

    .reel-sample__caption > span:last-child {
        text-align: left;
        padding-bottom: 0;
    }

    .reel-why article,
    .reel-price-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reel-price-card > strong {
        font-size: 2.1rem;
    }

    .reel-cta {
        min-height: auto;
    }
}

@media (max-width: 460px) {
    .reel-hero h1,
    .reel-section__header h2,
    .reel-cta h2 {
        font-size: 2.25rem;
    }
}

/* =============================================================
   Reel Motion — Creative studio deck pass
   ============================================================= */
.reel-motion-page {
    --reel-accent: #91a78d;
    --reel-accent-strong: #dce8d8;
    --reel-accent-rgb: 145, 167, 141;
    --reel-surface: #080a08;
    --reel-surface-soft: #111410;
    --reel-surface-mist: rgba(247, 244, 236, 0.055);
    --reel-border: rgba(247, 244, 236, 0.13);
    --reel-copy: rgba(247, 244, 236, 0.68);
    background: #050505;
}

.reel-motion-page .eyebrow,
.reel-hero__kicker,
.reel-panel-label {
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reel-hero {
    min-height: 92svh;
    display: grid;
    align-items: center;
    padding: calc(var(--header-height) + 66px) 0 72px;
    background: #050505;
}

.reel-hero__bg {
    opacity: 0.48;
}

.reel-hero__bg::after {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.48) 52%, rgba(5, 5, 5, 0.92)),
        linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.94));
}

.reel-hero__inner {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.78fr);
    gap: clamp(44px, 6vw, 96px);
    align-items: center;
}

.reel-hero__copy {
    max-width: 760px;
}

.reel-hero__kicker {
    margin: 0 0 26px;
}

.reel-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(3.2rem, 7vw, 7.2rem);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: 0;
    text-wrap: balance;
}

.reel-hero__copy > p:last-of-type {
    max-width: 560px;
    margin: 30px 0 0;
    color: var(--reel-copy);
    font-size: 1rem;
    line-height: 1.72;
}

.reel-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.reel-hero__stage {
    position: relative;
    min-height: clamp(520px, 55vw, 700px);
    isolation: isolate;
}

.reel-hero__stage::before,
.reel-hero__stage::after {
    position: absolute;
    border: 1px solid rgba(247, 244, 236, 0.1);
    content: "";
    pointer-events: none;
}

.reel-hero__stage::before {
    inset: 9% 3% 5% 18%;
}

.reel-hero__stage::after {
    inset: 0 16% 14% 0;
}

.reel-hero__frame {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: var(--reel-surface-soft);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.reel-hero__frame img,
.reel-hero__frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.05) brightness(0.92);
}

.reel-hero__frame figcaption,
.reel-feature figcaption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: rgba(247, 244, 236, 0.68);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reel-hero__frame--still {
    z-index: 1;
    left: 0;
    top: 8%;
    width: 42%;
    aspect-ratio: 3 / 4;
    opacity: 0.78;
}

.reel-hero__frame--motion {
    z-index: 2;
    right: 0;
    bottom: 4%;
    width: 72%;
    aspect-ratio: 9 / 12;
}

.reel-hero__slate {
    position: absolute;
    z-index: 3;
    left: 11%;
    bottom: 11%;
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(247, 244, 236, 0.14);
    background: rgba(5, 5, 5, 0.62);
    backdrop-filter: blur(14px);
}

.reel-hero__slate span,
.reel-hero__slate strong {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reel-hero__slate span {
    color: rgba(247, 244, 236, 0.58);
}

.reel-hero__slate strong {
    color: var(--color-white);
}

.reel-specs {
    border-top: 1px solid rgba(247, 244, 236, 0.12);
    border-bottom: 1px solid rgba(247, 244, 236, 0.1);
    background: #050505;
}

.reel-specs dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
}

.reel-specs div {
    min-height: 108px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 22px 26px;
    border-right: 1px solid rgba(247, 244, 236, 0.1);
}

.reel-specs div:last-child {
    border-right: 0;
}

.reel-specs dt,
.reel-specs dd {
    margin: 0;
}

.reel-specs dt {
    color: rgba(247, 244, 236, 0.42);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reel-specs dd {
    color: rgba(247, 244, 236, 0.86);
    font-size: 1rem;
    line-height: 1.45;
}

.reel-section {
    padding: clamp(88px, 11vw, 148px) 0;
}

.reel-section__header {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: end;
    margin-bottom: clamp(42px, 7vw, 86px);
}

.reel-section__header h2,
.reel-studio__intro h2,
.reel-cta h2 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.6rem, 5.6vw, 6rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: 0;
    text-wrap: balance;
}

.reel-section__header > p,
.reel-section__header div + p,
.reel-studio__intro > p {
    max-width: 44ch;
    margin: 0;
    color: var(--reel-copy);
    line-height: 1.72;
}

.reel-samples {
    padding-top: clamp(88px, 11vw, 148px);
    padding-bottom: clamp(86px, 11vw, 154px);
    background:
        linear-gradient(180deg, #050505 0%, #0b0e0b 48%, #050505 100%);
}

.reel-samples .container {
    width: min(100% - 40px, 1320px);
}

.reel-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: end;
    margin-bottom: clamp(28px, 4vw, 58px);
}

.reel-feature__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(247, 244, 236, 0.1);
}

.reel-feature figure {
    position: relative;
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    background: var(--reel-surface-soft);
}

.reel-feature img,
.reel-feature video,
.reel-sample img,
.reel-sample video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.reel-feature__copy {
    display: grid;
    gap: 14px;
    padding-bottom: 4px;
}

.reel-feature__copy span,
.reel-sample__num {
    color: rgba(247, 244, 236, 0.46);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reel-feature__copy h3 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2rem, 3.2vw, 3.8rem);
    font-weight: 300;
    line-height: 0.95;
}

.reel-feature__copy p {
    margin: 0;
    color: var(--reel-copy);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reel-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(247, 244, 236, 0.1);
    border: 1px solid rgba(247, 244, 236, 0.1);
}

.reel-sample {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    padding: 18px;
    border: 0;
    background: #050505;
    clip-path: none;
}

.reel-sample + .reel-sample {
    margin-top: 0;
}

.reel-sample__media {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(247, 244, 236, 0.1);
}

.reel-sample__media::after {
    display: none;
}

.reel-sample figure {
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0;
    overflow: hidden;
}

.reel-sample img,
.reel-sample video {
    height: 100%;
    filter: saturate(0.78) contrast(1.04) brightness(0.9);
    transform: none;
}

.reel-sample__caption {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0 0 4px;
    background: transparent;
}

.reel-sample__caption strong {
    max-width: none;
    color: var(--color-white);
    font-size: clamp(1.2rem, 1.6vw, 1.65rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: none;
}

.reel-sample__caption > span:last-child {
    max-width: none;
    color: rgba(247, 244, 236, 0.54);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    padding-bottom: 0;
}

.reel-studio {
    background: var(--reel-surface);
}

.reel-studio__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.42fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: end;
    margin-bottom: clamp(44px, 6vw, 76px);
}

.reel-studio__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: start;
}

.reel-process,
.reel-why {
    background: transparent;
}

.reel-panel-label {
    margin: 0 0 22px;
}

.reel-process ol {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--reel-border);
}

.reel-process li {
    display: grid;
    grid-template-columns: 70px minmax(170px, 0.42fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--reel-border);
}

.reel-process li span {
    color: rgba(247, 244, 236, 0.44);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
}

.reel-process li strong,
.reel-why h3 {
    color: var(--color-white);
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.28;
}

.reel-process li p,
.reel-why p {
    margin: 0;
    color: var(--reel-copy);
    line-height: 1.64;
}

.reel-why {
    display: grid;
    gap: 0;
}

.reel-why article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid var(--reel-border);
}

.reel-why article:last-child {
    border-bottom: 1px solid var(--reel-border);
}

.reel-why__icon {
    width: 38px;
    height: 38px;
    margin: 0;
    border-color: rgba(var(--reel-accent-rgb), 0.42);
    color: var(--reel-accent-strong);
}

.reel-why__icon svg {
    width: 19px;
    height: 19px;
}

.reel-why h3 {
    margin: 0 0 9px;
}

.reel-pricing {
    background: #050505;
}

.reel-pricing .reel-section__header {
    text-align: left;
}

.reel-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--reel-border);
    background: var(--reel-border);
}

.reel-price-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 420px;
    align-content: start;
    padding: 28px;
    border: 0;
    background: #050505;
}

.reel-price-card--featured {
    background:
        linear-gradient(180deg, rgba(var(--reel-accent-rgb), 0.08), rgba(247, 244, 236, 0.02)),
        #050505;
}

.reel-price-card__label {
    width: max-content;
    margin: 0;
    border-color: rgba(var(--reel-accent-rgb), 0.48);
    color: var(--reel-accent-strong);
    letter-spacing: 0;
}

.reel-price-card h3 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(1.5rem, 2vw, 2.3rem);
    font-weight: 300;
    line-height: 1;
}

.reel-price-card > strong {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    font-weight: 300;
    line-height: 0.95;
}

.reel-price-card p {
    margin: 0;
    color: var(--reel-copy);
    line-height: 1.65;
}

.reel-price-card ul {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.reel-price-card li {
    position: relative;
    min-height: 24px;
    padding-left: 22px;
    color: rgba(247, 244, 236, 0.75);
}

.reel-price-card li::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border: 1px solid var(--reel-accent);
    content: "";
    transform: rotate(45deg);
}

.reel-pricing__note {
    max-width: 690px;
    margin: 28px auto 0;
    color: var(--reel-copy);
    text-align: center;
    line-height: 1.7;
}

.reel-cta {
    min-height: 76svh;
    display: grid;
    align-items: center;
    border-top: 1px solid rgba(var(--reel-accent-rgb), 0.2);
    border-bottom: 1px solid rgba(247, 244, 236, 0.1);
    background:
        linear-gradient(90deg, rgba(var(--reel-accent-rgb), 0.16), rgba(5, 5, 5, 0.04) 42%, rgba(5, 5, 5, 0.78)),
        #050505;
}

.reel-cta__inner {
    max-width: 980px;
}

.reel-cta h2 {
    max-width: 860px;
    margin-inline: auto;
}

.reel-faq__inner {
    grid-template-columns: minmax(250px, 0.44fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 86px);
}

.reel-faq details {
    border: 0;
    border-top: 1px solid var(--reel-border);
    background: transparent;
}

.reel-faq details:last-child {
    border-bottom: 1px solid var(--reel-border);
}

.reel-faq summary {
    min-height: 74px;
    padding: 22px 0;
}

.reel-faq details p {
    padding: 0 0 26px;
}

@media (max-width: 1080px) {
    .reel-hero__inner,
    .reel-section__header,
    .reel-feature,
    .reel-studio__intro,
    .reel-studio__grid,
    .reel-faq__inner {
        grid-template-columns: 1fr;
    }

    .reel-hero__stage {
        min-height: 620px;
    }

    .reel-specs dl,
    .reel-rail,
    .reel-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reel-specs div:nth-child(2n) {
        border-right: 0;
    }

    .reel-specs div:nth-child(n + 3) {
        border-top: 1px solid rgba(247, 244, 236, 0.1);
    }
}

@media (max-width: 760px) {
    .reel-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 42px) 0 56px;
    }

    .reel-hero__stage {
        min-height: 470px;
    }

    .reel-hero__frame--still {
        width: 48%;
        top: 3%;
    }

    .reel-hero__frame--motion {
        width: 78%;
    }

    .reel-specs dl,
    .reel-rail,
    .reel-pricing__grid,
    .reel-feature__media {
        grid-template-columns: 1fr;
    }

    .reel-specs div,
    .reel-specs div:nth-child(2n) {
        min-height: 84px;
        border-right: 0;
        border-top: 1px solid rgba(247, 244, 236, 0.1);
    }

    .reel-specs div:first-child {
        border-top: 0;
    }

    .reel-section {
        padding: 72px 0;
    }

    .reel-section__header {
        margin-bottom: 34px;
    }

    .reel-section__header h2,
    .reel-studio__intro h2,
    .reel-cta h2 {
        font-size: clamp(2.25rem, 12vw, 3.3rem);
        line-height: 0.98;
    }

    .reel-feature figure {
        aspect-ratio: 4 / 5;
    }

    .reel-process li {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .reel-process li p {
        grid-column: 2;
    }

    .reel-price-card {
        min-height: 0;
    }
}

/* Reel Motion proof desk redesign */
.reel-motion-page {
    --reel-bg: #050705;
    --reel-surface: #0b0f0c;
    --reel-surface-soft: #121812;
    --reel-surface-lift: rgba(247, 244, 236, 0.055);
    --reel-line: rgba(247, 244, 236, 0.14);
    --reel-line-strong: rgba(247, 244, 236, 0.26);
    --reel-text: #f7f4ec;
    --reel-muted: rgba(247, 244, 236, 0.68);
    --reel-soft: rgba(247, 244, 236, 0.44);
    --reel-accent: #9db89b;
    --reel-accent-strong: #d8ead7;
    --reel-accent-rgb: 157, 184, 155;
    overflow: hidden;
    background: var(--reel-bg);
    color: var(--reel-text);
}

body:has(.reel-motion-page) {
    --reel-bg: #050705;
    --reel-accent-strong: #d8ead7;
    --reel-accent-rgb: 157, 184, 155;
    background: var(--reel-bg);
}

body:has(.reel-motion-page) .site-header.is-scrolled,
body:has(.reel-motion-page) .site-header.is-open {
    background: rgba(5, 7, 5, 0.78);
    border-bottom-color: rgba(247, 244, 236, 0.08);
    backdrop-filter: blur(18px);
}

body:has(.reel-motion-page) a:focus-visible,
body:has(.reel-motion-page) button:focus-visible {
    outline-color: rgba(var(--reel-accent-rgb), 0.92);
}

body:has(.reel-motion-page) .site-header__menu a:hover,
body:has(.reel-motion-page) .site-header__menu a:focus-visible,
body:has(.reel-motion-page) .site-header__toggle:hover,
body:has(.reel-motion-page) .site-header__toggle:focus-visible {
    color: var(--reel-accent-strong);
}

.reel-motion-page .eyebrow,
.reel-hero__kicker,
.reel-panel-label,
.reel-brief__label {
    margin: 0;
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.reel-motion-page .button {
    min-height: 44px;
}

.reel-motion-page .button--primary {
    border-color: var(--reel-accent-strong);
    background: var(--reel-accent-strong);
    color: #081008;
}

.reel-motion-page .button--primary:hover,
.reel-motion-page .button--primary:focus-visible {
    border-color: var(--reel-text);
    background: var(--reel-text);
    color: #081008;
}

.reel-motion-page .button--outline {
    border-color: rgba(247, 244, 236, 0.34);
    color: rgba(247, 244, 236, 0.82);
}

.reel-motion-page .button--outline:hover,
.reel-motion-page .button--outline:focus-visible {
    border-color: var(--reel-accent-strong);
    color: var(--reel-accent-strong);
}

.reel-motion-page a:focus-visible,
.reel-motion-page button:focus-visible,
.reel-motion-page summary:focus-visible {
    outline: 1px solid rgba(var(--reel-accent-rgb), 0.92);
    outline-offset: 5px;
}

.reel-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: block;
    color: var(--reel-text);
    background: var(--reel-bg);
}

.reel-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #050705;
}

.reel-hero__bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(5, 7, 5, 0.38) 0%, rgba(5, 7, 5, 0.08) 42%, rgba(5, 7, 5, 0.82) 100%),
        linear-gradient(90deg, rgba(5, 7, 5, 0.72) 0%, rgba(5, 7, 5, 0.16) 58%, rgba(5, 7, 5, 0.52) 100%);
}

.reel-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.04) brightness(0.74);
    transform: scale(1.05);
    will-change: transform;
}

.reel-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 54px;
}

.reel-hero__breadcrumb {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: rgba(247, 244, 236, 0.58);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.reel-hero__breadcrumb span + span::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 12px;
    vertical-align: middle;
    background: var(--reel-accent);
    content: "";
}

.reel-hero__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: 56px;
    align-items: end;
}

.reel-hero__copy {
    max-width: 900px;
}

.reel-hero__kicker {
    margin-bottom: 18px;
}

.reel-hero h1 {
    margin: 0;
    max-width: 11ch;
    color: var(--reel-text);
    font-size: 6.1rem;
    line-height: 0.92;
    letter-spacing: 0;
    font-weight: 500;
}

.reel-hero__copy > p:last-of-type {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(247, 244, 236, 0.74);
    font-size: 1.06rem;
    line-height: 1.72;
}

.reel-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.reel-hero__stage {
    border: 1px solid var(--reel-line-strong);
    background: rgba(5, 7, 5, 0.42);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.reel-hero__stage::before,
.reel-hero__stage::after {
    content: none;
}

.reel-hero__stage-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--reel-line);
    color: rgba(247, 244, 236, 0.62);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-hero__stage-head strong {
    max-width: 18ch;
    overflow: hidden;
    color: var(--reel-text);
    font-weight: 700;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reel-hero__screen {
    position: relative;
    margin: 0;
    aspect-ratio: 9 / 12;
    overflow: hidden;
    background: var(--reel-surface);
}

.reel-hero__screen img,
.reel-hero__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.05) brightness(0.9);
}

.reel-hero__screen figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(247, 244, 236, 0.82);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-hero__filmstrip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-top: 1px solid var(--reel-line);
}

.reel-hero__filmstrip span {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--reel-surface-soft);
}

.reel-hero__filmstrip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.86);
}

.reel-specs {
    position: relative;
    z-index: 3;
    padding: 0;
    background: var(--reel-bg);
}

.reel-specs dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--reel-line);
    border-bottom: 1px solid var(--reel-line);
}

.reel-specs div {
    min-width: 0;
    padding: 24px 20px;
    border-right: 1px solid var(--reel-line);
}

.reel-specs div:last-child {
    border-right: 0;
}

.reel-specs dt,
.reel-specs dd {
    margin: 0;
}

.reel-specs dt {
    color: var(--reel-soft);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.reel-specs dd {
    margin-top: 8px;
    color: rgba(247, 244, 236, 0.88);
    font-size: 0.95rem;
    line-height: 1.42;
}

.reel-brief {
    position: relative;
    z-index: 2;
    padding: 112px 0 78px;
    background: var(--reel-bg);
}

.reel-brief__inner {
    display: grid;
    grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
    gap: 90px;
    align-items: start;
}

.reel-brief__lede {
    margin: 0;
    max-width: 790px;
    color: var(--reel-text);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.14;
    letter-spacing: 0;
}

.reel-brief__copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--reel-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.reel-section {
    position: relative;
    z-index: 2;
    padding: 98px 0;
    background: var(--reel-bg);
}

.reel-section__header {
    margin-bottom: 42px;
}

.reel-section__header--split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.5fr);
    gap: 48px;
    align-items: end;
}

.reel-section__header h2,
.reel-desk__intro h2,
.reel-cta h2 {
    margin: 12px 0 0;
    max-width: 760px;
    color: var(--reel-text);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
}

.reel-section__header > p,
.reel-section__header div + p,
.reel-desk__intro > p,
.reel-cta p {
    margin: 0;
    color: var(--reel-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.reel-proof {
    padding-top: 92px;
}

.reel-proof__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
    gap: 28px;
    align-items: start;
}

.reel-proof__viewer {
    position: sticky;
    top: calc(var(--header-height) + 22px);
    border: 1px solid var(--reel-line);
    background: var(--reel-surface);
}

.reel-proof__viewer-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--reel-line);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-proof__viewer-top span {
    color: var(--reel-soft);
}

.reel-proof__viewer-top strong {
    color: var(--reel-text);
    text-align: right;
}

.reel-proof__screen {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #070907;
}

.reel-proof__screen img,
.reel-proof__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.06) brightness(0.9);
}

.reel-proof__screen figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent, rgba(5, 7, 5, 0.86));
    color: rgba(247, 244, 236, 0.84);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.reel-proof__screen small {
    color: var(--reel-soft);
    font-size: inherit;
}

.reel-proof__before {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-top: 1px solid var(--reel-line);
}

.reel-proof__before span {
    color: var(--reel-soft);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-proof__before img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    filter: saturate(0.72) brightness(0.78);
}

.reel-proof__index {
    border-top: 1px solid var(--reel-line);
}

.reel-proof__item {
    position: relative;
    width: 100%;
    min-height: 92px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--reel-line);
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.24s ease, padding 0.24s ease, border-color 0.24s ease;
}

.reel-proof__item:hover,
.reel-proof__item:focus-visible,
.reel-proof__item.is-active {
    padding-left: 18px;
    padding-right: 18px;
    border-bottom-color: rgba(var(--reel-accent-rgb), 0.42);
    background: rgba(var(--reel-accent-rgb), 0.08);
}

.reel-proof__num,
.reel-proof__status {
    color: var(--reel-soft);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-proof__name {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.reel-proof__name strong {
    overflow-wrap: anywhere;
    color: var(--reel-text);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.16;
}

.reel-proof__name small {
    color: var(--reel-muted);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-transform: uppercase;
}

.reel-proof__item.is-active .reel-proof__status,
.reel-proof__item:hover .reel-proof__status {
    color: var(--reel-accent-strong);
}

.reel-desk {
    background: #070907;
}

.reel-desk__intro {
    max-width: 820px;
    margin-bottom: 46px;
}

.reel-desk__intro > p:last-child {
    max-width: 620px;
    margin-top: 20px;
}

.reel-desk__matrix {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-top: 1px solid var(--reel-line);
    border-bottom: 1px solid var(--reel-line);
}

.reel-desk__column {
    min-width: 0;
    padding: 30px 0;
}

.reel-desk__column--process {
    padding-right: 34px;
    border-right: 1px solid var(--reel-line);
}

.reel-desk__column--why {
    padding-left: 34px;
}

.reel-desk__steps {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.reel-desk__steps li,
.reel-desk__reasons article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--reel-line);
}

.reel-desk__steps li:first-child,
.reel-desk__reasons article:first-child {
    border-top: 0;
}

.reel-desk__steps span {
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.reel-desk__steps strong,
.reel-desk__reasons h3 {
    display: block;
    margin: 0;
    color: var(--reel-text);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
}

.reel-desk__steps p,
.reel-desk__reasons p {
    margin: 10px 0 0;
    color: var(--reel-muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.reel-desk__reasons {
    margin-top: 28px;
}

.reel-why__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--reel-accent-rgb), 0.42);
    color: var(--reel-accent-strong);
}

.reel-why__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.reel-packages {
    background: var(--reel-bg);
}

.reel-packages__table {
    border-top: 1px solid var(--reel-line);
}

.reel-package {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) minmax(160px, 0.22fr);
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--reel-line);
}

.reel-package--featured {
    background: linear-gradient(90deg, rgba(var(--reel-accent-rgb), 0.1), rgba(var(--reel-accent-rgb), 0.02) 56%, transparent);
}

.reel-package__num,
.reel-package__label {
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-package__label {
    display: inline-block;
    margin-bottom: 10px;
}

.reel-package h3 {
    margin: 0;
    color: var(--reel-text);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
}

.reel-package p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--reel-muted);
    line-height: 1.66;
}

.reel-package ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.reel-package li {
    color: rgba(247, 244, 236, 0.76);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.reel-package__price {
    color: var(--reel-text);
    font-family: var(--font-mono);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: right;
}

.reel-cta {
    border-top: 1px solid rgba(var(--reel-accent-rgb), 0.2);
    border-bottom: 1px solid var(--reel-line);
    background:
        linear-gradient(90deg, rgba(var(--reel-accent-rgb), 0.12), rgba(247, 244, 236, 0.03) 48%, rgba(5, 7, 5, 0.5)),
        var(--reel-surface);
}

.reel-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 380px);
    gap: 52px;
    align-items: end;
}

.reel-cta h2 {
    max-width: 720px;
}

.reel-cta p:not(.eyebrow) {
    max-width: 600px;
    margin-top: 16px;
}

.reel-cta__action {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.reel-cta__action p {
    margin: 0;
    color: var(--reel-soft);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.reel-cta__action a:not(.button),
.reel-footer a {
    color: var(--reel-accent-strong);
}

.reel-faq {
    background: var(--reel-bg);
}

.reel-faq__inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 70px;
}

.reel-faq__list {
    border-top: 1px solid var(--reel-line);
}

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

.reel-faq summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    color: var(--reel-text);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.35;
    list-style: none;
}

.reel-faq summary::-webkit-details-marker {
    display: none;
}

.reel-faq summary::after {
    flex: 0 0 auto;
    color: var(--reel-accent-strong);
    font-family: var(--font-mono);
    content: "+";
}

.reel-faq details[open] summary::after {
    content: "-";
}

.reel-faq details p {
    max-width: 760px;
    margin: 0;
    padding: 0 0 24px;
    color: var(--reel-muted);
    line-height: 1.72;
}

.reel-footer {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid var(--reel-line);
    background: var(--reel-bg);
}

.reel-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    color: var(--reel-soft);
    font-size: 0.82rem;
}

.reel-footer p {
    margin: 0;
}

.reel-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

@media (max-width: 1180px) {
    .reel-hero__bottom,
    .reel-proof__layout,
    .reel-desk__matrix,
    .reel-cta__inner,
    .reel-faq__inner {
        grid-template-columns: 1fr;
    }

    .reel-hero h1 {
        font-size: 5rem;
    }

    .reel-hero__stage {
        max-width: 520px;
    }

    .reel-proof__viewer {
        position: relative;
        top: auto;
    }

    .reel-desk__column--process,
    .reel-desk__column--why {
        padding-right: 0;
        padding-left: 0;
        border-right: 0;
    }

    .reel-desk__column--why {
        border-top: 1px solid var(--reel-line);
    }
}

@media (max-width: 860px) {
    .reel-hero__inner {
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: 34px;
    }

    .reel-hero__bottom {
        gap: 34px;
    }

    .reel-hero h1 {
        font-size: 3.65rem;
        line-height: 0.96;
    }

    .reel-hero__copy > p:last-of-type,
    .reel-section__header > p,
    .reel-section__header div + p,
    .reel-desk__intro > p,
    .reel-cta p {
        font-size: 1rem;
    }

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

    .reel-specs div:nth-child(2n) {
        border-right: 0;
    }

    .reel-specs div:nth-child(n + 3) {
        border-top: 1px solid var(--reel-line);
    }

    .reel-brief,
    .reel-section {
        padding: 74px 0;
    }

    .reel-brief__inner,
    .reel-section__header--split {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .reel-brief__lede,
    .reel-section__header h2,
    .reel-desk__intro h2,
    .reel-cta h2 {
        font-size: 2.15rem;
        line-height: 1.08;
    }

    .reel-package {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .reel-package__price {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .reel-hero__breadcrumb {
        gap: 8px;
        font-size: 0.58rem;
        letter-spacing: 0.16em;
    }

    .reel-hero__breadcrumb span + span::before {
        margin-right: 8px;
    }

    .reel-hero h1 {
        font-size: 2.8rem;
    }

    .reel-hero__actions .button,
    .reel-cta__button {
        width: 100%;
        justify-content: center;
    }

    .reel-hero__stage-head,
    .reel-proof__viewer-top,
    .reel-proof__screen figcaption,
    .reel-hero__screen figcaption {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .reel-specs dl {
        grid-template-columns: 1fr;
    }

    .reel-specs div,
    .reel-specs div:nth-child(2n) {
        border-right: 0;
    }

    .reel-specs div + div {
        border-top: 1px solid var(--reel-line);
    }

    .reel-proof__item {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 96px;
    }

    .reel-proof__status {
        grid-column: 2;
    }

    .reel-proof__before {
        grid-template-columns: 1fr;
    }

    .reel-desk__steps li,
    .reel-desk__reasons article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reel-package {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reel-package__price {
        grid-column: auto;
    }

    .reel-footer__inner,
    .reel-footer__links {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reel-motion-page *,
    .reel-motion-page *::before,
    .reel-motion-page *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}

/* Reel Motion serious studio cut */
.reel-motion-page--cinema {
    --rm-bg: #030403;
    --rm-bg-2: #090a08;
    --rm-ink: #f7f4ec;
    --rm-paper: #f1f0ea;
    --rm-paper-ink: #101510;
    --rm-muted: rgba(247, 244, 236, 0.68);
    --rm-faint: rgba(247, 244, 236, 0.42);
    --rm-line: rgba(247, 244, 236, 0.14);
    --rm-line-strong: rgba(247, 244, 236, 0.28);
    --rm-accent: #b7cbb1;
    --rm-accent-strong: #edf4e8;
    --rm-accent-rgb: 183, 203, 177;
    overflow: hidden;
    background: var(--rm-bg);
    color: var(--rm-ink);
}

body:has(.reel-motion-page--cinema) {
    --rm-bg: #030403;
    --rm-accent-strong: #edf4e8;
    --rm-accent-rgb: 183, 203, 177;
    background: var(--rm-bg);
}

body:has(.reel-motion-page--cinema) a:focus-visible,
body:has(.reel-motion-page--cinema) button:focus-visible,
.reel-motion-page--cinema a:focus-visible,
.reel-motion-page--cinema button:focus-visible,
.reel-motion-page--cinema summary:focus-visible {
    outline: 1px solid rgba(var(--rm-accent-rgb), 0.95);
    outline-offset: 5px;
}

body:has(.reel-motion-page--cinema) .site-header.is-scrolled,
body:has(.reel-motion-page--cinema) .site-header.is-open {
    background: rgba(4, 6, 4, 0.72);
    border-bottom-color: rgba(247, 244, 236, 0.08);
    backdrop-filter: blur(18px);
}

body:has(.reel-motion-page--cinema) .site-header__menu a:hover,
body:has(.reel-motion-page--cinema) .site-header__menu a:focus-visible,
body:has(.reel-motion-page--cinema) .site-header__toggle:hover,
body:has(.reel-motion-page--cinema) .site-header__toggle:focus-visible {
    color: var(--rm-accent-strong);
}

.reel-motion-page--cinema .button {
    min-height: 46px;
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: none;
}

.reel-motion-page--cinema .button--primary {
    border-color: var(--rm-accent-strong);
    background: var(--rm-accent-strong);
    color: #071007;
}

.reel-motion-page--cinema .button--primary:hover,
.reel-motion-page--cinema .button--primary:focus-visible {
    border-color: var(--rm-ink);
    background: var(--rm-ink);
    color: #071007;
}

.reel-motion-page--cinema .button--outline {
    border-color: rgba(247, 244, 236, 0.4);
    color: rgba(247, 244, 236, 0.86);
}

.reel-motion-page--cinema .button--outline:hover,
.reel-motion-page--cinema .button--outline:focus-visible {
    border-color: var(--rm-accent-strong);
    color: var(--rm-accent-strong);
}

.reel-motion-page--cinema .eyebrow,
.reel-motion-page--cinema .reel-hero__kicker,
.reel-statement__label {
    margin: 0;
    color: var(--rm-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.reel-hero--cinema {
    position: relative;
    min-height: 92svh;
    overflow: hidden;
    display: block;
    background: var(--rm-bg);
    color: var(--rm-ink);
}

.reel-hero--cinema .reel-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #050805;
}

.reel-hero--cinema .reel-hero__bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(4, 6, 4, 0.2) 0%, rgba(4, 6, 4, 0.28) 44%, rgba(4, 6, 4, 0.88) 100%),
        linear-gradient(90deg, rgba(4, 6, 4, 0.82) 0%, rgba(4, 6, 4, 0.22) 52%, rgba(4, 6, 4, 0.58) 100%);
}

.reel-hero--cinema .reel-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.06) brightness(0.72);
    transform: scale(1.06);
    will-change: transform;
}

.reel-hero--cinema .reel-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 92svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 52px;
}

.reel-hero__topline {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    color: rgba(247, 244, 236, 0.64);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.reel-hero__frame-index {
    position: absolute;
    z-index: 1;
    top: 18%;
    right: 0;
    width: 520px;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    grid-auto-rows: 150px;
    gap: 12px;
    opacity: 0.92;
    pointer-events: none;
}

.reel-hero__frame-index span {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(247, 244, 236, 0.18);
    background: var(--rm-bg-2);
}

.reel-hero__frame-index span:first-child {
    grid-row: span 2;
}

.reel-hero__frame-index span:nth-child(4) {
    grid-column: 1 / -1;
}

.reel-hero__frame-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.06) brightness(0.82);
    transform: scale(1.04);
}

.reel-hero--cinema .reel-hero__copy {
    position: relative;
    z-index: 3;
    align-self: end;
    max-width: 920px;
    padding-top: 120px;
}

.reel-hero--cinema .reel-hero__kicker {
    margin-bottom: 18px;
}

.reel-hero--cinema h1 {
    margin: 0;
    max-width: 11ch;
    color: var(--rm-ink);
    font-size: 6.8rem;
    font-weight: 500;
    line-height: 0.91;
    letter-spacing: 0;
}

.reel-hero__lower {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 620px) auto;
    gap: 40px;
    align-items: end;
    margin-top: 42px;
}

.reel-hero__lower p {
    margin: 0;
    color: rgba(247, 244, 236, 0.78);
    font-size: 1.08rem;
    line-height: 1.72;
}

.reel-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
}

.reel-motion-page--cinema .reel-specs {
    position: relative;
    z-index: 3;
    padding: 0;
    background: var(--rm-bg);
}

.reel-motion-page--cinema .reel-specs dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
}

.reel-motion-page--cinema .reel-specs div {
    min-width: 0;
    padding: 24px 20px;
    border-right: 1px solid var(--rm-line);
}

.reel-motion-page--cinema .reel-specs div:last-child {
    border-right: 0;
}

.reel-motion-page--cinema .reel-specs dt,
.reel-motion-page--cinema .reel-specs dd {
    margin: 0;
}

.reel-motion-page--cinema .reel-specs dt {
    color: var(--rm-faint);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.reel-motion-page--cinema .reel-specs dd {
    margin-top: 8px;
    color: rgba(247, 244, 236, 0.9);
    font-size: 0.95rem;
    line-height: 1.42;
}

.reel-statement {
    position: relative;
    z-index: 2;
    padding: 120px 0 112px;
    background: var(--rm-paper);
    color: var(--rm-paper-ink);
}

.reel-statement__inner {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 92px;
    align-items: start;
}

.reel-statement__label {
    color: rgba(16, 21, 16, 0.62);
}

.reel-statement h2 {
    margin: 0;
    max-width: 840px;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.reel-statement p:not(.reel-statement__label) {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(16, 21, 16, 0.68);
    font-size: 1.08rem;
    line-height: 1.72;
}

.reel-motion-page--cinema .reel-section {
    position: relative;
    z-index: 2;
    padding: 108px 0;
    background: var(--rm-bg);
}

.reel-motion-page--cinema .reel-section__header {
    margin-bottom: 42px;
}

.reel-motion-page--cinema .reel-section__header--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
    gap: 56px;
    align-items: end;
}

.reel-motion-page--cinema .reel-section__header h2,
.reel-method__headline h2,
.reel-value__lead h2,
.reel-motion-page--cinema .reel-cta h2 {
    margin: 12px 0 0;
    max-width: 780px;
    color: var(--rm-ink);
    font-size: 3.55rem;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
}

.reel-motion-page--cinema .reel-section__header > p,
.reel-motion-page--cinema .reel-section__header div + p {
    margin: 0;
    color: var(--rm-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.reel-studies {
    background: var(--rm-bg);
}

.reel-studies__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.reel-study {
    min-width: 0;
}

.reel-study--wide {
    grid-column: span 7;
}

.reel-study--tall {
    grid-column: span 5;
}

.reel-study--portrait {
    grid-column: 2 / span 4;
}

.reel-study--landscape {
    grid-column: span 8;
}

.reel-study__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(247, 244, 236, 0.12);
    background: var(--rm-bg-2);
}

.reel-study--wide .reel-study__media {
    aspect-ratio: 16 / 10;
}

.reel-study--tall .reel-study__media,
.reel-study--portrait .reel-study__media {
    aspect-ratio: 4 / 5.2;
}

.reel-study--landscape .reel-study__media {
    aspect-ratio: 16 / 8.4;
}

.reel-study__media > img,
.reel-study__media > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.06) brightness(0.88);
    transform: scale(1.01);
    transition: filter 0.36s ease, transform 0.5s ease;
}

.reel-study:hover .reel-study__media > img,
.reel-study:hover .reel-study__media > video {
    filter: saturate(0.94) contrast(1.08) brightness(0.98);
    transform: scale(1.035);
}

.reel-study__before {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 122px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(247, 244, 236, 0.36);
    background: var(--rm-bg);
}

.reel-study__before::before {
    position: absolute;
    z-index: 2;
    left: 8px;
    top: 7px;
    color: rgba(247, 244, 236, 0.72);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    content: "Still";
}

.reel-study__before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.68) brightness(0.74);
}

.reel-study__caption {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-top: 14px;
}

.reel-study__caption span,
.reel-rate__num {
    color: var(--rm-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-study__caption strong {
    display: block;
    color: var(--rm-ink);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
}

.reel-study__caption small {
    display: block;
    margin-top: 6px;
    color: var(--rm-muted);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.5;
    text-transform: uppercase;
}

.reel-method {
    background: #080c08;
}

.reel-method__headline {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
    margin-bottom: 44px;
}

.reel-method__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--rm-line);
}

.reel-method__list li {
    display: grid;
    grid-template-columns: 80px minmax(210px, 0.34fr) minmax(0, 1fr);
    gap: 30px;
    align-items: baseline;
    padding: 28px 0;
    border-bottom: 1px solid var(--rm-line);
}

.reel-method__list span {
    color: var(--rm-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.reel-method__list strong {
    color: var(--rm-ink);
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.18;
}

.reel-method__list p {
    margin: 0;
    color: var(--rm-muted);
    line-height: 1.7;
}

.reel-value {
    background: var(--rm-paper);
    color: var(--rm-paper-ink);
}

.reel-value__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
    gap: 76px;
    align-items: start;
}

.reel-value .eyebrow {
    color: rgba(16, 21, 16, 0.58);
}

.reel-value__lead h2 {
    color: var(--rm-paper-ink);
}

.reel-value__list {
    border-top: 1px solid rgba(16, 21, 16, 0.18);
}

.reel-value__list article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(16, 21, 16, 0.18);
}

.reel-value__list span {
    color: rgba(16, 21, 16, 0.54);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.reel-value__list h3 {
    margin: 0;
    color: var(--rm-paper-ink);
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.2;
}

.reel-value__list p {
    margin: 10px 0 0;
    color: rgba(16, 21, 16, 0.68);
    line-height: 1.68;
}

.reel-rates {
    background: var(--rm-bg);
}

.reel-rates__list {
    border-top: 1px solid var(--rm-line);
}

.reel-rate {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) minmax(150px, 0.2fr);
    gap: 28px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--rm-line);
}

.reel-rate--featured {
    border-color: rgba(var(--rm-accent-rgb), 0.42);
}

.reel-rate__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--rm-accent-strong);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-rate h3 {
    margin: 0;
    color: var(--rm-ink);
    font-size: 1.54rem;
    font-weight: 500;
    line-height: 1.12;
}

.reel-rate p {
    max-width: 720px;
    margin: 12px 0 0;
    color: var(--rm-muted);
    line-height: 1.66;
}

.reel-rate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.reel-rate li {
    color: rgba(247, 244, 236, 0.76);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.reel-rate > strong {
    color: var(--rm-ink);
    font-family: var(--font-mono);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: right;
}

.reel-motion-page--cinema .reel-cta {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    display: grid;
    align-items: end;
    border-top: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
    background: var(--rm-bg);
    text-align: left;
}

.reel-cta__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.reel-cta__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(4, 6, 4, 0.86), rgba(4, 6, 4, 0.3) 55%, rgba(4, 6, 4, 0.78)),
        linear-gradient(180deg, rgba(4, 6, 4, 0.12), rgba(4, 6, 4, 0.86));
}

.reel-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.74) contrast(1.05) brightness(0.78);
}

.reel-motion-page--cinema .reel-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
    gap: 58px;
    align-items: end;
    max-width: var(--container-width);
    padding-top: 90px;
    padding-bottom: 90px;
}

.reel-motion-page--cinema .reel-cta h2 {
    max-width: 760px;
}

.reel-motion-page--cinema .reel-cta p:not(.eyebrow) {
    max-width: 640px;
    margin: 14px 0 0;
    color: rgba(247, 244, 236, 0.72);
    line-height: 1.72;
}

.reel-cta__action {
    display: grid;
    gap: 14px;
    justify-items: start;
}

.reel-motion-page--cinema .reel-cta__button {
    margin-top: 0;
}

.reel-cta__action p {
    margin: 0;
    color: rgba(247, 244, 236, 0.7);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.55;
    text-transform: uppercase;
}

.reel-cta__action a:not(.button),
.reel-motion-page--cinema .reel-footer a {
    color: var(--rm-accent-strong);
}

.reel-motion-page--cinema .reel-faq {
    background: var(--rm-bg);
}

.reel-motion-page--cinema .reel-faq__inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 70px;
}

.reel-motion-page--cinema .reel-faq__list {
    display: block;
    gap: 0;
    border-top: 1px solid var(--rm-line);
}

.reel-motion-page--cinema .reel-faq details {
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    background: transparent;
}

.reel-motion-page--cinema .reel-faq summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    color: var(--rm-ink);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.35;
    list-style: none;
}

.reel-motion-page--cinema .reel-faq summary::-webkit-details-marker {
    display: none;
}

.reel-motion-page--cinema .reel-faq summary::after {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    border: 0;
    color: var(--rm-accent-strong);
    font-family: var(--font-mono);
    content: "+";
    transform: none;
    transition: none;
}

.reel-motion-page--cinema .reel-faq details[open] summary::after {
    content: "-";
    transform: none;
}

.reel-motion-page--cinema .reel-faq details p {
    max-width: 760px;
    margin: 0;
    padding: 0 0 24px;
    color: var(--rm-muted);
    line-height: 1.72;
}

.reel-motion-page--cinema .reel-footer {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid var(--rm-line);
    background: var(--rm-bg);
}

.reel-motion-page--cinema .reel-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    color: var(--rm-faint);
    font-size: 0.82rem;
}

.reel-motion-page--cinema .reel-footer p {
    margin: 0;
}

.reel-motion-page--cinema .reel-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

@media (max-width: 1160px) {
    .reel-hero__frame-index {
        width: 430px;
        grid-auto-rows: 128px;
        opacity: 0.78;
    }

    .reel-hero--cinema h1 {
        font-size: 5.8rem;
    }

    .reel-hero__lower,
    .reel-motion-page--cinema .reel-section__header--split,
    .reel-value__inner,
    .reel-motion-page--cinema .reel-cta__inner,
    .reel-motion-page--cinema .reel-faq__inner {
        grid-template-columns: 1fr;
    }

    .reel-hero__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .reel-hero--cinema .reel-hero__inner {
        min-height: auto;
        padding-top: calc(var(--header-height) + 38px);
        padding-bottom: 42px;
    }

    .reel-hero__topline {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .reel-hero__frame-index {
        position: relative;
        grid-row: 3;
        top: auto;
        right: auto;
        width: 100%;
        grid-auto-rows: 120px;
        margin: 42px 0 28px;
        opacity: 1;
    }

    .reel-hero--cinema .reel-hero__copy {
        grid-row: 2;
        padding-top: 64px;
    }

    .reel-hero__lower {
        grid-row: 4;
    }

    .reel-hero--cinema h1 {
        font-size: 4.2rem;
        line-height: 0.96;
    }

    .reel-motion-page--cinema .reel-specs dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reel-motion-page--cinema .reel-specs div:nth-child(2n) {
        border-right: 0;
    }

    .reel-motion-page--cinema .reel-specs div:nth-child(n + 3) {
        border-top: 1px solid var(--rm-line);
    }

    .reel-statement,
    .reel-motion-page--cinema .reel-section {
        padding: 76px 0;
    }

    .reel-statement__inner,
    .reel-method__headline {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .reel-statement h2,
    .reel-motion-page--cinema .reel-section__header h2,
    .reel-method__headline h2,
    .reel-value__lead h2,
    .reel-motion-page--cinema .reel-cta h2 {
        font-size: 2.55rem;
        line-height: 1.08;
    }

    .reel-studies__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .reel-study--wide,
    .reel-study--tall,
    .reel-study--portrait,
    .reel-study--landscape {
        grid-column: auto;
    }

    .reel-study--wide .reel-study__media,
    .reel-study--landscape .reel-study__media {
        aspect-ratio: 16 / 10;
    }

    .reel-method__list li,
    .reel-rate {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 18px;
    }

    .reel-method__list p,
    .reel-rate > strong {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .reel-hero--cinema h1 {
        font-size: 3rem;
    }

    .reel-hero__frame-index {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 96px;
    }

    .reel-hero__frame-index span:first-child,
    .reel-hero__frame-index span:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .reel-hero__lower p,
    .reel-statement p:not(.reel-statement__label) {
        font-size: 1rem;
    }

    .reel-hero__actions .button,
    .reel-cta__button {
        width: 100%;
        justify-content: center;
    }

    .reel-motion-page--cinema .reel-specs dl {
        grid-template-columns: 1fr;
    }

    .reel-motion-page--cinema .reel-specs div,
    .reel-motion-page--cinema .reel-specs div:nth-child(2n) {
        border-right: 0;
    }

    .reel-motion-page--cinema .reel-specs div + div {
        border-top: 1px solid var(--rm-line);
    }

    .reel-study__before {
        width: 92px;
        right: 12px;
        bottom: 12px;
    }

    .reel-method__list li,
    .reel-value__list article,
    .reel-rate {
        grid-template-columns: 1fr;
    }

    .reel-method__list p,
    .reel-rate > strong {
        grid-column: auto;
    }

    .reel-rate ul {
        display: grid;
    }

    .reel-motion-page--cinema .reel-cta {
        min-height: 500px;
    }

    .reel-motion-page--cinema .reel-cta__inner {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .reel-motion-page--cinema .reel-footer__inner,
    .reel-motion-page--cinema .reel-footer__links {
        display: grid;
    }
}

.reel-motion-page--cinema .eyebrow,
.reel-motion-page--cinema .reel-hero__kicker,
.reel-motion-page--cinema .reel-hero__topline,
.reel-motion-page--cinema .reel-specs dt,
.reel-motion-page--cinema .reel-study__caption span,
.reel-motion-page--cinema .reel-study__caption small,
.reel-motion-page--cinema .reel-rate__num,
.reel-motion-page--cinema .reel-rate__label,
.reel-motion-page--cinema .reel-rate li,
.reel-motion-page--cinema .reel-cta__action p,
.reel-motion-page--cinema .reel-method__list span,
.reel-motion-page--cinema .reel-value__list span,
.reel-statement__label,
.reel-study__before::before {
    letter-spacing: 0;
}

/* Reel Motion simple informative layout */
.reel-motion-page--simple {
    --rs-bg: #f3f3ef;
    --rs-ink: #111511;
    --rs-muted: rgba(17, 21, 17, 0.68);
    --rs-soft: rgba(17, 21, 17, 0.48);
    --rs-line: rgba(17, 21, 17, 0.14);
    --rs-line-strong: rgba(17, 21, 17, 0.24);
    --rs-dark: #081008;
    --rs-dark-2: #111812;
    --rs-light: #f7f4ec;
    --rs-green: #5f755f;
    --rs-green-strong: #dcebd9;
    --rs-green-rgb: 95, 117, 95;
    background: var(--rs-bg);
    color: var(--rs-ink);
}

body:has(.reel-motion-page--simple) {
    --rs-bg: #f3f3ef;
    --rs-green: #5f755f;
    --rs-green-rgb: 95, 117, 95;
    background: var(--rs-bg);
}

body:has(.reel-motion-page--simple) .site-header.is-scrolled,
body:has(.reel-motion-page--simple) .site-header.is-open {
    background: rgba(243, 243, 239, 0.84);
    border-bottom-color: rgba(17, 21, 17, 0.1);
    backdrop-filter: blur(18px);
}

body:has(.reel-motion-page--simple) .site-header__toggle,
body:has(.reel-motion-page--simple) .site-header__menu a {
    color: rgba(17, 21, 17, 0.78);
}

body:has(.reel-motion-page--simple) a:focus-visible,
body:has(.reel-motion-page--simple) button:focus-visible,
.reel-motion-page--simple a:focus-visible,
.reel-motion-page--simple button:focus-visible,
.reel-motion-page--simple summary:focus-visible {
    outline: 1px solid rgba(var(--rs-green-rgb), 0.95);
    outline-offset: 5px;
}

.reel-motion-page--simple .button {
    min-height: 46px;
    border-radius: 0;
}

.reel-motion-page--simple .button--primary {
    border-color: var(--rs-dark);
    background: var(--rs-dark);
    color: var(--rs-light);
}

.reel-motion-page--simple .button--primary:hover,
.reel-motion-page--simple .button--primary:focus-visible {
    border-color: var(--rs-green);
    background: var(--rs-green);
    color: var(--rs-light);
}

.reel-motion-page--simple .button--outline {
    border-color: var(--rs-line-strong);
    color: var(--rs-ink);
}

.reel-motion-page--simple .button--outline:hover,
.reel-motion-page--simple .button--outline:focus-visible {
    border-color: var(--rs-green);
    color: var(--rs-green);
}

.reel-simple-label {
    margin: 0;
    color: var(--rs-green);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.reel-simple-hero {
    padding: calc(var(--header-height) + 72px) 0 72px;
    background: var(--rs-bg);
}

.reel-simple-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.64fr);
    gap: 56px;
    align-items: center;
}

.reel-simple-hero__copy {
    max-width: 760px;
}

.reel-simple-hero h1 {
    margin: 16px 0 0;
    max-width: 12ch;
    color: var(--rs-ink);
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0;
}

.reel-simple-hero__copy > p:not(.reel-simple-label) {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--rs-muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.reel-simple-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.reel-simple-hero__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--rs-line);
    background: var(--rs-dark);
}

.reel-simple-hero__media img,
.reel-simple-hero__media video {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.04) brightness(0.92);
}

.reel-simple-hero__media figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin: 0;
    padding: 10px 12px;
    background: rgba(8, 16, 8, 0.78);
    color: rgba(247, 244, 236, 0.8);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-transform: uppercase;
}

.reel-simple-specs {
    background: var(--rs-bg);
}

.reel-simple-specs dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--rs-line);
    border-bottom: 1px solid var(--rs-line);
}

.reel-simple-specs div {
    min-width: 0;
    padding: 24px 20px;
    border-right: 1px solid var(--rs-line);
}

.reel-simple-specs div:last-child {
    border-right: 0;
}

.reel-simple-specs dt,
.reel-simple-specs dd {
    margin: 0;
}

.reel-simple-specs dt {
    color: var(--rs-soft);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reel-simple-specs dd {
    margin-top: 7px;
    color: var(--rs-ink);
    font-size: 0.96rem;
    line-height: 1.45;
}

.reel-simple-section {
    padding: 86px 0;
    background: var(--rs-bg);
}

.reel-simple-section:nth-of-type(2n + 1) {
    background: #eeeeea;
}

.reel-simple-header {
    max-width: 780px;
    margin-bottom: 34px;
}

.reel-simple-header h2,
.reel-simple-intro h2,
.reel-simple-cta h2 {
    margin: 12px 0 0;
    color: var(--rs-ink);
    font-size: 2.45rem;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.reel-simple-header > p:not(.reel-simple-label),
.reel-simple-intro__inner > p,
.reel-simple-cta p {
    margin: 14px 0 0;
    color: var(--rs-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.reel-simple-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.62fr);
    gap: 62px;
    align-items: start;
}

.reel-simple-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reel-simple-benefits article,
.reel-simple-price {
    border: 1px solid var(--rs-line);
    background: rgba(255, 255, 255, 0.34);
    padding: 24px;
}

.reel-simple-benefits span {
    color: var(--rs-green);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.reel-simple-benefits h3,
.reel-simple-sample h3,
.reel-simple-price h3 {
    margin: 16px 0 0;
    color: var(--rs-ink);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.22;
}

.reel-simple-benefits p,
.reel-simple-sample p,
.reel-simple-price p {
    margin: 12px 0 0;
    color: var(--rs-muted);
    line-height: 1.66;
}

.reel-simple-process {
    background: var(--rs-dark);
    color: var(--rs-light);
}

.reel-simple-process .reel-simple-label {
    color: var(--rs-green-strong);
}

.reel-simple-process .reel-simple-header h2 {
    color: var(--rs-light);
}

.reel-simple-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(247, 244, 236, 0.16);
}

.reel-simple-steps li {
    display: grid;
    grid-template-columns: 58px minmax(190px, 0.32fr) minmax(0, 1fr);
    gap: 26px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid rgba(247, 244, 236, 0.16);
}

.reel-simple-steps span {
    color: var(--rs-green-strong);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.reel-simple-steps strong {
    color: var(--rs-light);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
}

.reel-simple-steps p {
    margin: 0;
    color: rgba(247, 244, 236, 0.7);
    line-height: 1.68;
}

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

.reel-simple-sample figure {
    margin: 0;
    overflow: hidden;
    background: var(--rs-dark);
    aspect-ratio: 4 / 3.2;
}

.reel-simple-sample img,
.reel-simple-sample video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.04) brightness(0.92);
}

.reel-simple-sample > div {
    padding-top: 14px;
}

.reel-simple-sample h3 {
    margin-top: 0;
}

.reel-simple-pricing__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.reel-simple-price {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.reel-simple-price--featured {
    border-color: rgba(var(--rs-green-rgb), 0.5);
    background: rgba(var(--rs-green-rgb), 0.1);
}

.reel-simple-price__label {
    width: max-content;
    margin-bottom: 12px;
    padding: 5px 8px;
    background: var(--rs-dark);
    color: var(--rs-light);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.reel-simple-price h3 {
    margin-top: 0;
}

.reel-simple-price > strong {
    display: block;
    margin-top: 10px;
    color: var(--rs-ink);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.reel-simple-price ul {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.reel-simple-price li {
    color: rgba(17, 21, 17, 0.76);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.45;
    text-transform: uppercase;
}

.reel-simple-cta {
    background: var(--rs-dark);
    color: var(--rs-light);
}

.reel-simple-cta .reel-simple-label {
    color: var(--rs-green-strong);
}

.reel-simple-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 370px);
    gap: 52px;
    align-items: center;
}

.reel-simple-cta h2 {
    max-width: 700px;
    color: var(--rs-light);
}

.reel-simple-cta p {
    color: rgba(247, 244, 236, 0.72);
}

.reel-simple-cta__inner > div:last-child {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.reel-simple-cta__inner > div:last-child p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
}

.reel-simple-cta a:not(.button),
.reel-motion-page--simple .reel-footer a {
    color: var(--rs-green-strong);
}

.reel-simple-faq__inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
    gap: 64px;
}

.reel-simple-faq__list {
    border-top: 1px solid var(--rs-line);
}

.reel-simple-faq details {
    border-bottom: 1px solid var(--rs-line);
}

.reel-simple-faq summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    color: var(--rs-ink);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.35;
    list-style: none;
}

.reel-simple-faq summary::-webkit-details-marker {
    display: none;
}

.reel-simple-faq summary::after {
    flex: 0 0 auto;
    color: var(--rs-green);
    font-family: var(--font-mono);
    content: "+";
}

.reel-simple-faq details[open] summary::after {
    content: "-";
}

.reel-simple-faq details p {
    max-width: 740px;
    margin: 0;
    padding: 0 0 22px;
    color: var(--rs-muted);
    line-height: 1.7;
}

.reel-motion-page--simple .reel-footer {
    padding: 28px 0;
    border-top: 1px solid var(--rs-line);
    background: var(--rs-bg);
}

.reel-motion-page--simple .reel-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    color: var(--rs-soft);
    font-size: 0.82rem;
}

.reel-motion-page--simple .reel-footer p {
    margin: 0;
}

.reel-motion-page--simple .reel-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

@media (max-width: 1120px) {
    .reel-simple-hero__inner,
    .reel-simple-intro__inner,
    .reel-simple-cta__inner,
    .reel-simple-faq__inner {
        grid-template-columns: 1fr;
    }

    .reel-simple-hero__media {
        max-width: 560px;
    }

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

@media (max-width: 820px) {
    .reel-simple-hero {
        padding: calc(var(--header-height) + 48px) 0 56px;
    }

    .reel-simple-hero h1 {
        font-size: 3.25rem;
        line-height: 1;
    }

    .reel-simple-section {
        padding: 66px 0;
    }

    .reel-simple-header h2,
    .reel-simple-intro h2,
    .reel-simple-cta h2 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .reel-simple-specs dl,
    .reel-simple-benefits,
    .reel-simple-samples__grid {
        grid-template-columns: 1fr;
    }

    .reel-simple-specs div,
    .reel-simple-specs div:last-child {
        border-right: 0;
    }

    .reel-simple-specs div + div {
        border-top: 1px solid var(--rs-line);
    }

    .reel-simple-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .reel-simple-steps p {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .reel-simple-hero__actions .button,
    .reel-simple-cta__button {
        width: 100%;
        justify-content: center;
    }

    .reel-simple-hero h1 {
        font-size: 2.65rem;
    }

    .reel-simple-hero__media img,
    .reel-simple-hero__media video {
        aspect-ratio: 4 / 3.4;
    }

    .reel-simple-pricing__list {
        grid-template-columns: 1fr;
    }

    .reel-simple-steps li {
        grid-template-columns: 1fr;
    }

    .reel-simple-steps p {
        grid-column: auto;
    }

    .reel-motion-page--simple .reel-footer__inner,
    .reel-motion-page--simple .reel-footer__links {
        display: grid;
    }
}

/* Reel Motion studio rebuild */
.reel-motion-page--studio {
    --rms-bg: #f5f1e8;
    --rms-ink: #11120f;
    --rms-muted: #666358;
    --rms-soft: #d8d1c4;
    --rms-line: rgba(17, 18, 15, 0.14);
    --rms-dark: #080908;
    --rms-dark-soft: #171915;
    --rms-paper: #fffdf7;
    --rms-moss: #506050;
    --rms-clay: #9a7258;
    --rms-light: #f8f5ed;
    overflow: hidden;
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.reel-motion-page--studio .container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

body:has(.reel-motion-page--studio) {
    --rms-bg: #f5f1e8;
    --rms-ink: #11120f;
    --rms-muted: #666358;
    --rms-soft: #d8d1c4;
    --rms-line: rgba(17, 18, 15, 0.14);
    --rms-dark: #080908;
    --rms-dark-soft: #171915;
    --rms-paper: #fffdf7;
    --rms-moss: #506050;
    --rms-clay: #9a7258;
    --rms-light: #f8f5ed;
    background: var(--rms-bg);
}

body:has(.reel-motion-page--studio) .site-header.is-scrolled,
body:has(.reel-motion-page--studio) .site-header.is-open {
    border-bottom-color: rgba(17, 18, 15, 0.08);
    background: rgba(245, 241, 232, 0.86);
    backdrop-filter: blur(18px);
}

body:has(.reel-motion-page--studio) .site-header__toggle,
body:has(.reel-motion-page--studio) .site-header__menu a {
    color: rgba(17, 18, 15, 0.72);
}

body:has(.reel-motion-page--studio) .site-header__logo img {
    filter: invert(1);
    opacity: 0.82;
}

body:has(.reel-motion-page--studio) .site-header__menu a:hover,
body:has(.reel-motion-page--studio) .site-header__menu a:focus-visible,
body:has(.reel-motion-page--studio) .site-header__toggle:hover,
body:has(.reel-motion-page--studio) .site-header__toggle:focus-visible {
    color: var(--rms-ink);
}

body:has(.reel-motion-page--studio) a:focus-visible,
body:has(.reel-motion-page--studio) button:focus-visible,
.reel-motion-page--studio a:focus-visible,
.reel-motion-page--studio button:focus-visible,
.reel-motion-page--studio summary:focus-visible {
    outline: 1px solid var(--rms-clay);
    outline-offset: 5px;
}

.reel-motion-page--studio .button {
    min-height: 48px;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.reel-motion-page--studio .button--primary {
    border-color: var(--rms-dark);
    background: var(--rms-dark);
    color: var(--rms-light);
}

.reel-motion-page--studio .button--primary:hover,
.reel-motion-page--studio .button--primary:focus-visible {
    border-color: var(--rms-moss);
    background: var(--rms-moss);
    color: var(--rms-light);
}

.reel-motion-page--studio .button--outline {
    border-color: rgba(17, 18, 15, 0.24);
    color: var(--rms-ink);
    background: transparent;
}

.reel-motion-page--studio .button--outline:hover,
.reel-motion-page--studio .button--outline:focus-visible {
    border-color: var(--rms-clay);
    color: var(--rms-clay);
}

.rm-studio-kicker,
.rm-studio-hero__meta,
.rm-studio-specs dt,
.rm-studio-work__item span,
.rm-studio-why__list span,
.rm-studio-process li span,
.rm-studio-pricing__table article > div > span,
.rm-studio-contact__note {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: uppercase;
}

.rm-studio-hero {
    position: relative;
    min-height: 88svh;
    display: grid;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 52px;
    background:
        linear-gradient(90deg, rgba(245, 241, 232, 0.98), rgba(245, 241, 232, 0.9) 58%, rgba(216, 209, 196, 0.72)),
        var(--rms-bg);
}

.rm-studio-hero__inner {
    display: grid;
    gap: 48px;
}

.rm-studio-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rms-line);
    color: rgba(17, 18, 15, 0.58);
}

.rm-studio-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 70px;
    align-items: end;
}

.rm-studio-hero__copy {
    max-width: 820px;
    min-width: 0;
}

.rm-studio-hero h1 {
    max-width: 820px;
    margin: 0;
    color: var(--rms-ink);
    font-size: 72px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.rm-studio-hero__copy > p {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--rms-muted);
    font-size: 18px;
    line-height: 1.72;
    overflow-wrap: break-word;
}

.rm-studio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.rm-studio-hero__panel {
    display: grid;
    justify-items: end;
    min-width: 0;
}

.rm-studio-device {
    width: min(100%, 360px);
    max-width: 100%;
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(17, 18, 15, 0.18);
    background: #242a26;
    color: var(--rms-light);
}

.rm-studio-device__screen {
    margin: 0;
    overflow: hidden;
    background: var(--rms-dark-soft);
    aspect-ratio: 9 / 13.5;
}

.rm-studio-device__screen img,
.rm-studio-device__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.04) brightness(0.9);
}

.rm-studio-device__caption {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 4px 2px;
    color: rgba(248, 245, 237, 0.62);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rm-studio-device__caption strong {
    color: var(--rms-light);
    font-weight: 700;
}

.rm-studio-specs {
    background: var(--rms-bg);
}

.rm-studio-specs dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--rms-line);
    border-bottom: 1px solid var(--rms-line);
}

.rm-studio-specs div {
    min-width: 0;
    padding: 22px 22px;
    border-right: 1px solid var(--rms-line);
}

.rm-studio-specs div:last-child {
    border-right: 0;
}

.rm-studio-specs dt,
.rm-studio-specs dd {
    margin: 0;
}

.rm-studio-specs dt {
    color: rgba(17, 18, 15, 0.46);
}

.rm-studio-specs dd {
    margin-top: 6px;
    color: var(--rms-ink);
    font-size: 1rem;
    line-height: 1.44;
}

.rm-studio-statement,
.rm-studio-work,
.rm-studio-why,
.rm-studio-process,
.rm-studio-pricing,
.rm-studio-faq {
    padding: 104px 0;
}

.rm-studio-statement {
    background: var(--rms-paper);
}

.rm-studio-statement__inner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.rm-studio-kicker {
    margin: 0;
    color: var(--rms-clay);
}

.rm-studio-statement h2,
.rm-studio-section-head h2,
.rm-studio-why h2,
.rm-studio-faq h2,
.rm-studio-contact h2 {
    margin: 12px 0 0;
    color: var(--rms-ink);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.rm-studio-statement h2 {
    max-width: 920px;
    margin-top: 0;
    font-size: 54px;
    line-height: 1.02;
}

.rm-studio-section-head {
    max-width: 820px;
    margin-bottom: 42px;
}

.rm-studio-work {
    background: var(--rms-bg);
}

.rm-studio-work__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    gap: 18px 36px;
    align-items: start;
}

.rm-studio-work__item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: end;
    min-width: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rms-line);
}

.rm-studio-work__item--feature {
    grid-row: span 4;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 0;
    border-bottom: 0;
}

.rm-studio-work__item figure {
    margin: 0;
    overflow: hidden;
    background: var(--rms-dark);
    aspect-ratio: 4 / 3.1;
}

.rm-studio-work__item--feature figure {
    aspect-ratio: 4 / 4.65;
}

.rm-studio-work__item img,
.rm-studio-work__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.04) brightness(0.9);
    transition: filter 0.28s ease, transform 0.42s ease;
}

.rm-studio-work__item:hover img,
.rm-studio-work__item:hover video {
    filter: saturate(0.96) contrast(1.06) brightness(0.98);
    transform: scale(1.025);
}

.rm-studio-work__item h3 {
    margin: 8px 0 0;
    color: var(--rms-ink);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.rm-studio-work__item--feature h3 {
    font-size: 1.7rem;
}

.rm-studio-work__item p {
    margin: 8px 0 0;
    color: var(--rms-muted);
    line-height: 1.56;
}

.rm-studio-work__item span,
.rm-studio-why__list span,
.rm-studio-process li span {
    color: rgba(17, 18, 15, 0.44);
}

.rm-studio-why {
    background: var(--rms-dark);
    color: var(--rms-light);
}

.rm-studio-why__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
    gap: 78px;
    align-items: start;
}

.rm-studio-why .rm-studio-kicker {
    color: #c9b29f;
}

.rm-studio-why h2 {
    color: var(--rms-light);
}

.rm-studio-why__list {
    border-top: 1px solid rgba(248, 245, 237, 0.14);
}

.rm-studio-why__list article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(248, 245, 237, 0.14);
}

.rm-studio-why__list span {
    color: rgba(248, 245, 237, 0.38);
}

.rm-studio-why__list h3 {
    margin: 0;
    color: var(--rms-light);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.24;
}

.rm-studio-why__list p {
    margin: 10px 0 0;
    color: rgba(248, 245, 237, 0.68);
    line-height: 1.68;
}

.rm-studio-process {
    background: var(--rms-bg);
}

.rm-studio-process ol {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--rms-line);
}

.rm-studio-process li {
    display: grid;
    grid-template-columns: 64px minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 26px;
    align-items: baseline;
    padding: 28px 0;
    border-bottom: 1px solid var(--rms-line);
}

.rm-studio-process li strong {
    color: var(--rms-ink);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.22;
}

.rm-studio-process li p {
    margin: 0;
    color: var(--rms-muted);
    line-height: 1.66;
}

.rm-studio-pricing {
    background: var(--rms-paper);
}

.rm-studio-pricing__table {
    border-top: 1px solid var(--rms-line);
}

.rm-studio-pricing__table article {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr) 120px;
    gap: 30px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--rms-line);
}

.rm-studio-pricing__table h3 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.22;
}

.rm-studio-pricing__table p {
    max-width: 480px;
    margin: 10px 0 0;
    color: var(--rms-muted);
    line-height: 1.62;
}

.rm-studio-pricing__table ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-studio-pricing__table li {
    color: rgba(17, 18, 15, 0.66);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.44;
    text-transform: uppercase;
}

.rm-studio-pricing__table article > strong {
    color: var(--rms-ink);
    font-family: var(--font-mono);
    font-size: 1.12rem;
    line-height: 1.25;
    text-align: right;
}

.rm-studio-pricing__table article > div > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--rms-clay);
}

.rm-studio-faq {
    background: var(--rms-bg);
}

.rm-studio-faq__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 72px;
}

.rm-studio-faq__list {
    border-top: 1px solid var(--rms-line);
}

.rm-studio-faq details {
    border-bottom: 1px solid var(--rms-line);
}

.rm-studio-faq summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    color: var(--rms-ink);
    cursor: pointer;
    font-size: 1.03rem;
    font-weight: 600;
    line-height: 1.34;
    list-style: none;
}

.rm-studio-faq summary::-webkit-details-marker {
    display: none;
}

.rm-studio-faq summary::after {
    flex: 0 0 auto;
    color: var(--rms-clay);
    font-family: var(--font-mono);
    content: "+";
}

.rm-studio-faq details[open] summary::after {
    content: "-";
}

.rm-studio-faq details p {
    max-width: 760px;
    margin: 0;
    padding: 0 0 24px;
    color: var(--rms-muted);
    line-height: 1.7;
}

.rm-studio-contact {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--rms-dark);
    color: var(--rms-light);
}

.rm-studio-contact__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
    gap: 64px;
    align-items: center;
    min-height: 560px;
    padding-top: 82px;
    padding-bottom: 82px;
}

.rm-studio-contact figure {
    position: relative;
    height: 100%;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    background: var(--rms-dark-soft);
}

.rm-studio-contact figure::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 9, 8, 0.1), rgba(8, 9, 8, 0.42));
    content: "";
}

.rm-studio-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.04) brightness(0.78);
}

.rm-studio-contact .rm-studio-kicker {
    color: #c9b29f;
}

.rm-studio-contact h2 {
    max-width: 640px;
    color: var(--rms-light);
}

.rm-studio-contact p:not(.rm-studio-kicker):not(.rm-studio-contact__note) {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(248, 245, 237, 0.72);
    line-height: 1.68;
}

.rm-studio-contact .button--primary {
    border-color: var(--rms-light);
    background: var(--rms-light);
    color: var(--rms-dark);
}

.rm-studio-contact .button--outline {
    border-color: rgba(248, 245, 237, 0.32);
    color: var(--rms-light);
}

.rm-studio-contact__note {
    margin: 20px 0 0;
    color: rgba(248, 245, 237, 0.5);
}

@media (max-width: 1040px) {
    .rm-studio-hero__grid,
    .rm-studio-why__inner,
    .rm-studio-faq__inner,
    .rm-studio-contact__inner {
        grid-template-columns: 1fr;
    }

    .rm-studio-hero__panel {
        justify-items: start;
    }

    .rm-studio-device {
        width: min(100%, 420px);
    }

    .rm-studio-statement__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rm-studio-work__grid {
        grid-template-columns: 1fr;
    }

    .rm-studio-work__item--feature {
        grid-row: auto;
    }

    .rm-studio-work__item--feature figure {
        aspect-ratio: 16 / 11;
    }

    .rm-studio-pricing__table article {
        grid-template-columns: minmax(0, 1fr) 120px;
    }

    .rm-studio-pricing__table ul {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 760px) {
    .rm-studio-hero {
        min-height: auto;
        padding: calc(var(--header-height) + 44px) 0 48px;
    }

    .rm-studio-hero__inner {
        gap: 34px;
    }

    .rm-studio-hero__grid {
        gap: 42px;
    }

    .rm-studio-hero h1 {
        font-size: 48px;
        line-height: 1.02;
    }

    .rm-studio-hero__copy > p {
        font-size: 17px;
    }

    .rm-studio-specs dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rm-studio-specs div:nth-child(2n) {
        border-right: 0;
    }

    .rm-studio-specs div:nth-child(n + 3) {
        border-top: 1px solid var(--rms-line);
    }

    .rm-studio-statement,
    .rm-studio-work,
    .rm-studio-why,
    .rm-studio-process,
    .rm-studio-pricing,
    .rm-studio-faq {
        padding: 72px 0;
    }

    .rm-studio-statement h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .rm-studio-section-head h2,
    .rm-studio-why h2,
    .rm-studio-faq h2,
    .rm-studio-contact h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .rm-studio-work__item,
    .rm-studio-process li,
    .rm-studio-why__list article {
        grid-template-columns: 1fr;
    }

    .rm-studio-work__item figure {
        aspect-ratio: 16 / 10;
    }

    .rm-studio-process li {
        gap: 10px;
    }

    .rm-studio-pricing__table article {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rm-studio-pricing__table ul {
        grid-column: auto;
        grid-row: auto;
    }

    .rm-studio-pricing__table article > strong {
        text-align: left;
    }

    .rm-studio-contact__inner {
        min-height: auto;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .rm-studio-contact figure {
        min-height: 320px;
    }
}

@media (max-width: 520px) {
    .reel-motion-page--studio .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .rm-studio-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .rm-studio-hero__copy > p {
        font-size: 16px;
        line-height: 1.62;
    }

    .rm-studio-actions .button {
        width: 100%;
        justify-content: center;
    }

    .rm-studio-specs dl {
        grid-template-columns: 1fr;
    }

    .rm-studio-specs div,
    .rm-studio-specs div:nth-child(2n) {
        border-right: 0;
    }

    .rm-studio-specs div + div {
        border-top: 1px solid var(--rms-line);
    }

    .rm-studio-device {
        width: calc(100% - 8px);
        padding: 8px;
    }

    .rm-studio-device__screen {
        aspect-ratio: 4 / 4.8;
    }

    .rm-studio-device__caption {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: start;
        font-size: 0.6rem;
    }

    .rm-studio-statement h2,
    .rm-studio-section-head h2,
    .rm-studio-why h2,
    .rm-studio-faq h2,
    .rm-studio-contact h2 {
        font-size: 30px;
    }
}

/* Reel Motion premium video-gallery refresh */
.reel-motion-page--studio {
    --rms-bg: #f5f1e8;
    --rms-ink: #11120f;
    --rms-muted: #666358;
    --rms-soft: #d8d1c4;
    --rms-line: rgba(17, 18, 15, 0.14);
    --rms-dark: #080908;
    --rms-dark-soft: #171915;
    --rms-paper: #fffdf7;
    --rms-olive: #506050;
    --rms-clay: #9a7258;
    --rms-light: #f8f5ed;
    background: var(--rms-bg);
    color: var(--rms-ink);
}

body:has(.reel-motion-page--studio) {
    background: var(--rms-bg);
}

body:has(.reel-motion-page--studio) .site-header:not(.is-scrolled):not(.is-open) {
    border-bottom-color: rgba(247, 246, 240, 0.14);
    background: transparent;
}

body:has(.reel-motion-page--studio) .site-header.is-scrolled,
body:has(.reel-motion-page--studio) .site-header.is-open {
    border-bottom-color: rgba(16, 17, 15, 0.08);
    background: rgba(244, 245, 242, 0.9);
    backdrop-filter: blur(18px);
}

body:has(.reel-motion-page--studio) .site-header:not(.is-scrolled):not(.is-open) .site-header__toggle,
body:has(.reel-motion-page--studio) .site-header:not(.is-scrolled):not(.is-open) .site-header__menu a {
    color: rgba(247, 246, 240, 0.78);
}

body:has(.reel-motion-page--studio) .site-header.is-scrolled .site-header__toggle,
body:has(.reel-motion-page--studio) .site-header.is-open .site-header__toggle,
body:has(.reel-motion-page--studio) .site-header.is-scrolled .site-header__menu a,
body:has(.reel-motion-page--studio) .site-header.is-open .site-header__menu a {
    color: rgba(16, 17, 15, 0.72);
}

body:has(.reel-motion-page--studio) .site-header:not(.is-scrolled):not(.is-open) .site-header__logo img {
    filter: none;
    opacity: 0.9;
}

body:has(.reel-motion-page--studio) .site-header.is-scrolled .site-header__logo img,
body:has(.reel-motion-page--studio) .site-header.is-open .site-header__logo img {
    filter: invert(1);
    opacity: 0.82;
}

.rm-studio-kicker,
.rm-studio-hero__meta,
.rm-studio-specs dt,
.rm-studio-video-card span,
.rm-studio-why__list span,
.rm-studio-process li span,
.rm-studio-price-table th span,
.rm-studio-contact__note {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: uppercase;
}

.rm-studio-hero {
    position: relative;
    min-height: 92svh;
    display: grid;
    align-items: stretch;
    padding: calc(var(--header-height) + 34px) 0 72px;
    overflow: hidden;
    isolation: isolate;
    background: var(--rms-dark);
    color: var(--rms-light);
}

.rm-studio-hero__video,
.rm-studio-hero__shade {
    position: absolute;
    inset: 0;
}

.rm-studio-hero__video {
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.74) contrast(1.08) brightness(0.54);
}

.rm-studio-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 8, 7, 0.82), rgba(7, 8, 7, 0.55) 48%, rgba(7, 8, 7, 0.22)),
        linear-gradient(180deg, rgba(7, 8, 7, 0.28), rgba(7, 8, 7, 0.8));
}

.rm-studio-hero__inner {
    min-height: calc(92svh - var(--header-height) - 106px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 72px;
}

.rm-studio-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(247, 246, 240, 0.2);
    color: rgba(247, 246, 240, 0.68);
}

.rm-studio-hero__grid,
.rm-studio-hero__panel,
.rm-studio-device {
    display: none;
}

.rm-studio-hero__copy {
    width: min(100%, 940px);
    max-width: 940px;
    min-width: 0;
}

.rm-studio-hero h1 {
    max-width: 920px;
    margin: 0;
    color: var(--rms-light);
    font-size: 92px;
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: break-word;
}

.rm-studio-hero__copy > p {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(247, 246, 240, 0.76);
    font-size: 19px;
    line-height: 1.68;
    overflow-wrap: break-word;
}

.rm-studio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.rm-studio-hero .button--primary {
    border-color: var(--rms-light);
    background: var(--rms-light);
    color: var(--rms-dark);
}

.rm-studio-hero .button--primary:hover,
.rm-studio-hero .button--primary:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--rms-dark);
}

.rm-studio-hero .button--outline {
    border-color: rgba(247, 246, 240, 0.34);
    color: var(--rms-light);
}

.rm-studio-hero .button--outline:hover,
.rm-studio-hero .button--outline:focus-visible {
    border-color: var(--rms-light);
    color: var(--rms-light);
}

.rm-studio-specs {
    background: var(--rms-bg);
}

.rm-studio-statement,
.rm-studio-work,
.rm-studio-why,
.rm-studio-process,
.rm-studio-pricing,
.rm-studio-faq {
    padding: 112px 0;
}

.rm-studio-statement {
    background: var(--rms-paper);
}

.rm-studio-section-head {
    max-width: none;
    margin-bottom: 50px;
}

.rm-studio-section-head h2,
.rm-studio-why h2,
.rm-studio-faq h2,
.rm-studio-contact h2 {
    max-width: 860px;
}

.rm-studio-work {
    background: var(--rms-paper);
}

.rm-studio-video-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 34px 18px;
}

.rm-studio-video-card {
    grid-column: span 5;
    display: grid;
    gap: 16px;
    min-width: 0;
    padding-top: 14px;
    border-top: 1px solid var(--rms-line);
}

.rm-studio-video-card--feature {
    grid-column: span 7;
}

.rm-studio-video-card:nth-child(n + 3) {
    grid-column: span 6;
}

.rm-studio-video-card figure {
    margin: 0;
    overflow: hidden;
    background: var(--rms-dark);
    aspect-ratio: 16 / 10;
}

.rm-studio-video-card--feature figure {
    aspect-ratio: 16 / 9;
}

.rm-studio-video-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.05) brightness(0.9);
    transition: filter 0.28s ease, transform 0.42s ease;
}

.rm-studio-video-card:hover video {
    filter: saturate(1) contrast(1.06) brightness(0.98);
    transform: scale(1.018);
}

.rm-studio-video-card > div {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 2px 18px;
    align-items: baseline;
}

.rm-studio-video-card span {
    grid-row: span 2;
    color: rgba(16, 17, 15, 0.42);
}

.rm-studio-video-card h3 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 1.24rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.rm-studio-video-card--feature h3 {
    font-size: 1.72rem;
}

.rm-studio-video-card p {
    margin: 6px 0 0;
    color: var(--rms-muted);
    line-height: 1.54;
}

.rm-studio-pricing {
    background: var(--rms-bg);
}

.rm-studio-price-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-top: 1px solid var(--rms-line);
    -webkit-overflow-scrolling: touch;
}

.rm-studio-price-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
    table-layout: fixed;
}

.rm-studio-price-table th,
.rm-studio-price-table td {
    padding: 24px 18px;
    border-bottom: 1px solid var(--rms-line);
    color: var(--rms-muted);
    line-height: 1.62;
    text-align: left;
    vertical-align: top;
}

.rm-studio-price-table thead th {
    color: rgba(16, 17, 15, 0.46);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: uppercase;
}

.rm-studio-price-table th:first-child {
    width: 24%;
}

.rm-studio-price-table th:nth-child(2),
.rm-studio-price-table td:nth-child(2) {
    width: 14%;
    color: var(--rms-ink);
    font-family: var(--font-mono);
    font-weight: 700;
    white-space: nowrap;
}

.rm-studio-price-table tbody th {
    color: var(--rms-ink);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.24;
}

.rm-studio-price-table tbody th span {
    display: block;
    margin-bottom: 8px;
    color: var(--rms-clay);
}

.rm-studio-price-table tbody tr.is-featured {
    background: rgba(70, 88, 77, 0.08);
}

.rm-studio-price-table tbody tr.is-featured th,
.rm-studio-price-table tbody tr.is-featured td {
    border-bottom-color: rgba(70, 88, 77, 0.22);
}

.rm-studio-contact {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background:
        linear-gradient(90deg, rgba(7, 8, 7, 0.98), rgba(17, 20, 15, 0.94)),
        var(--rms-dark);
    color: var(--rms-light);
}

.rm-studio-contact__inner {
    display: block;
    max-width: 980px;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.rm-studio-contact figure {
    display: none;
}

.rm-studio-contact .rm-studio-kicker {
    color: #c8b09e;
}

.rm-studio-contact h2 {
    max-width: 760px;
    color: var(--rms-light);
}

.rm-studio-contact p:not(.rm-studio-kicker):not(.rm-studio-contact__note) {
    max-width: 560px;
}

@media (max-width: 1040px) {
    .rm-studio-hero {
        min-height: 86svh;
    }

    .rm-studio-hero__inner {
        min-height: calc(86svh - var(--header-height) - 106px);
        gap: 56px;
    }

    .rm-studio-hero h1 {
        font-size: 70px;
    }

    .rm-studio-video-card,
    .rm-studio-video-card:nth-child(n + 3) {
        grid-column: span 6;
    }

    .rm-studio-video-card--feature {
        grid-column: span 12;
    }
}

@media (max-width: 760px) {
    .rm-studio-hero {
        min-height: 82svh;
        padding: calc(var(--header-height) + 34px) 0 56px;
    }

    .rm-studio-hero__inner {
        min-height: calc(82svh - var(--header-height) - 90px);
        gap: 44px;
    }

    .rm-studio-hero__meta {
        display: grid;
        justify-content: stretch;
    }

    .rm-studio-hero h1 {
        max-width: 12ch;
        font-size: 42px;
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .rm-studio-hero__copy > p {
        font-size: 17px;
    }

    .rm-studio-statement,
    .rm-studio-work,
    .rm-studio-why,
    .rm-studio-process,
    .rm-studio-pricing,
    .rm-studio-faq {
        padding: 78px 0;
    }

    .rm-studio-video-card,
    .rm-studio-video-card--feature,
    .rm-studio-video-card:nth-child(n + 3) {
        grid-column: span 12;
    }

    .rm-studio-video-card--feature figure,
    .rm-studio-video-card figure {
        aspect-ratio: 16 / 10;
    }

    .rm-studio-price-table {
        min-width: 700px;
    }

    .rm-studio-price-table th,
    .rm-studio-price-table td {
        padding: 20px 14px;
    }

    .rm-studio-contact {
        padding: 78px 0;
    }
}

@media (max-width: 520px) {
    .rm-studio-hero h1 {
        max-width: 12ch;
        font-size: 34px;
        line-height: 1.07;
    }

    .rm-studio-hero__copy > p {
        font-size: 16px;
        line-height: 1.62;
    }

    .rm-studio-video-card > div {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 2px 14px;
    }

    .rm-studio-video-card h3,
    .rm-studio-video-card--feature h3 {
        font-size: 1.12rem;
    }
}

/* Reel Motion client polish: brighter hero, masonry samples, table cards */
.rm-studio-hero__video {
    filter: saturate(0.94) contrast(1.02) brightness(0.9);
}

.rm-studio-hero__shade {
    background:
        linear-gradient(0deg, rgba(210, 218, 209, 0.16), rgba(210, 218, 209, 0.16)),
        linear-gradient(90deg, rgba(7, 8, 7, 0.5), rgba(7, 8, 7, 0.26) 48%, rgba(7, 8, 7, 0.08)),
        linear-gradient(180deg, rgba(7, 8, 7, 0.08), rgba(7, 8, 7, 0.48));
}

.rm-studio-hero__copy > p {
    color: rgba(247, 246, 240, 0.86);
}

.rm-studio-hero h1,
.rm-studio-hero__copy > p {
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.42);
}

.rm-studio-video-gallery {
    display: block;
    column-count: 2;
    column-gap: 24px;
}

.rm-studio-video-card,
.rm-studio-video-card:nth-child(n + 3),
.rm-studio-video-card--feature {
    display: inline-block;
    width: 100%;
    min-width: 0;
    margin: 0 0 34px;
    padding: 0;
    border: 0;
    break-inside: avoid;
    page-break-inside: avoid;
    will-change: transform, opacity, filter, clip-path;
}

.rm-studio-video-card--wide {
    --rm-video-ratio: 16 / 9;
}

.rm-studio-video-card--square {
    --rm-video-ratio: 1 / 1;
}

.rm-studio-video-card--story {
    --rm-video-ratio: 9 / 16;
}

.rm-studio-video-card--panorama {
    --rm-video-ratio: 19 / 6;
}

.rm-studio-video-card figure,
.rm-studio-video-card--feature figure,
.rm-studio-video-card--feature figure,
.rm-studio-video-card figure {
    aspect-ratio: var(--rm-video-ratio, 16 / 9);
    margin: 0;
    overflow: hidden;
    background: var(--rms-dark);
}

.rm-studio-video-card video {
    height: 100%;
    will-change: transform;
}

.rm-studio-video-card > div {
    margin-top: 14px;
}

.rm-studio-pricing {
    background: #f0f1ed;
}

.rm-studio-price-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rm-studio-price-card {
    min-width: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 60px rgba(16, 17, 15, 0.07);
}

.rm-studio-price-card.is-featured {
    background: var(--rms-dark);
    color: var(--rms-light);
}

.rm-studio-price-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    min-height: 156px;
    align-content: space-between;
}

.rm-studio-price-card__head p,
.rm-studio-price-card__table dt,
.rm-studio-price-card__tag {
    margin: 0;
    color: rgba(16, 17, 15, 0.45);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: uppercase;
}

.rm-studio-price-card__tag {
    display: inline-flex;
    margin: 0 0 12px;
    color: var(--rms-clay);
}

.rm-studio-price-card h3 {
    margin: 8px 0 0;
    color: var(--rms-ink);
    font-size: 1.32rem;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0;
}

.rm-studio-price-card__head strong {
    display: block;
    color: var(--rms-ink);
    font-family: var(--font-primary);
    font-variant-numeric: tabular-nums;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}

.rm-studio-price-card__table {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
}

.rm-studio-price-card__table div {
    min-width: 0;
    padding: 16px;
    background: rgba(16, 17, 15, 0.045);
}

.rm-studio-price-card__table dd {
    margin: 8px 0 0;
    color: var(--rms-muted);
    line-height: 1.62;
}

.rm-studio-price-card.is-featured h3,
.rm-studio-price-card.is-featured .rm-studio-price-card__head strong {
    color: var(--rms-light);
}

.rm-studio-price-card.is-featured .rm-studio-price-card__head p,
.rm-studio-price-card.is-featured .rm-studio-price-card__table dt {
    color: rgba(247, 246, 240, 0.48);
}

.rm-studio-price-card.is-featured .rm-studio-price-card__tag {
    color: #d4b596;
}

.rm-studio-price-card.is-featured .rm-studio-price-card__table div {
    background: rgba(247, 246, 240, 0.085);
}

.rm-studio-price-card.is-featured .rm-studio-price-card__table dd {
    color: rgba(247, 246, 240, 0.72);
}

@media (max-width: 1120px) {
    .rm-studio-price-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    .rm-studio-video-gallery {
        column-count: 2;
    }
}

@media (max-width: 760px) {
    .rm-studio-hero__video {
        filter: saturate(0.94) contrast(1.02) brightness(0.82);
    }

    .rm-studio-hero__shade {
        background:
            linear-gradient(0deg, rgba(210, 218, 209, 0.14), rgba(210, 218, 209, 0.14)),
            linear-gradient(90deg, rgba(7, 8, 7, 0.52), rgba(7, 8, 7, 0.3)),
            linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.56));
    }

    .rm-studio-video-gallery {
        column-count: 1;
    }

    .rm-studio-video-card,
    .rm-studio-video-card:nth-child(n + 3),
    .rm-studio-video-card--feature {
        grid-column: auto;
        margin-bottom: 30px;
    }

    .rm-studio-video-card--feature figure,
    .rm-studio-video-card figure {
        aspect-ratio: var(--rm-video-ratio, 16 / 9);
    }

    .rm-studio-price-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rm-studio-price-card {
        padding: 22px;
    }

    .rm-studio-price-card__head {
        min-height: auto;
        gap: 18px;
    }
}

/* Reel Motion premium pricing deck */
.rm-studio-pricing {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, #11140f 0%, #0a0c09 100%);
    color: var(--rms-light);
}

.rm-studio-pricing .rm-studio-kicker {
    color: #d4b596;
}

.rm-studio-pricing .rm-studio-section-head h2 {
    color: var(--rms-light);
}

.rm-studio-price-cards {
    align-items: stretch;
    gap: 12px;
    will-change: filter, clip-path;
}

.rm-studio-price-card {
    position: relative;
    display: flex;
    min-height: 560px;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(247, 246, 240, 0.98), rgba(238, 239, 233, 0.96));
    color: var(--rms-ink);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
    transform-origin: 50% 100%;
    will-change: transform, opacity, filter, clip-path;
}

.rm-studio-price-card.is-featured {
    background:
        linear-gradient(180deg, #f7f3ea 0%, #d9cbb8 100%);
    color: var(--rms-ink);
    transform: translateY(-18px);
}

.rm-studio-price-card__head {
    min-height: 210px;
    align-content: start;
    gap: 32px;
}

.rm-studio-price-card__head p,
.rm-studio-price-card__table dt,
.rm-studio-price-card__tag {
    color: rgba(16, 17, 15, 0.46);
}

.rm-studio-price-card__tag {
    width: fit-content;
    padding: 7px 10px;
    background: rgba(17, 20, 15, 0.08);
    color: #79563c;
}

.rm-studio-price-card h3 {
    margin-top: 12px;
    font-size: 1.42rem;
}

.rm-studio-price-card__head strong {
    margin-top: auto;
    font-size: clamp(2.5rem, 4.2vw, 4.1rem);
    letter-spacing: 0;
}

.rm-studio-price-card__table {
    gap: 22px;
    margin-top: 18px;
}

.rm-studio-price-card__table div {
    padding: 0;
    background: transparent;
    will-change: transform, opacity, filter;
}

.rm-studio-price-card__table dd {
    max-width: 28ch;
    color: rgba(16, 17, 15, 0.66);
    font-size: 0.98rem;
}

.rm-studio-price-card__cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 18px;
    background: var(--rms-ink);
    color: var(--rms-light);
    font-family: var(--font-primary);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
    will-change: transform, opacity, filter;
}

.rm-studio-price-card__cta:hover,
.rm-studio-price-card__cta:focus-visible {
    background: #8a6247;
    color: var(--rms-light);
    transform: translateY(-1px);
}

.rm-studio-price-card.is-featured h3,
.rm-studio-price-card.is-featured .rm-studio-price-card__head strong {
    color: var(--rms-ink);
}

.rm-studio-price-card.is-featured .rm-studio-price-card__head p,
.rm-studio-price-card.is-featured .rm-studio-price-card__table dt {
    color: rgba(16, 17, 15, 0.48);
}

.rm-studio-price-card.is-featured .rm-studio-price-card__tag {
    background: var(--rms-ink);
    color: var(--rms-light);
}

.rm-studio-price-card.is-featured .rm-studio-price-card__table div {
    background: transparent;
}

.rm-studio-price-card.is-featured .rm-studio-price-card__table dd {
    color: rgba(16, 17, 15, 0.7);
}

@media (max-width: 1120px) {
    .rm-studio-price-card.is-featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .rm-studio-pricing {
        background: #0a0c09;
    }

    .rm-studio-price-card {
        min-height: auto;
        padding: 24px;
    }

    .rm-studio-price-card__head {
        min-height: auto;
        gap: 28px;
    }

    .rm-studio-price-card__head strong {
        font-size: 3rem;
    }

    .rm-studio-price-card__table dd {
        max-width: none;
    }

    .rm-studio-price-card__cta {
        width: 100%;
        margin-top: 28px;
    }
}

/* Reel Motion no-line studio finish */
.rm-studio-specs dl,
.rm-studio-specs div,
.rm-studio-process ol,
.rm-studio-process li,
.rm-studio-pricing__table,
.rm-studio-pricing__table article,
.rm-studio-price-table-wrap,
.rm-studio-faq__list,
.rm-studio-faq details,
.rm-studio-video-card,
.rm-studio-video-card:nth-child(n + 3),
.rm-studio-video-card--feature {
    border: 0;
}

.has-reel-motion-studio .site-header,
.reel-motion-page--studio .rm-studio-hero__meta {
    border: 0;
}

/* Sitewide Reel Motion palette alignment */
body {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.eyebrow,
.site-header__nav-label,
.site-header__nav-kicker,
.portfolio-mersi__label,
.contact-methods span,
.contact-response span,
.contact-form label > span,
.contact-details article > span,
.home-works__cat {
    color: var(--rms-clay);
}

.button--primary {
    border-color: var(--rms-dark);
    background: var(--rms-dark);
    color: var(--rms-light);
}

.button--primary:hover,
.button--primary:focus-visible {
    border-color: var(--rms-moss);
    background: var(--rms-moss);
    color: var(--rms-light);
}

.button--outline {
    border-color: rgba(17, 18, 15, 0.24);
    color: var(--rms-ink);
}

.hero .button--outline,
.home-works .button--outline,
.about-approach .button--outline,
.contact-panel .button--outline,
.contact-details .button--outline,
.site-footer .button--outline {
    border-color: rgba(248, 245, 237, 0.28);
    color: var(--rms-light);
}

.site-header.is-scrolled,
.site-header.is-open {
    border-bottom-color: rgba(17, 18, 15, 0.08);
    background: rgba(245, 241, 232, 0.88);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled .site-header__toggle,
.site-header.is-open .site-header__toggle,
.site-header.is-scrolled .site-header__menu a,
.site-header.is-open .site-header__menu a {
    color: rgba(17, 18, 15, 0.74);
}

.site-header.is-scrolled .site-header__logo img,
.site-header.is-open .site-header__logo img {
    filter: invert(1);
    opacity: 0.84;
}

.site-header__nav {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.site-header__nav::before,
.site-header__nav::after {
    background: rgba(216, 209, 196, 0.52);
}

.site-header__nav-aside p,
.site-header__nav-meta,
.site-header__nav-social a {
    color: rgba(17, 18, 15, 0.62);
}

.site-header__nav-aside a,
.site-header__nav .site-header__menu a:hover,
.site-header__nav .site-header__menu a:focus-visible {
    color: var(--rms-ink);
}

.home-works {
    background:
        linear-gradient(180deg, var(--rms-dark) 0%, #11140f 48%, var(--rms-dark) 100%);
    color: var(--rms-light);
}

.home-works__header h2,
.home-works__title {
    color: var(--rms-light);
}

.home-works__media::before {
    background:
        linear-gradient(180deg, rgba(8, 9, 8, 0.38) 0%, rgba(8, 9, 8, 0.04) 38%, rgba(8, 9, 8, 0.76) 100%),
        linear-gradient(90deg, rgba(8, 9, 8, 0.52) 0%, transparent 28%, transparent 72%, rgba(8, 9, 8, 0.44) 100%);
}

.about-page,
.about-overview,
.portfolio-mersi,
.preview-service {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.about-overview__copy p,
.preview-service p:not(.eyebrow),
.portfolio-mersi__intro h1,
.portfolio-mersi__caption span {
    color: rgba(17, 18, 15, 0.66);
}

.about-approach,
.about-people,
.contact-page,
.contact-panel,
.contact-details,
.site-footer,
.preview-about {
    background: var(--rms-dark);
    color: var(--rms-light);
}

.about-approach__heading h2,
.about-people__heading h2,
.contact-panel__info h2,
.contact-details h3 {
    color: rgba(248, 245, 237, 0.92);
}

.about-approach__grid article,
.about-roster article,
.contact-details article,
.contact-methods a,
.contact-methods div,
.contact-response {
    background: rgba(248, 245, 237, 0.055);
    border-color: rgba(248, 245, 237, 0.08);
}

.about-approach__grid article p,
.about-people__heading p,
.contact-details p,
.contact-methods strong,
.contact-response strong {
    color: rgba(248, 245, 237, 0.66);
}

.contact-form {
    border-color: rgba(248, 245, 237, 0.08);
    background:
        linear-gradient(145deg, rgba(248, 245, 237, 0.08), rgba(248, 245, 237, 0.028)),
        rgba(23, 25, 21, 0.82);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(248, 245, 237, 0.075);
    color: var(--rms-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: rgba(248, 245, 237, 0.12);
}

.contact-form select option {
    background: var(--rms-dark-soft);
    color: var(--rms-light);
}

.contact-hero__media::before {
    background:
        linear-gradient(90deg, rgba(8, 9, 8, 0.94), rgba(8, 9, 8, 0.68) 48%, rgba(8, 9, 8, 0.9)),
        linear-gradient(180deg, rgba(8, 9, 8, 0.24), rgba(8, 9, 8, 0.98) 94%);
}

.contact-hero__media::after {
    background: linear-gradient(180deg, transparent, var(--rms-dark));
}

.site-footer {
    border-top-color: rgba(248, 245, 237, 0.08);
}

.site-footer__copyright {
    color: rgba(248, 245, 237, 0.52);
}

.portfolio-mersi {
    --mersi-paper: var(--rms-bg);
    --mersi-ink: var(--rms-ink);
    --mersi-muted: rgba(17, 18, 15, 0.58);
    --mersi-accent: var(--rms-clay);
    background: var(--rms-bg);
    color: var(--rms-ink);
}

body:has(.portfolio-mersi) {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

body:has(.portfolio-mersi) .site-header {
    color: var(--rms-ink);
}

body:has(.portfolio-mersi) .site-header:not(.is-scrolled):not(.is-open) .site-header__toggle,
body:has(.portfolio-mersi) .site-header:not(.is-scrolled):not(.is-open) .site-header__menu a {
    color: rgba(17, 18, 15, 0.68);
}

body:has(.portfolio-mersi) .site-header:not(.is-scrolled):not(.is-open) .site-header__logo img {
    filter: invert(1);
    opacity: 0.82;
}

.portfolio-mersi__label,
.portfolio-mersi__intro h1,
.portfolio-mersi__filters {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.portfolio-mersi__intro h1 {
    color: var(--rms-ink);
}

.portfolio-mersi__filters {
    position: relative !important;
    top: auto !important;
    display: flex !important;
    width: max-content;
    max-width: calc(100% - 28px);
    margin: 0 auto clamp(28px, 4vw, 54px) !important;
    padding: 6px;
    border: 0;
    background: rgba(255, 253, 247, 0.72);
    box-shadow: 0 18px 52px rgba(80, 72, 58, 0.12);
    visibility: visible !important;
    pointer-events: auto;
}

.portfolio-mersi__gallery {
    clip-path: none !important;
    transform: none !important;
}

.portfolio-mersi__filters.is-compact {
    border-color: transparent;
    background: rgba(255, 253, 247, 0.86);
}

.portfolio-mersi__filters button {
    color: rgba(17, 18, 15, 0.52);
}

.portfolio-mersi__filters button:hover,
.portfolio-mersi__filters button.is-active {
    color: var(--rms-clay);
}

.portfolio-mersi__filters button.is-active {
    background: rgba(154, 114, 88, 0.1);
}

.portfolio-mersi__filters button::after {
    background: var(--rms-clay);
}

.portfolio-mersi__caption strong {
    color: var(--rms-ink);
}

.portfolio-mersi__caption small,
.portfolio-mersi__caption span {
    color: rgba(17, 18, 15, 0.52);
}

body:has(.portfolio-mersi) .site-footer {
    border-top: 0;
    background: var(--rms-bg);
    color: var(--rms-ink);
}

body:has(.portfolio-mersi) .site-footer__copyright {
    color: rgba(17, 18, 15, 0.52);
}

.project-page--editorial .project-cover__breadcrumb,
.project-page--editorial .project-cover h1,
.project-page--editorial .project-cover__meta,
.project-page--editorial .project-cover__meta li {
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.project-page--editorial .project-cover__breadcrumb {
    color: rgba(248, 245, 237, 0.7);
}

.project-page--editorial .project-cover__breadcrumb a {
    color: rgba(248, 245, 237, 0.88);
}

.project-page--editorial .project-cover__meta {
    background:
        linear-gradient(145deg, rgba(248, 245, 237, 0.12), rgba(248, 245, 237, 0.035)),
        rgba(8, 9, 8, 0.44);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.project-page--editorial .project-cover__meta span {
    color: var(--rms-clay);
}

.project-page--editorial .project-cover__meta strong {
    color: rgba(248, 245, 237, 0.9);
}

.about-hero__bg {
    background:
        linear-gradient(90deg, rgba(8, 9, 8, 0.7), rgba(8, 9, 8, 0.18) 54%, rgba(8, 9, 8, 0.68)),
        linear-gradient(180deg, rgba(8, 9, 8, 0.14), rgba(8, 9, 8, 0.68)),
        url("../images/about-bg.jpg") center / cover;
    filter: saturate(0.9) contrast(1.04) brightness(1.04);
}

.about-hero::after {
    background: linear-gradient(180deg, transparent, var(--rms-dark));
}

.about-hero .eyebrow,
.about-hero h1 {
    color: var(--rms-light);
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Home works dark finish */
.preview-home .home-works,
body.home .home-works,
body.front-page .home-works {
    background:
        linear-gradient(180deg, var(--rms-dark) 0%, #11140f 48%, var(--rms-dark) 100%);
    color: var(--rms-light);
}

.preview-home .home-works__header h2,
.preview-home .home-works__title,
body.home .home-works__header h2,
body.home .home-works__title,
body.front-page .home-works__header h2,
body.front-page .home-works__title {
    color: var(--rms-light);
}

.preview-home .home-works__item,
body.home .home-works__item,
body.front-page .home-works__item {
    background: #11140f;
}

.preview-home .home-works__media::before,
body.home .home-works__media::before,
body.front-page .home-works__media::before {
    background:
        linear-gradient(180deg, rgba(8, 9, 8, 0.28) 0%, rgba(8, 9, 8, 0.08) 42%, rgba(8, 9, 8, 0.82) 100%),
        linear-gradient(90deg, rgba(8, 9, 8, 0.46) 0%, transparent 28%, transparent 72%, rgba(8, 9, 8, 0.36) 100%);
}

.preview-home .home-works__media::after,
body.home .home-works__media::after,
body.front-page .home-works__media::after {
    background:
        radial-gradient(circle at var(--home-work-x, 50%) var(--home-work-y, 44%), rgba(247, 244, 236, 0.1), transparent 24%),
        linear-gradient(90deg, transparent 0%, rgba(183, 155, 97, 0.1) 50%, transparent 100%);
    mix-blend-mode: soft-light;
}

.preview-home .home-works__media img,
body.home .home-works__media img,
body.front-page .home-works__media img {
    filter: brightness(0.88) saturate(0.88) contrast(1.04);
}

.preview-home .home-works__info,
body.home .home-works__info,
body.front-page .home-works__info {
    background:
        linear-gradient(180deg, transparent 0%, rgba(8, 9, 8, 0.34) 58%, rgba(8, 9, 8, 0.86) 100%);
}

.preview-home .home-works__num,
.preview-home .home-works__cat,
body.home .home-works__num,
body.home .home-works__cat,
body.front-page .home-works__num,
body.front-page .home-works__cat {
    color: rgba(245, 241, 232, 0.68);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.46);
}

.preview-home .home-works__item:hover .home-works__num,
body.home .home-works__item:hover .home-works__num,
body.front-page .home-works__item:hover .home-works__num {
    color: rgba(245, 241, 232, 0.9);
}

.preview-home .home-works__item:hover .home-works__cat,
body.home .home-works__item:hover .home-works__cat,
body.front-page .home-works__item:hover .home-works__cat {
    color: rgba(183, 155, 97, 0.95);
}

.preview-home .home-works__title,
body.home .home-works__title,
body.front-page .home-works__title {
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.56);
}

.preview-home .home-works__item:hover .home-works__title,
body.home .home-works__item:hover .home-works__title,
body.front-page .home-works__item:hover .home-works__title {
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.64);
}

.preview-home .home-works__info::after,
body.home .home-works__info::after,
body.front-page .home-works__info::after {
    background-color: rgba(245, 241, 232, 0.82);
    color: var(--rms-dark);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.preview-home .home-works__item:hover .home-works__info::after,
body.home .home-works__item:hover .home-works__info::after,
body.front-page .home-works__item:hover .home-works__info::after {
    background-color: var(--rms-light);
}

.preview-home .home-works .button--outline,
body.home .home-works .button--outline,
body.front-page .home-works .button--outline {
    border-color: rgba(245, 241, 232, 0.34);
    color: var(--rms-light);
}

.preview-home .site-footer,
body.home .site-footer,
body.front-page .site-footer {
    border-top: 0;
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.preview-home .site-footer__copyright,
body.home .site-footer__copyright,
body.front-page .site-footer__copyright {
    color: rgba(17, 18, 15, 0.52);
}

/* About atelier redesign */
.about-page--atelier {
    --about-paper: #fffdf7;
    --about-soft: #eee8dd;
    --about-muted: rgba(17, 18, 15, 0.62);
    --about-faint: rgba(17, 18, 15, 0.1);
    background: var(--rms-bg);
    color: var(--rms-ink);
    overflow: hidden;
}

body:has(.about-page--atelier) {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

body:has(.about-page--atelier) .site-header {
    color: var(--rms-ink);
}

body:has(.about-page--atelier) .site-header:not(.is-scrolled):not(.is-open) .site-header__toggle,
body:has(.about-page--atelier) .site-header:not(.is-scrolled):not(.is-open) .site-header__menu a {
    color: rgba(17, 18, 15, 0.68);
}

body:has(.about-page--atelier) .site-header:not(.is-scrolled):not(.is-open) .site-header__logo img {
    filter: invert(1);
    opacity: 0.82;
}

.about-page--atelier .eyebrow {
    color: var(--rms-clay);
    letter-spacing: 0;
}

.about-page--atelier .about-hero,
.about-page--atelier .about-overview,
.about-page--atelier .about-approach,
.about-page--atelier .about-visual-story,
.about-page--atelier .about-people {
    background: transparent;
    color: var(--rms-ink);
}

.about-page--atelier .about-hero {
    position: relative;
    min-height: auto;
    padding: calc(var(--header-height) + clamp(58px, 8vw, 118px)) 0 clamp(72px, 9vw, 132px);
    overflow: hidden;
}

.about-page--atelier .about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, var(--rms-bg) 0%, var(--about-paper) 58%, var(--rms-paper) 100%);
    filter: none;
    opacity: 1;
}

.about-page--atelier .about-hero::after,
.about-page--atelier .about-overview__media::after,
.about-page--atelier .about-approach::before,
.about-page--atelier .about-approach__grid article::before,
.about-page--atelier .about-roster article::before {
    display: none;
}

.about-page--atelier .about-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: end;
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.about-page--atelier .about-hero__copy {
    display: grid;
    gap: clamp(22px, 3vw, 34px);
    max-width: 820px;
}

.about-page--atelier .about-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--rms-ink);
    font-size: 7.4rem;
    line-height: 0.92;
    letter-spacing: 0;
}

.about-page--atelier .about-hero__lede {
    max-width: 650px;
    margin: 0;
    color: var(--about-muted);
    font-size: 1.22rem;
    line-height: 1.68;
}

.about-page--atelier .about-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    max-width: 760px;
}

.about-page--atelier .about-hero__stats span {
    display: grid;
    gap: 8px;
    min-height: 102px;
    padding: 22px 20px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.78);
    box-shadow: 0 20px 58px rgba(80, 72, 58, 0.12);
}

.about-page--atelier .about-hero__stats strong {
    color: var(--rms-ink);
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0;
}

.about-page--atelier .about-hero__stats small {
    color: rgba(17, 18, 15, 0.5);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: uppercase;
}

.about-page--atelier .about-hero__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--about-soft);
    box-shadow: 0 34px 90px rgba(80, 72, 58, 0.18);
}

.about-page--atelier .about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.02) brightness(1.04);
}

.about-page--atelier .about-overview {
    padding: clamp(78px, 10vw, 148px) 0;
    background: var(--rms-paper);
}

.about-page--atelier .about-overview__inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr) minmax(260px, 0.72fr);
    gap: clamp(30px, 5vw, 78px);
    align-items: start;
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.about-page--atelier .about-overview__intro {
    display: grid;
    gap: 20px;
}

.about-page--atelier .about-overview__intro h2 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0;
}

.about-page--atelier .about-overview__copy {
    display: grid;
    gap: 20px;
    max-width: none;
    color: var(--about-muted);
}

.about-page--atelier .about-overview__copy p,
.about-page--atelier .about-overview__copy p:first-child {
    margin: 0;
    color: var(--about-muted);
    font-size: 1.08rem;
    line-height: 1.76;
}

.about-page--atelier .about-overview__copy p:first-child {
    color: rgba(17, 18, 15, 0.78);
    font-size: 1.24rem;
    line-height: 1.55;
}

.about-page--atelier .about-overview__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 12px;
}

.about-page--atelier .about-overview__notes span {
    color: var(--rms-clay);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-page--atelier .about-overview__media {
    margin: 0;
    aspect-ratio: 4 / 5.25;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--about-soft);
    box-shadow: 0 26px 70px rgba(80, 72, 58, 0.14);
}

.about-page--atelier .about-overview__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.02) brightness(1.04);
}

.about-page--atelier .about-approach {
    padding: clamp(82px, 11vw, 164px) 0;
    background: var(--rms-bg);
}

.about-page--atelier .about-approach__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 110px);
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.about-page--atelier .about-approach__heading {
    position: sticky;
    top: calc(var(--header-height) + 36px);
    align-self: start;
    max-width: 470px;
}

.about-page--atelier .about-approach__heading h2 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 4.8rem;
    line-height: 0.98;
    letter-spacing: 0;
}

.about-page--atelier .about-approach__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.about-page--atelier .about-approach__grid article {
    display: grid;
    align-content: start;
    min-height: 300px;
    padding: clamp(24px, 3vw, 36px);
    border: 0;
    border-radius: 8px;
    background: var(--about-paper);
    box-shadow: 0 22px 64px rgba(80, 72, 58, 0.11);
    transform: none;
    transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.about-page--atelier .about-approach__grid article:nth-child(even) {
    transform: translateY(clamp(0px, 4vw, 44px));
}

.about-page--atelier .about-approach__grid article:hover {
    background: #ffffff;
    box-shadow: 0 30px 82px rgba(80, 72, 58, 0.16);
    transform: translateY(-6px);
}

.about-page--atelier .about-approach__grid article:nth-child(even):hover {
    transform: translateY(clamp(0px, 4vw, 38px));
}

.about-page--atelier .about-approach__grid span {
    margin-bottom: clamp(38px, 6vw, 76px);
    color: var(--rms-clay);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0;
}

.about-page--atelier .about-approach__grid h3,
.about-page--atelier .about-approach__grid article:hover h3 {
    margin: 0 0 14px;
    color: var(--rms-ink);
    font-size: 1.48rem;
    line-height: 1.15;
}

.about-page--atelier .about-approach__grid p {
    margin: 0;
    color: var(--about-muted);
    font-size: 0.98rem;
    line-height: 1.66;
}

.about-page--atelier .about-visual-story {
    padding: clamp(82px, 10vw, 152px) 0;
    background: var(--rms-paper);
}

.about-page--atelier .about-visual-story__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 94px);
    align-items: center;
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.about-page--atelier .about-visual-story__copy {
    display: grid;
    gap: 22px;
    max-width: 560px;
    color: var(--rms-ink);
}

.about-page--atelier .about-visual-story__copy h2 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 4.8rem;
    line-height: 0.98;
    letter-spacing: 0;
}

.about-page--atelier .about-visual-story__copy p:not(.eyebrow) {
    margin: 0;
    color: var(--about-muted);
    font-size: 1.1rem;
    line-height: 1.76;
}

.about-page--atelier .about-visual-story__copy .button {
    width: max-content;
    min-height: 48px;
    margin-top: 8px;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 18px 46px rgba(17, 18, 15, 0.16);
}

.about-page--atelier .about-visual-story__media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.4fr);
    gap: clamp(16px, 2vw, 24px);
    align-items: end;
    min-height: auto;
}

.about-page--atelier .about-visual-story__frame {
    position: relative;
    inset: auto;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--about-soft);
    box-shadow: 0 28px 78px rgba(80, 72, 58, 0.15);
}

.about-page--atelier .about-visual-story__frame--large {
    width: auto;
    aspect-ratio: 16 / 11;
}

.about-page--atelier .about-visual-story__frame--small {
    width: auto;
    max-width: none;
    aspect-ratio: 4 / 5.6;
    transform: translateY(34px);
}

.about-page--atelier .about-visual-story__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.03) brightness(1.03);
}

.about-page--atelier .about-people {
    padding: clamp(82px, 10vw, 152px) 0 clamp(92px, 11vw, 170px);
    background: var(--rms-bg);
}

.about-page--atelier .about-people__inner {
    display: grid;
    gap: clamp(34px, 6vw, 86px);
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.about-page--atelier .about-people__heading {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.82fr);
    gap: clamp(30px, 6vw, 84px);
    align-items: end;
    max-width: none;
}

.about-page--atelier .about-people__heading .eyebrow {
    color: var(--rms-clay);
}

.about-page--atelier .about-people__heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--rms-ink);
    font-size: 5.2rem;
    line-height: 0.96;
    letter-spacing: 0;
}

.about-page--atelier .about-people__heading p:not(.eyebrow) {
    margin: 0;
    color: var(--about-muted);
    font-size: 1.08rem;
    line-height: 1.74;
}

.about-page--atelier .about-people__heading div {
    display: grid;
    gap: 18px;
}

.about-page--atelier .about-people__content {
    display: grid;
    grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 60px);
    align-items: start;
}

.about-page--atelier .about-people__summary {
    display: grid;
    gap: 12px;
}

.about-page--atelier .about-people__summary span {
    display: block;
    padding: 16px 18px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.78);
    color: var(--rms-clay);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 18px 48px rgba(80, 72, 58, 0.1);
}

.about-page--atelier .about-roster {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
}

.about-page--atelier .about-roster article {
    display: grid;
    gap: 9px;
    min-height: 142px;
    padding: clamp(22px, 2.4vw, 32px);
    border: 0;
    border-radius: 8px;
    background: var(--about-paper);
    box-shadow: 0 22px 64px rgba(80, 72, 58, 0.11);
    transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.about-page--atelier .about-roster article:hover {
    background: #ffffff;
    box-shadow: 0 30px 82px rgba(80, 72, 58, 0.16);
    transform: translateY(-5px);
}

.about-page--atelier .about-roster h3,
.about-page--atelier .about-roster article:hover h3 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 1.28rem;
    line-height: 1.2;
}

.about-page--atelier .about-roster p {
    margin: 0;
    color: rgba(17, 18, 15, 0.52);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-page--atelier .about-clients-inline {
    display: grid;
    gap: 22px;
    padding: 28px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.78);
    box-shadow: 0 22px 64px rgba(80, 72, 58, 0.1);
}

.about-page--atelier .about-clients-inline__label {
    color: var(--rms-clay);
}

body:has(.about-page--atelier) .site-footer {
    border-top: 0;
    background: var(--rms-bg);
    color: var(--rms-ink);
}

body:has(.about-page--atelier) .site-footer__copyright {
    color: rgba(17, 18, 15, 0.52);
}

@media (max-width: 1100px) {
    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-overview__inner,
    .about-page--atelier .about-approach__inner,
    .about-page--atelier .about-visual-story__inner,
    .about-page--atelier .about-people__heading,
    .about-page--atelier .about-people__content {
        grid-template-columns: 1fr;
    }

    .about-page--atelier .about-hero__media,
    .about-page--atelier .about-overview__media {
        width: min(100%, 620px);
    }

    .about-page--atelier .about-approach__heading {
        position: relative;
        top: auto;
        max-width: 760px;
    }

    .about-page--atelier .about-hero h1 {
        font-size: 5.8rem;
    }

    .about-page--atelier .about-overview__intro h2 {
        font-size: 3.4rem;
    }

    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2 {
        font-size: 3.8rem;
    }

    .about-page--atelier .about-people__heading h2 {
        font-size: 4.2rem;
    }

    .about-page--atelier .about-approach__grid article:nth-child(even),
    .about-page--atelier .about-approach__grid article:nth-child(even):hover {
        transform: none;
    }

    .about-page--atelier .about-people__summary {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-page--atelier .about-hero {
        padding-top: calc(var(--header-height) + 42px);
    }

    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-overview__inner,
    .about-page--atelier .about-approach__inner,
    .about-page--atelier .about-visual-story__inner,
    .about-page--atelier .about-people__inner {
        width: min(100% - 28px, var(--container-width));
    }

    .about-page--atelier .about-hero__stats,
    .about-page--atelier .about-approach__grid,
    .about-page--atelier .about-visual-story__media,
    .about-page--atelier .about-people__summary,
    .about-page--atelier .about-roster {
        grid-template-columns: 1fr;
    }

    .about-page--atelier .about-hero__stats span {
        min-height: auto;
    }

    .about-page--atelier .about-hero__media,
    .about-page--atelier .about-overview__media {
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .about-page--atelier .about-visual-story__frame--small {
        transform: none;
    }

    .about-page--atelier .about-visual-story__copy .button {
        width: 100%;
        justify-content: center;
    }

    .about-page--atelier .about-hero h1 {
        font-size: 4.3rem;
    }

    .about-page--atelier .about-overview__intro h2 {
        font-size: 2.85rem;
    }

    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2,
    .about-page--atelier .about-people__heading h2 {
        font-size: 3.1rem;
    }
}

@media (max-width: 520px) {
    .about-page--atelier .about-hero h1,
    .about-page--atelier .about-overview__intro h2,
    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2,
    .about-page--atelier .about-people__heading h2 {
        font-size: 2.72rem;
    }

    .about-page--atelier .about-hero__stats span,
    .about-page--atelier .about-approach__grid article,
    .about-page--atelier .about-roster article,
    .about-page--atelier .about-clients-inline {
        padding: 22px;
    }
}

/* About clean studio reset */
.about-page--atelier {
    --about-clean-paper: #fffdf7;
    --about-clean-wash: #eee8dd;
    --about-clean-muted: rgba(17, 18, 15, 0.6);
    background: var(--rms-bg);
}

.about-page--atelier .about-hero,
.about-page--atelier .about-overview,
.about-page--atelier .about-approach,
.about-page--atelier .about-visual-story,
.about-page--atelier .about-people {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.about-page--atelier .about-hero {
    display: block;
    padding: calc(var(--header-height) + 56px) 0 96px;
}

.about-page--atelier .about-hero__bg {
    background: linear-gradient(180deg, var(--rms-bg) 0%, var(--rms-paper) 100%);
}

.about-page--atelier .about-hero__inner {
    display: block;
    width: min(100% - 160px, 1200px);
    max-width: none;
    margin: 0 auto;
}

.about-page--atelier .about-hero__copy {
    max-width: 980px;
    margin: 0;
    gap: 28px;
}

.about-page--atelier .about-hero h1 {
    max-width: 1050px;
    font-size: 6rem;
    line-height: 0.96;
}

.about-page--atelier .about-hero__lede {
    max-width: 620px;
    font-size: 1.12rem;
    line-height: 1.74;
}

.about-page--atelier .about-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 42px;
    max-width: none;
    padding-top: 10px;
}

.about-page--atelier .about-hero__stats span {
    display: grid;
    gap: 4px;
    min-height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.about-page--atelier .about-hero__stats strong {
    font-size: 1rem;
    line-height: 1;
}

.about-page--atelier .about-hero__stats small {
    color: rgba(17, 18, 15, 0.46);
    font-size: 0.72rem;
    line-height: 1.35;
}

.about-page--atelier .about-hero__media {
    width: 100%;
    margin-top: 68px;
    aspect-ratio: 16 / 6.2;
    border-radius: 4px;
    box-shadow: none;
}

.about-page--atelier .about-hero__media img {
    filter: saturate(0.9) contrast(0.98) brightness(1.06);
}

.about-page--atelier .about-overview,
.about-page--atelier .about-visual-story {
    background: var(--rms-paper);
}

.about-page--atelier .about-overview,
.about-page--atelier .about-approach,
.about-page--atelier .about-visual-story,
.about-page--atelier .about-people {
    padding: 112px 0;
}

.about-page--atelier .about-overview__inner,
.about-page--atelier .about-approach__inner,
.about-page--atelier .about-visual-story__inner,
.about-page--atelier .about-people__inner {
    width: min(100% - 56px, 1360px);
    max-width: none;
    margin: 0 auto;
}

.about-page--atelier .about-overview__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
    gap: 72px;
    align-items: start;
    min-height: auto;
    overflow: visible;
}

.about-page--atelier .about-overview__intro h2,
.about-page--atelier .about-approach__heading h2,
.about-page--atelier .about-visual-story__copy h2,
.about-page--atelier .about-people__heading h2 {
    color: var(--rms-ink);
    font-size: 3.65rem;
    line-height: 1.02;
}

.about-page--atelier .about-overview__copy {
    max-width: 700px;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 18px;
    text-shadow: none;
}

.about-page--atelier .about-overview__copy p,
.about-page--atelier .about-overview__copy p:first-child,
.about-page--atelier .about-visual-story__copy p:not(.eyebrow),
.about-page--atelier .about-people__heading p:not(.eyebrow) {
    color: var(--about-clean-muted);
    font-size: 1.05rem;
    line-height: 1.78;
}

.about-page--atelier .about-overview__copy p:first-child {
    color: rgba(17, 18, 15, 0.78);
    font-size: 1.18rem;
    line-height: 1.62;
}

.about-page--atelier .about-overview__notes {
    gap: 12px 28px;
    padding-top: 16px;
}

.about-page--atelier .about-overview__media {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 16 / 6.4;
    margin-top: 12px;
    border-radius: 4px;
    box-shadow: none;
}

.about-page--atelier .about-approach__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
    gap: 88px;
}

.about-page--atelier .about-approach__heading {
    position: sticky;
    top: calc(var(--header-height) + 48px);
    max-width: 520px;
}

.about-page--atelier .about-approach__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.about-page--atelier .about-approach__grid article {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    min-height: auto;
    padding: 34px 38px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 253, 247, 0.76);
    box-shadow: none;
    transform: none;
}

.about-page--atelier .about-approach__grid article:nth-child(even),
.about-page--atelier .about-approach__grid article:hover,
.about-page--atelier .about-approach__grid article:nth-child(even):hover {
    background: rgba(255, 253, 247, 0.92);
    box-shadow: none;
    transform: none;
}

.about-page--atelier .about-approach__grid span {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    color: var(--rms-clay);
    font-size: 0.82rem;
}

.about-page--atelier .about-approach__grid h3,
.about-page--atelier .about-approach__grid article:hover h3 {
    grid-column: 2;
    margin: 0 0 10px;
    font-size: 1.42rem;
}

.about-page--atelier .about-approach__grid p {
    grid-column: 2;
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-page--atelier .about-visual-story__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.about-page--atelier .about-visual-story__copy {
    max-width: 540px;
    gap: 20px;
}

.about-page--atelier .about-visual-story__copy .button {
    margin-top: 12px;
    box-shadow: none;
}

.about-page--atelier .about-visual-story__media {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    gap: 18px;
}

.about-page--atelier .about-visual-story__frame,
.about-page--atelier .about-visual-story__frame--large,
.about-page--atelier .about-visual-story__frame--small {
    position: relative;
    width: auto;
    max-width: none;
    inset: auto;
    border-radius: 4px;
    box-shadow: none;
    transform: none;
}

.about-page--atelier .about-visual-story__frame--large {
    aspect-ratio: 4 / 5;
}

.about-page--atelier .about-visual-story__frame--small {
    aspect-ratio: 4 / 5;
    margin-top: 76px;
}

.about-page--atelier .about-people {
    padding-bottom: 128px;
}

.about-page--atelier .about-people__heading {
    display: grid;
    grid-template-columns: minmax(320px, 0.7fr) minmax(420px, 0.9fr);
    gap: 72px;
    align-items: end;
}

.about-page--atelier .about-people__content {
    display: block;
}

.about-page--atelier .about-roster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-page--atelier .about-roster article {
    min-height: 132px;
    padding: 28px 30px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 253, 247, 0.78);
    box-shadow: none;
}

.about-page--atelier .about-roster article:hover {
    background: rgba(255, 253, 247, 0.94);
    box-shadow: none;
    transform: none;
}

.about-page--atelier .about-roster h3,
.about-page--atelier .about-roster article:hover h3 {
    font-size: 1.2rem;
}

@media (max-width: 1100px) {
    .about-page--atelier .about-hero h1 {
        font-size: 5rem;
    }

    .about-page--atelier .about-overview__inner,
    .about-page--atelier .about-approach__inner,
    .about-page--atelier .about-visual-story__inner,
    .about-page--atelier .about-people__heading {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-page--atelier .about-approach__heading {
        position: relative;
        top: auto;
        max-width: 760px;
    }

    .about-page--atelier .about-overview__intro h2,
    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2,
    .about-page--atelier .about-people__heading h2 {
        font-size: 3.05rem;
    }

    .about-page--atelier .about-roster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-page--atelier .about-hero {
        padding: calc(var(--header-height) + 46px) 0 72px;
    }

    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-overview__inner,
    .about-page--atelier .about-approach__inner,
    .about-page--atelier .about-visual-story__inner,
    .about-page--atelier .about-people__inner {
        width: min(100% - 28px, 1360px);
    }

    .about-page--atelier .about-hero h1 {
        font-size: 3.35rem;
        line-height: 1;
    }

    .about-page--atelier .about-hero__media,
    .about-page--atelier .about-overview__media {
        aspect-ratio: 4 / 3;
        margin-top: 40px;
    }

    .about-page--atelier .about-overview,
    .about-page--atelier .about-approach,
    .about-page--atelier .about-visual-story,
    .about-page--atelier .about-people {
        padding: 78px 0;
    }

    .about-page--atelier .about-overview__intro h2,
    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2,
    .about-page--atelier .about-people__heading h2 {
        font-size: 2.45rem;
    }

    .about-page--atelier .about-approach__grid article {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px;
    }

    .about-page--atelier .about-approach__grid span,
    .about-page--atelier .about-approach__grid h3,
    .about-page--atelier .about-approach__grid article:hover h3,
    .about-page--atelier .about-approach__grid p {
        grid-column: auto;
        grid-row: auto;
    }

    .about-page--atelier .about-visual-story__media,
    .about-page--atelier .about-roster {
        grid-template-columns: 1fr;
    }

    .about-page--atelier .about-visual-story__frame--large,
    .about-page--atelier .about-visual-story__frame--small {
        aspect-ratio: 4 / 3;
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .about-page--atelier .about-hero h1 {
        font-size: 2.82rem;
    }

    .about-page--atelier .about-overview__intro h2,
    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2,
    .about-page--atelier .about-people__heading h2 {
        font-size: 2.16rem;
    }

    .about-page--atelier .about-roster article {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .about-page--atelier {
        overflow-x: hidden;
    }

    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-overview__inner,
    .about-page--atelier .about-approach__inner,
    .about-page--atelier .about-visual-story__inner,
    .about-page--atelier .about-people__inner {
        width: calc(100% - 28px);
        max-width: none;
    }

    .about-page--atelier .about-hero h1 {
        max-width: 100%;
        font-size: 2.36rem;
        line-height: 1.06;
        overflow-wrap: break-word;
        text-wrap: auto;
    }

    .about-page--atelier .about-hero__lede {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.68;
    }

    .about-page--atelier .about-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .about-page--atelier .about-hero__stats span {
        min-width: 0;
    }

    .about-page--atelier .about-hero__stats strong {
        font-size: 0.92rem;
    }

    .about-page--atelier .about-hero__stats small {
        font-size: 0.58rem;
        overflow-wrap: anywhere;
    }

    .about-page--atelier .about-overview__intro h2,
    .about-page--atelier .about-approach__heading h2,
    .about-page--atelier .about-visual-story__copy h2,
    .about-page--atelier .about-people__heading h2 {
        max-width: 100%;
        overflow-wrap: break-word;
        text-wrap: auto;
    }
}

@media (max-width: 520px) {
    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-overview__inner,
    .about-page--atelier .about-approach__inner,
    .about-page--atelier .about-visual-story__inner,
    .about-page--atelier .about-people__inner {
        width: min(100% - 28px, 360px);
    }

    .about-page--atelier .about-hero h1 {
        font-size: 2.02rem;
        white-space: normal;
    }

    .about-page--atelier .about-hero__stats {
        gap: 8px;
    }

    .about-page--atelier .about-hero__stats small {
        font-size: 0.54rem;
    }
}

/* About requested fixes: photo hero background + non-overlapping team */
.about-page--atelier .about-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: min(860px, 92svh);
    padding: calc(var(--header-height) + 80px) 0 clamp(78px, 9vw, 128px);
    isolation: isolate;
    overflow: hidden;
}

.about-page--atelier .about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(245, 241, 232, 0.96) 0%, rgba(245, 241, 232, 0.82) 42%, rgba(245, 241, 232, 0.2) 100%),
        linear-gradient(180deg, rgba(245, 241, 232, 0.32) 0%, rgba(245, 241, 232, 0.78) 100%),
        var(--about-hero-image) center / cover no-repeat;
    filter: saturate(0.9) contrast(0.98) brightness(1.04);
}

.about-page--atelier .about-hero::after {
    display: none;
}

.about-page--atelier .about-hero__inner {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100% - 120px, 1220px);
    max-width: none;
    margin: 0 auto;
}

.about-page--atelier .about-hero__copy {
    width: 100%;
    max-width: 860px;
    min-width: 0;
    margin: 0;
}

.about-page--atelier .about-hero h1 {
    max-width: 960px;
    color: var(--rms-ink);
    font-size: 5.4rem;
    line-height: 0.98;
    text-shadow: none;
}

.about-page--atelier .about-hero__lede {
    max-width: 620px;
    color: rgba(17, 18, 15, 0.64);
    overflow-wrap: break-word;
}

.about-page--atelier .about-hero__stats {
    max-width: 100%;
}

.about-page--atelier .about-hero__stats span {
    min-width: 0;
}

.about-page--atelier .about-hero__media {
    display: none;
}

.about-page--atelier .about-people__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
    width: min(100% - 56px, 1360px);
    max-width: none;
    margin: 0 auto;
}

.about-page--atelier .about-people {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

.about-page--atelier .about-people:target .about-people__heading .eyebrow,
.about-page--atelier .about-people:target .about-people__heading h2,
.about-page--atelier .about-people:target .about-people__heading p,
.about-page--atelier .about-people:target .about-roster article {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
}

.about-page--atelier .about-people__heading {
    position: static;
    display: block;
    grid-column: auto;
    grid-row: auto;
    max-width: 430px;
    min-width: 0;
    transform: none;
}

.about-page--atelier .about-people__heading h2 {
    position: static;
    margin: 18px 0 34px;
    max-width: 430px;
    color: var(--rms-ink);
    font-size: 3.35rem;
    line-height: 1.04;
    transform: none;
}

.about-page--atelier .about-people__heading div {
    display: grid;
    gap: 18px;
}

.about-page--atelier .about-people__heading p:not(.eyebrow) {
    max-width: 390px;
    color: rgba(17, 18, 15, 0.62);
    font-size: 1.02rem;
    line-height: 1.74;
}

.about-page--atelier .about-people__content {
    position: static;
    display: block;
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
    transform: none;
}

.about-page--atelier .about-roster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.about-page--atelier .about-roster article {
    position: relative;
    min-width: 0;
    min-height: 156px;
    padding: 34px 34px 30px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 253, 247, 0.82);
    box-shadow: none;
    transform: none;
}

.about-page--atelier .about-roster h3,
.about-page--atelier .about-roster article:hover h3 {
    color: var(--rms-ink);
    font-size: 1.22rem;
    line-height: 1.18;
}

.about-page--atelier .about-roster p {
    color: rgba(17, 18, 15, 0.52);
    font-size: 0.86rem;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-people__inner {
        width: min(100% - 56px, 920px);
    }

    .about-page--atelier .about-hero h1 {
        font-size: 4.1rem;
    }

    .about-page--atelier .about-people__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-page--atelier .about-people__heading,
    .about-page--atelier .about-people__heading h2,
    .about-page--atelier .about-people__heading p:not(.eyebrow) {
        max-width: 720px;
    }

    .about-page--atelier .about-roster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-page--atelier .about-hero {
        min-height: 760px;
        padding: calc(var(--header-height) + 58px) 0 74px;
    }

    .about-page--atelier .about-hero__bg {
        background:
            linear-gradient(180deg, rgba(245, 241, 232, 0.94) 0%, rgba(245, 241, 232, 0.72) 46%, rgba(245, 241, 232, 0.9) 100%),
            var(--about-hero-image) center / cover no-repeat;
    }

    .about-page--atelier .about-hero__inner,
    .about-page--atelier .about-people__inner {
        width: min(100% - 28px, 520px);
    }

    .about-page--atelier .about-hero__copy,
    .about-page--atelier .about-hero__lede {
        max-width: 100%;
    }

    .about-page--atelier .about-hero h1 {
        font-size: 2.46rem;
        line-height: 1.06;
    }

    .about-page--atelier .about-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
    }

    .about-page--atelier .about-hero__stats small {
        overflow-wrap: anywhere;
    }

    .about-page--atelier .about-people__heading h2 {
        font-size: 2.32rem;
    }

    .about-page--atelier .about-roster {
        grid-template-columns: 1fr;
    }

    .about-page--atelier .about-roster article {
        min-height: auto;
        padding: 26px 24px;
    }
}

/* About Team rebuild: isolated from previous roster layout */
.about-page--atelier .about-team {
    position: relative;
    padding: clamp(96px, 11vw, 164px) 0 clamp(108px, 12vw, 176px);
    background: var(--rms-bg);
    scroll-margin-top: calc(var(--header-height) + 24px);
    overflow: hidden;
}

.about-page--atelier .about-team__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: start;
    width: min(100% - 56px, 1360px);
    max-width: none;
    margin: 0 auto;
}

.about-page--atelier .about-team__intro {
    position: static;
    display: grid;
    gap: 0;
    min-width: 0;
    max-width: 520px;
    transform: none;
}

.about-page--atelier .about-team__intro .eyebrow {
    margin: 0 0 22px;
    color: var(--rms-clay);
}

.about-page--atelier .about-team__intro h2 {
    position: static;
    width: auto;
    max-width: 520px;
    margin: 0;
    color: var(--rms-ink);
    font-size: clamp(3rem, 4.4vw, 4.8rem);
    line-height: 1;
    letter-spacing: 0;
    transform: none;
}

.about-page--atelier .about-team__copy {
    display: grid;
    gap: 18px;
    max-width: 430px;
    margin-top: 44px;
}

.about-page--atelier .about-team__copy p {
    margin: 0;
    color: rgba(17, 18, 15, 0.62);
    font-size: 1.02rem;
    line-height: 1.74;
}

.about-page--atelier .about-team__roster {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
    transform: none;
}

.about-page--atelier .about-team__card {
    position: relative;
    display: grid;
    align-content: center;
    gap: 18px;
    min-width: 0;
    min-height: 166px;
    padding: 34px 34px 31px;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 253, 247, 0.84);
    box-shadow: none;
    overflow: hidden;
    transform: none;
}

.about-page--atelier .about-team__card h3 {
    margin: 0;
    color: var(--rms-ink);
    font-size: 1.24rem;
    line-height: 1.18;
    letter-spacing: 0;
}

.about-page--atelier .about-team__card p {
    order: -1;
    margin: 0;
    color: rgba(17, 18, 15, 0.52);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-page--atelier .about-team:target .about-team__intro .eyebrow,
.about-page--atelier .about-team:target .about-team__intro h2,
.about-page--atelier .about-team:target .about-team__copy p,
.about-page--atelier .about-team:target .about-team__card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
}

.about-page--atelier .about-team .about-clients-inline {
    grid-column: 1 / -1;
}

@media (max-width: 1180px) {
    .about-page--atelier .about-team__inner {
        grid-template-columns: 1fr;
        width: min(100% - 56px, 920px);
        gap: 48px;
    }

    .about-page--atelier .about-team__intro,
    .about-page--atelier .about-team__intro h2,
    .about-page--atelier .about-team__copy {
        max-width: 760px;
    }

    .about-page--atelier .about-team__roster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .about-page--atelier .about-team {
        padding: 76px 0 94px;
    }

    .about-page--atelier .about-team__inner {
        width: min(100% - 28px, 520px);
        gap: 38px;
    }

    .about-page--atelier .about-team__intro h2 {
        font-size: 2.48rem;
        line-height: 1.05;
    }

    .about-page--atelier .about-team__copy {
        margin-top: 30px;
    }

    .about-page--atelier .about-team__roster {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-page--atelier .about-team__card {
        min-height: auto;
        padding: 26px 24px;
    }
}

/* Contact + Project light palette alignment */
.contact-page,
.project-page,
.project-page--editorial {
    background: var(--rms-bg);
    color: var(--rms-ink);
}

.contact-page ~ .site-footer,
.project-page ~ .site-footer {
    border-top: 0;
    background: var(--rms-bg);
    color: rgba(17, 18, 15, 0.54);
}

body:has(.contact-page) .site-header:not(.is-open),
body:has(.project-page) .site-header:not(.is-open) {
    background: rgba(245, 241, 232, 0.72);
    color: var(--rms-ink);
}

body:has(.contact-page) .site-header__logo img,
body:has(.project-page) .site-header__logo img {
    filter: brightness(0) saturate(0);
}

body:has(.contact-page) .site-header__toggle,
body:has(.contact-page) .site-header__menu a,
body:has(.project-page) .site-header__toggle,
body:has(.project-page) .site-header__menu a {
    color: var(--rms-ink);
}

.contact-page .eyebrow,
.project-page .eyebrow,
.project-cover__breadcrumb,
.project-cover__breadcrumb a,
.project-cover__breadcrumb span,
.project-info__inner > p,
.project-cover__meta span,
.project-info span,
.project-brief__label,
.project-nav__label {
    color: var(--rms-clay);
}

.contact-hero {
    background: var(--rms-bg);
}

.contact-hero__media::before {
    background:
        linear-gradient(90deg, rgba(245, 241, 232, 0.54) 0%, rgba(245, 241, 232, 0.36) 46%, rgba(245, 241, 232, 0.06) 100%),
        linear-gradient(180deg, rgba(245, 241, 232, 0.06) 0%, rgba(245, 241, 232, 0.34) 100%);
}

.contact-hero__media::after {
    background: linear-gradient(180deg, rgba(245, 241, 232, 0) 42%, rgba(245, 241, 232, 0.56) 100%);
    opacity: 1;
}

.contact-hero__media img {
    filter: saturate(0.92) contrast(1.06) brightness(0.94);
}

.contact-hero__copy h1,
.contact-panel__info h2,
.contact-details h3,
.project-cover h1,
.project-brief__lede,
.project-info strong,
.project-nav__title,
.project-page--editorial .project-nav__next--visual .project-nav__title {
    color: var(--rms-ink);
}

.contact-panel,
.contact-details {
    background: var(--rms-bg);
}

.contact-panel__info h2 {
    font-weight: 400;
}

.contact-methods a,
.contact-methods div,
.contact-response,
.contact-form,
.contact-details article {
    border: 0;
    background: rgba(255, 253, 247, 0.82);
    box-shadow: none;
    backdrop-filter: none;
}

.contact-methods a:hover {
    background: rgba(255, 253, 247, 0.96);
    transform: translateY(-2px);
}

.contact-methods strong,
.contact-response strong {
    color: rgba(17, 18, 15, 0.78);
}

.contact-response span,
.contact-form label > span,
.contact-details article > span,
.contact-methods span {
    color: var(--rms-clay);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(245, 241, 232, 0.72);
    color: var(--rms-ink);
    box-shadow: inset 0 0 0 1px rgba(17, 18, 15, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(17, 18, 15, 0.34);
}

.contact-form select {
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(17, 18, 15, 0.68) 50%),
        linear-gradient(135deg, rgba(17, 18, 15, 0.68) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form select option {
    background: var(--rms-paper);
    color: var(--rms-ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: var(--rms-paper);
    box-shadow:
        inset 0 0 0 1px rgba(154, 114, 88, 0.32),
        0 18px 42px rgba(80, 72, 58, 0.08);
}

.contact-details p,
.project-brief__copy {
    color: rgba(17, 18, 15, 0.62);
}

.project-page--editorial {
    background: var(--rms-bg);
}

.project-cover {
    color: var(--rms-ink);
}

.project-cover__media {
    background: var(--rms-bg);
}

.project-cover__media img {
    filter: saturate(0.92) contrast(1.06) brightness(0.94);
}

.project-cover__media::after {
    background:
        linear-gradient(90deg, rgba(245, 241, 232, 0.46) 0%, rgba(245, 241, 232, 0.24) 42%, rgba(245, 241, 232, 0.02) 100%),
        linear-gradient(180deg, rgba(245, 241, 232, 0.04) 0%, rgba(245, 241, 232, 0.3) 100%);
}

.project-cover__breadcrumb span::before {
    background: var(--rms-clay);
}

.project-page--editorial .project-cover__meta {
    background: rgba(255, 253, 247, 0.9);
    backdrop-filter: blur(16px);
}

.project-page--editorial .project-cover__meta strong {
    color: rgba(17, 18, 15, 0.8);
}

.project-brief,
.project-visuals,
.project-info,
.project-page--editorial .project-nav {
    background: var(--rms-bg);
    box-shadow: none;
}

.project-brief::before,
.project-brief::after,
.project-visuals::before {
    display: none;
}

.project-frame,
.project-frame video,
.media-lightbox-flight {
    background: rgba(255, 253, 247, 0.8);
}

.project-frame img,
.project-frame video,
.project-frame img.is-loaded,
.project-frame video.is-loaded {
    filter: saturate(0.9) contrast(1.02) brightness(1.02);
}

.project-frame::after {
    background: linear-gradient(180deg, rgba(245, 241, 232, 0), rgba(17, 18, 15, 0.36));
}

.project-frame figcaption,
.project-frame__duration {
    color: rgba(255, 253, 247, 0.9);
}

.project-frame__expand {
    background: rgba(255, 253, 247, 0.86);
    color: var(--rms-ink);
}

.project-frame__expand:hover {
    background: var(--rms-clay);
    color: var(--rms-paper);
}

.project-page--editorial .project-nav__back {
    border: 0;
    background: rgba(255, 253, 247, 0.82);
}

.project-nav__back::before {
    border: 0;
    background: var(--rms-paper);
    color: var(--rms-ink);
}

.project-nav__back::after {
    display: none;
}

.project-nav__next--visual {
    background: rgba(255, 253, 247, 0.82);
}

.project-nav__next--visual::after {
    background:
        linear-gradient(90deg, rgba(245, 241, 232, 0.88), rgba(245, 241, 232, 0.26));
}

.project-nav__next--visual img {
    filter: saturate(0.82) brightness(1.02);
}

.project-nav__next--visual:hover img {
    filter: saturate(0.92) brightness(1.05);
}

@media (max-width: 760px) {
    .contact-hero__media::before,
    .project-cover__media::after {
        background:
            linear-gradient(180deg, rgba(245, 241, 232, 0.54) 0%, rgba(245, 241, 232, 0.34) 50%, rgba(245, 241, 232, 0.54) 100%);
    }

    .project-page--editorial .project-cover__meta {
        background: rgba(255, 253, 247, 0.84);
    }
}
