* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: auto;
}

body {
    background-color: #f3f1ed;
    color: #0d0d0d;
    font-family: -apple-system, BlinkMacSystemFont, "Arial Black", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

body::before {
    content: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 118px;
    z-index: 25;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.72),
        rgba(255, 255, 255, 0.34) 48%,
        rgba(255, 255, 255, 0)
    );
    backdrop-filter: blur(14px) saturate(1.12);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

body.nav-glass-on::before {
    opacity: 1;
    transform: translateY(0);
}

.page-track {
    width: 100%;
}

.landing-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f1ed;
    overflow: hidden;
}

#landing-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#cursor-trail-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 24;
    pointer-events: none;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    z-index: 30;
    pointer-events: none;
}

.nav-container::before {
    content: "";
    position: absolute;
    left: auto;
    right: clamp(14px, 4vw, 64px);
    top: 14px;
    width: min(780px, calc(100vw - 28px));
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

body.nav-glass-on .nav-container::before {
    opacity: 1;
    transform: translateY(0);
}

body.nav-glass-on.nav-scrolling .nav-container::before {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
}

.nav-item {
    position: absolute;
    left: 0;
    top: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.52);
    text-decoration: none;
    padding: 10px 14px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s, text-shadow 0.3s;
    opacity: 0;
    will-change: transform, opacity;
}

body.nav-compact .nav-item {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    padding: 9px 12px;
}

body.nav-glass-on .nav-item {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.76), 0 10px 28px rgba(13, 13, 13, 0.16);
}

body[data-page="about"] .nav-item {
    color: #000000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62), 0 12px 28px rgba(0, 0, 0, 0.18);
}

body[data-page="about"] .nav-item:hover {
    color: #ff3300;
}

body[data-page="about"] .subtitle {
    opacity: 0 !important;
    transition: opacity 0.35s ease;
}

.nav-item:hover {
    color: #ff3300;
    border-color: #ff3300;
}

.content-overlay {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    pointer-events: none;
    display: grid;
    justify-items: center;
    gap: 16px;
}

.mobile-hero,
.mobile-experience-prompt {
    display: none;
}

.scroll-cue {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(13, 13, 13, 0.72);
    border-radius: 999px;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.4s ease forwards 2.7s;
}

.scroll-cue::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff3300;
    transform: translateX(-50%);
    animation: scrollDot 1.45s ease-in-out infinite;
}

.scroll-cue::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(13, 13, 13, 0.72);
    border-bottom: 2px solid rgba(13, 13, 13, 0.72);
    transform: translateX(-50%) rotate(45deg);
    animation: scrollArrow 1.45s ease-in-out infinite;
}

.subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #888888;
    opacity: 0;
    animation: fadeIn 2s ease forwards 2.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 1; }
    70% { transform: translate(-50%, 17px); opacity: 0.25; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes scrollArrow {
    0%, 100% { opacity: 0.28; transform: translate(-50%, -2px) rotate(45deg); }
    50% { opacity: 0.85; transform: translate(-50%, 4px) rotate(45deg); }
}

.section-stage {
    opacity: 0;
    transform: translateY(64px) scale(0.985);
    filter: blur(8px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.section-stage.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.section-stage.is-leaving-up {
    opacity: 0.42;
    transform: translateY(-42px) scale(0.992);
    filter: blur(3px);
}

.section-stage.is-leaving-down {
    opacity: 0.42;
    transform: translateY(42px) scale(0.992);
    filter: blur(3px);
}

.landing-section.section-stage {
    opacity: 1;
    transform: none;
    filter: none;
}

.about-section {
    position: relative;
    min-height: 145vh;
    --timeline-split-x: 48%;
    background: linear-gradient(90deg, #0d0d0d 0%, #0d0d0d var(--timeline-split-x), #f3f1ed var(--timeline-split-x), #f3f1ed 100%);
    color: #101010;
    padding: clamp(72px, 9vw, 124px) clamp(24px, 8vw, 120px) 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: visible;
}

.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-section::before {
    right: calc(100% - var(--timeline-split-x));
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 30% 28%, rgba(255, 51, 0, 0.16), transparent 24%),
        radial-gradient(circle at 70% 76%, rgba(255, 255, 255, 0.08), transparent 22%);
    background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
    opacity: 0.52;
    mask-image: linear-gradient(to right, #000 0%, #000 76%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 76%, transparent 100%);
}

.about-section::after {
    left: var(--timeline-split-x);
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 51, 0, 0.14) 0 1px, transparent 2px),
        radial-gradient(circle at 80% 68%, rgba(13, 13, 13, 0.07) 0 1px, transparent 2px),
        linear-gradient(135deg, rgba(255, 51, 0, 0.08), transparent 28%, rgba(13, 13, 13, 0.035) 62%, transparent 84%);
    background-size: 42px 42px, 58px 58px, 100% 100%;
    opacity: 0.5;
    mask-image: linear-gradient(to left, #000 0%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, #000 0%, #000 82%, transparent 100%);
}

#milestone-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
    overflow: hidden;
}

.milestone-layout {
    position: relative;
    z-index: 2;
    width: min(1260px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
    gap: clamp(56px, 9vw, 132px);
    align-items: start;
    min-height: 125vh;
}

.milestone-layout.section-stage,
.milestone-layout.section-stage.is-visible,
.milestone-layout.section-stage.is-leaving-up,
.milestone-layout.section-stage.is-leaving-down {
    opacity: 1;
    transform: none;
    filter: none;
}

.about-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: #ff3300;
    margin-bottom: 18px;
}

.milestone-intro {
    position: sticky;
    top: clamp(96px, 16vh, 148px);
    width: min(39vw, 620px);
    max-width: 620px;
    align-self: start;
    height: fit-content;
    justify-self: start;
    transform: translateX(clamp(-86px, -7vw, -52px));
    padding-right: clamp(12px, 2vw, 28px);
    color: #ffffff;
    transition: opacity 0.68s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.milestone-intro::after {
    content: "";
    position: absolute;
    left: -8%;
    right: 8%;
    top: -28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 0, 0.72), transparent);
    opacity: 0.46;
    animation: milestoneScan 5.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes milestoneScan {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.08;
    }
    45% {
        opacity: 0.5;
    }
    70% {
        transform: translateY(330px);
        opacity: 0.12;
    }
}

.milestone-layout.section-stage:not(.is-visible) .milestone-intro {
    opacity: 0;
    transform: translateX(-34px);
}

.milestone-layout.section-stage.is-visible .milestone-intro {
    opacity: 1;
    transform: translateX(clamp(-86px, -7vw, -52px));
}

.about-title {
    font-size: clamp(3.6rem, 5.9vw, 6.7rem);
    line-height: 0.92;
    letter-spacing: 0;
    font-weight: 950;
    max-width: 7.2em;
}

.about-title span {
    display: block;
    color: #ff3300;
}

.title-break {
    display: block;
}

.milestone-note {
    margin-top: 28px;
    max-width: 420px;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.milestone-list {
    position: relative;
    display: grid;
    gap: 0;
    padding-top: 10px;
    padding-bottom: clamp(110px, 18vh, 190px);
}

.milestone-list::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: transparent;
}

.milestone-item {
    --entry-y: 0px;
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: clamp(18px, 3vw, 36px);
    padding: 0 0 clamp(58px, 11vh, 118px) 42px;
    transform: translateX(var(--magnet-x, 0)) translateY(calc(var(--magnet-y, 0px) + var(--entry-y)));
    transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.35s ease;
    will-change: transform;
    cursor: default;
}

.milestone-item:last-child {
    padding-bottom: 0;
}

.milestone-item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff3300;
    box-shadow: 0 0 0 7px #f4f1e8;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.milestone-item.is-active::before {
    transform: scale(1.55);
    box-shadow: 0 0 0 8px #f4f1e8, 0 0 18px rgba(255, 51, 0, 0.42);
}

.milestone-item.is-active .milestone-role {
    color: #ff3300;
}

.milestone-item.is-active {
    filter: contrast(1.06);
}

.milestone-item.is-dimmed {
    opacity: 0.72;
}

.milestone-layout.section-stage:not(.is-visible) .milestone-item {
    --entry-y: 46px;
    opacity: 0;
}

.milestone-layout.section-stage.is-visible .milestone-item {
    --entry-y: 0px;
}

.milestone-layout.section-stage.is-visible .milestone-item:nth-child(1) { transition-delay: 0.04s; }
.milestone-layout.section-stage.is-visible .milestone-item:nth-child(2) { transition-delay: 0.10s; }
.milestone-layout.section-stage.is-visible .milestone-item:nth-child(3) { transition-delay: 0.16s; }
.milestone-layout.section-stage.is-visible .milestone-item:nth-child(4) { transition-delay: 0.22s; }
.milestone-layout.section-stage.is-visible .milestone-item:nth-child(5) { transition-delay: 0.28s; }
.milestone-layout.section-stage.is-visible .milestone-item:nth-child(6) { transition-delay: 0.34s; }

.milestone-year {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ff3300;
    padding-top: 3px;
}

.milestone-role {
    display: block;
    font-size: clamp(1.35rem, 3vw, 2.45rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: 0;
    transition: color 0.28s ease;
}

.milestone-company {
    display: block;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6d665d;
}


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

.milestone-copy {
    margin-top: 14px;
    max-width: 680px;
    font-size: clamp(0.98rem, 1.55vw, 1.16rem);
    line-height: 1.6;
    color: #27231f;
}

.featured-section {
    min-height: 120vh;
    background: #0d0d0d;
    color: #ffffff;
    padding: clamp(88px, 10vw, 150px) clamp(24px, 7vw, 110px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 51, 0, 0.18) 0 1px, transparent 1px 100%),
        linear-gradient(rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 72% 18%, #000, transparent 62%);
    -webkit-mask-image: radial-gradient(circle at 72% 18%, #000, transparent 62%);
    pointer-events: none;
}

.featured-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: clamp(42px, 7vw, 86px);
}

.featured-kicker {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: #ff3300;
    margin-bottom: 16px;
}

.featured-title {
    font-size: clamp(3.8rem, 11vw, 10rem);
    line-height: 0.82;
    font-weight: 950;
    letter-spacing: 0;
}

.featured-note {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.55;
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.works-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

#works-divider-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.work-card {
    min-height: clamp(360px, 42vw, 560px);
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 46px);
    background: #f3f1ed;
    color: #101010;
    text-decoration: none;
    cursor: pointer;
    text-decoration: none;
    cursor: pointer;
    transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.18s ease, background 0.25s ease;
    isolation: isolate;
}

.works-grid.section-stage .work-card {
    opacity: 0;
    transform: perspective(1100px) translateY(34px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: opacity 0.58s ease, transform 0.58s ease, background 0.25s ease;
}

.works-grid.section-stage.is-visible .work-card {
    opacity: 1;
    transform: perspective(1100px) translateY(0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.works-grid.section-stage.is-visible .work-card:nth-of-type(1) { transition-delay: 0.03s; }
.works-grid.section-stage.is-visible .work-card:nth-of-type(2) { transition-delay: 0.11s; }
.works-grid.section-stage.is-visible .work-card:nth-of-type(3) { transition-delay: 0.19s; }
.works-grid.section-stage.is-visible .work-card:nth-of-type(4) { transition-delay: 0.27s; }

.work-card:nth-of-type(2),
.work-card:nth-of-type(3) {
    background: #ffffff;
}

.work-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(13, 13, 13, 0.18);
    opacity: 0.55;
    pointer-events: none;
}

.work-index {
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.24em;
    color: #ff3300;
}

.work-title {
    margin-top: 22px;
    font-size: clamp(1.9rem, 3.6vw, 3.9rem);
    line-height: 0.96;
    font-weight: 950;
    max-width: 9.5em;
    transition: color 0.24s ease;
}

.work-card:hover .work-title {
    color: #ff3300;
}

.work-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.work-meta span {
    border: 1px solid rgba(13, 13, 13, 0.22);
    padding: 7px 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.32);
}

.work-preview {
    position: absolute;
    right: clamp(22px, 4vw, 54px);
    bottom: clamp(22px, 4vw, 54px);
    width: clamp(132px, 14vw, 190px);
    height: clamp(132px, 14vw, 190px);
    border: 0;
    background: transparent;
    border-radius: 0;
    transform: translateY(22px) rotate(-3deg);
    transition: transform 0.28s ease;
    display: grid;
    place-items: center;
}

.work-card:hover .work-preview {
    transform: translateY(0) rotate(0deg);
}

.work-preview svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #101010;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.work-preview .icon-accent {
    stroke: #ff3300;
}

.work-card[data-type="video"] .work-preview {
    border-radius: 0;
    aspect-ratio: auto;
    background: transparent;
}

.work-card[data-type="animation"] .work-preview {
    border-radius: 0;
    aspect-ratio: auto;
    background: transparent;
}

.work-card[data-type="game"] .work-preview {
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
}

.work-copy {
    position: absolute;
    left: clamp(24px, 4vw, 46px);
    bottom: clamp(24px, 4vw, 46px);
    width: min(46%, 420px);
    color: rgba(13, 13, 13, 0.68);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.55;
}

.documentary-section {
    min-height: 100vh;
    background: #f3f1ed;
    color: #101010;
    padding: clamp(86px, 10vw, 150px) clamp(24px, 7vw, 110px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.documentary-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.documentary-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    background:
        linear-gradient(rgba(13, 13, 13, 0.08) 0 0),
        radial-gradient(circle at 52% 38%, rgba(255, 51, 0, 0.36), transparent 34%),
        #0d0d0d;
    color: #ffffff;
    padding: clamp(22px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

.documentary-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.poster-particle-canvas {
    position: absolute;
    inset: -42px;
    width: calc(100% + 84px);
    height: calc(100% + 84px);
    z-index: 2;
    pointer-events: none;
}

.poster-kicker,
.poster-title,
.poster-meta {
    position: relative;
    z-index: 3;
}

.poster-kicker {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #ff3300;
}

.poster-title {
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    line-height: 0.88;
    font-weight: 950;
}

.poster-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.documentary-content {
    display: grid;
    gap: 26px;
}

.mobile-documentary-poster {
    display: none;
}

.documentary-kicker {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: #ff3300;
}

.documentary-title {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: 0;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0d0d0d;
    overflow: hidden;
    border: 1px solid rgba(13, 13, 13, 0.18);
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.74);
    text-align: center;
    padding: 24px;
}

.video-placeholder span {
    width: 74px;
    height: 74px;
    border: 2px solid #ff3300;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}

.video-placeholder span::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #ff3300;
    margin-left: 5px;
}

.documentary-description {
    max-width: 760px;
    color: rgba(13, 13, 13, 0.72);
    font-size: clamp(1rem, 1.65vw, 1.22rem);
    line-height: 1.62;
}

.collab-section {
    --spot-x: 50%;
    --spot-y: 50%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 51, 0, 0.18), transparent 22%),
        #0d0d0d;
    color: #ffffff;
    padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#collab-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.collab-shell {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    min-height: min(68vh, 700px);
    display: grid;
    place-items: center;
    text-align: center;
}

.collab-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: min(68vh, 700px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.collab-kicker {
    color: #ff3300;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    margin-top: 4px;
}

.collab-title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.collab-copy {
    max-width: 600px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(0.92rem, 1.4vw, 1.08rem);
    line-height: 1.5;
}

.collab-bottom {
    width: min(760px, 100%);
    display: grid;
    justify-items: center;
    pointer-events: auto;
    margin-bottom: 0;
    transform: translateY(62px);
}

.contact-form {
    width: 100%;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 80px rgba(0, 0, 0, 0.25);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(13, 13, 13, 0.62);
    color: #ffffff;
    font: 600 0.92rem/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    outline: none;
    padding: 14px 16px;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 51, 0, 0.85);
    background: rgba(13, 13, 13, 0.78);
    transform: translateY(-1px);
}

.human-check {
    display: grid;
    grid-template-columns: 1fr minmax(100px, 150px);
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(13, 13, 13, 0.42);
}

.human-check label {
    color: rgba(255, 255, 255, 0.86);
    font: 700 0.92rem/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.04em;
}

.human-check input {
    padding: 10px 13px;
    text-align: center;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.collab-button {
    border: 0;
    cursor: pointer;
    color: #0d0d0d;
    background: #ffffff;
    text-decoration: none;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 15px 22px;
    border-radius: 999px;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.collab-button:hover {
    background: #ff3300;
    color: #ffffff;
    transform: translateY(-4px);
}

.collab-button:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.collab-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.linkedin-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.linkedin-link:hover {
    color: #ff3300;
    border-color: rgba(255, 51, 0, 0.76);
    transform: translateY(-4px);
}

.linkedin-link svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.form-status {
    min-height: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: left;
}

.site-footer {
    position: absolute;
    left: clamp(24px, 7vw, 110px);
    right: clamp(24px, 7vw, 110px);
    bottom: 24px;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    pointer-events: auto;
}

.site-footer .footer-left {
    justify-self: start;
}

.site-footer .footer-center {
    justify-self: center;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

.site-footer .footer-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-linkedin {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-linkedin:hover {
    color: #ff3300;
    border-color: rgba(255, 51, 0, 0.7);
    transform: translateY(-2px);
}

.footer-linkedin svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.page-indicator {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: grid;
    gap: 12px;
}

.page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #101010;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.about-future {
    --future-x: 0px;
    --future-y: 0px;
    --glow-x: 50%;
    --glow-y: 58%;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: clamp(300px, 37vw, 440px);
    margin: 0;
    padding: clamp(42px, 5vw, 66px) clamp(16px, 2.5vw, 34px) clamp(24px, 2.5vw, 36px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 51, 0, 0.26), transparent 18%),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        #0d0d0d;
    background-size: 100% 100%, 54px 54px, 54px 54px, 100% 100%;
    overflow: hidden;
    perspective: 1100px;
    transition: opacity 0.9s ease, filter 0.9s ease;
}

.about-future::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(72vw, 980px);
    aspect-ratio: 1;
    border: 1px dashed rgba(255, 51, 0, 0.34);
    border-radius: 50%;
    transform: translate(-50%, -48%);
    box-shadow:
        0 0 0 clamp(35px, 5vw, 80px) rgba(255, 51, 0, 0.035),
        0 0 100px rgba(255, 51, 0, 0.08);
    pointer-events: none;
    animation: futureOrbit 12s linear infinite;
}

.about-future::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 0, 0.8), transparent);
    box-shadow: 0 0 18px rgba(255, 51, 0, 0.65);
    opacity: 0.7;
    pointer-events: none;
    transform: translateY(-180px);
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.about-future.is-visible::after {
    transform: translateY(180px);
}

@keyframes futureOrbit {
    to { transform: translate(-50%, -48%) rotate(360deg) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .about-future::before {
        animation: none;
    }

    .about-future::after,
    .future-title > span,
    .future-copy {
        transition-duration: 0.01ms;
        transition-delay: 0s;
    }

    .about-future.is-visible .future-title > span {
        animation: none !important;
    }
}

.future-title {
    position: relative;
    z-index: 1;
    color: transparent;
    font-size: clamp(3.8rem, 8.2vw, 7.6rem);
    font-weight: 950;
    line-height: 0.72;
    letter-spacing: -0.085em;
    display: flex;
    justify-content: center;
    transform: translate3d(var(--future-x), var(--future-y), 0) translateX(-0.035em);
    -webkit-text-stroke: clamp(2px, 0.28vw, 5px) #ff5a2f;
    paint-order: stroke fill;
    text-shadow:
        0 0 2px #fff0e8,
        0 0 7px #ff5a2f,
        0 0 18px rgba(255, 51, 0, 0.9),
        0 0 48px rgba(255, 51, 0, 0.48);
    transition: transform 0.18s ease-out, text-shadow 0.35s ease;
    cursor: crosshair;
}

.future-title > span {
    display: inline-block;
    opacity: 0;
    filter: blur(18px);
    transform: translateY(0.65em) rotateX(75deg) scaleY(0.18);
    transform-origin: 50% 100%;
    color: rgba(255, 70, 18, 0.035);
    -webkit-text-stroke: inherit;
    transition:
        opacity 0.55s ease,
        filter 0.8s ease,
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.25s ease,
        -webkit-text-stroke 0.25s ease;
}

.about-future.is-visible .future-title > span {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotateX(0) scaleY(1);
}

.about-future.is-visible .future-title > span:nth-child(1) { transition-delay: 0.02s; }
.about-future.is-visible .future-title > span:nth-child(2) { transition-delay: 0.09s; }
.about-future.is-visible .future-title > span:nth-child(3) { transition-delay: 0.16s; }
.about-future.is-visible .future-title > span:nth-child(4) { transition-delay: 0.23s; }
.about-future.is-visible .future-title > span:nth-child(5) { transition-delay: 0.30s; }
.about-future.is-visible .future-title > span:nth-child(6) { transition-delay: 0.37s; }

.about-future.is-visible .future-title > span:nth-child(1) { animation: neonFlickerA 5.7s steps(1) 1.4s infinite; }
.about-future.is-visible .future-title > span:nth-child(2) { animation: neonFlickerB 7.9s steps(1) 3.1s infinite; }
.about-future.is-visible .future-title > span:nth-child(3) { animation: neonFlickerA 6.8s steps(1) 4.6s infinite; }
.about-future.is-visible .future-title > span:nth-child(4) { animation: neonFlickerC 9.2s steps(1) 2.2s infinite; }
.about-future.is-visible .future-title > span:nth-child(5) { animation: neonFlickerB 6.1s steps(1) 5.3s infinite; }
.about-future.is-visible .future-title > span:nth-child(6) { animation: neonFlickerC 8.4s steps(1) 3.8s infinite; }

@keyframes neonFlickerA {
    0%, 8%, 11%, 54%, 57%, 100% { opacity: 1; text-shadow: 0 0 2px #fff0e8, 0 0 7px #ff5a2f, 0 0 22px #ff3300, 0 0 52px rgba(255, 51, 0, 0.65); }
    9%, 55% { opacity: 0.18; text-shadow: none; }
    10%, 56% { opacity: 0.62; text-shadow: 0 0 5px rgba(255, 51, 0, 0.5); }
}

@keyframes neonFlickerB {
    0%, 31%, 34%, 36%, 79%, 82%, 100% { opacity: 1; text-shadow: 0 0 2px #fff0e8, 0 0 8px #ff5a2f, 0 0 24px #ff3300, 0 0 58px rgba(255, 51, 0, 0.62); }
    32%, 35%, 80% { opacity: 0.08; text-shadow: none; }
    33%, 81% { opacity: 0.46; text-shadow: 0 0 7px rgba(255, 51, 0, 0.52); }
}

@keyframes neonFlickerC {
    0%, 17%, 20%, 66%, 69%, 71%, 100% { opacity: 1; text-shadow: 0 0 2px #fff0e8, 0 0 7px #ff5a2f, 0 0 20px #ff3300, 0 0 48px rgba(255, 51, 0, 0.6); }
    18%, 67%, 70% { opacity: 0.22; text-shadow: none; }
    19%, 68% { opacity: 0.72; text-shadow: 0 0 12px rgba(255, 51, 0, 0.66); }
}

.future-title:hover {
    text-shadow: 0 0 3px #ffffff, 0 0 10px #ff6a42, 0 0 30px #ff3300, 0 0 80px rgba(255, 51, 0, 0.72);
}

.future-title:hover > span:nth-child(even) {
    color: rgba(255, 255, 255, 0.1);
    -webkit-text-stroke-color: #ffd4c7;
    transform: translateY(-0.035em) rotateX(0) scaleY(1);
}

.future-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-top: clamp(34px, 4vw, 56px);
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.015em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.65s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s;
}

.about-future.is-visible .future-copy {
    opacity: 1;
    transform: translateY(0);
}

.future-copy span {
    color: #ff3300;
    white-space: nowrap;
}

.future-milestone {
    padding-bottom: 0;
}

.future-milestone::before {
    box-shadow: 0 0 0 7px #f4f1e8, 0 0 20px rgba(255, 51, 0, 0.5);
}

.future-smile {
    color: #ff3300;
    white-space: nowrap;
}

.page-dot.is-active {
    background: #ff3300;
    border-color: #ff3300;
}

.motion-toggle {
    position: fixed;
    left: clamp(14px, 2.2vw, 30px);
    bottom: clamp(14px, 2.2vw, 30px);
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(13, 13, 13, 0.18);
    border-radius: 999px;
    background: rgba(243, 241, 237, 0.8);
    color: #101010;
    font: 700 0.68rem/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.motion-toggle:hover {
    color: #ff3300;
    border-color: rgba(255, 51, 0, 0.5);
    transform: translateY(-2px);
}

.motion-toggle-icon {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3300;
    box-shadow: 0 0 8px rgba(255, 51, 0, 0.7);
}

body.motion-off .motion-toggle-icon {
    background: #777;
    box-shadow: none;
}

body.motion-off *:not(.nav-container):not(.nav-item),
body.motion-off *:not(.nav-container):not(.nav-item)::before,
body.motion-off *:not(.nav-container):not(.nav-item)::after {
    animation-play-state: paused !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
}

body.motion-off #cursor-trail-canvas {
    display: none;
}

body.motion-off .section-stage,
body.motion-off .milestone-intro,
body.motion-off .milestone-item {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
}

body.motion-off .milestone-intro {
    transform: translateX(clamp(-86px, -7vw, -52px)) !important;
}

body.motion-off .work-card {
    transform: none !important;
}

body.motion-off .nav-container,
body.motion-off .nav-container::before,
body.motion-off .nav-item {
    animation-play-state: running !important;
    transition-duration: 0.35s !important;
}

@media (max-width: 760px) {
    body.mobile-prompt-open {
        overflow: hidden;
    }

    .mobile-experience-prompt {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: grid;
        place-items: center;
        padding: 22px;
        background:
            radial-gradient(circle at 82% 16%, rgba(255, 51, 0, 0.18), transparent 28%),
            #0d0d0d;
        color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body.mobile-experience-ready .mobile-experience-prompt {
        display: none;
    }

    .mobile-prompt-card {
        position: relative;
        width: min(100%, 440px);
        padding: 56px 26px 26px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.055);
    }

    .mobile-prompt-index {
        display: block;
        margin-bottom: 34px;
        color: #ff3300;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.28em;
        text-transform: uppercase;
    }

    .mobile-prompt-card h2 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
        line-height: 0.92;
        letter-spacing: -0.055em;
    }

    .mobile-prompt-card p {
        margin: 28px 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .mobile-prompt-close {
        position: absolute;
        right: 14px;
        top: 14px;
        width: 16px;
        height: 16px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.035);
        color: rgba(255, 255, 255, 0.48);
        font: 400 0.68rem/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        cursor: pointer;
    }

    body.mobile-experience-ready canvas,
    body.mobile-experience-ready .scroll-cue,
    body.mobile-experience-ready .content-overlay,
    body.mobile-experience-ready .page-indicator,
    body.mobile-experience-ready .motion-toggle {
        display: none !important;
    }

    body.mobile-experience-ready .section-stage,
    body.mobile-experience-ready .milestone-intro,
    body.mobile-experience-ready .milestone-item {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    body.mobile-experience-ready .landing-section {
        display: block;
        min-height: 125svh;
        height: 125svh;
        padding: 1px 24px 54px;
        background: #f3f1ed;
        overflow: visible;
    }

    body.mobile-experience-ready .mobile-hero {
        position: sticky;
        top: 84px;
        z-index: 2;
        display: block;
        width: 100%;
        margin-top: max(300px, calc(100svh - 390px));
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .mobile-hero p {
        margin-bottom: 22px;
        color: #ff3300;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.3em;
        text-transform: uppercase;
    }

    .mobile-hero h1 {
        font-size: clamp(5.2rem, 27vw, 8rem);
        font-weight: 950;
        line-height: 0.76;
        letter-spacing: -0.08em;
    }

    .mobile-hero span {
        display: block;
        margin-top: 34px;
        color: #6d665d;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        line-height: 1.5;
        text-transform: uppercase;
    }

    body.mobile-experience-ready .nav-container {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 0 8px;
        pointer-events: auto;
    }

    body.mobile-experience-ready .nav-container::before {
        inset: 8px 8px auto;
        width: auto;
        height: 54px;
        opacity: 1;
        transform: none;
    }

    body.mobile-experience-ready .nav-item {
        position: relative !important;
        inset: auto !important;
        opacity: 1 !important;
        transform: none !important;
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        padding: 9px 8px;
    }

    body.motion-off .milestone-intro {
        transform: none !important;
    }

    .about-section {
        background: #f3f1ed;
    }

    .milestone-layout {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 42px;
    }

    .milestone-intro {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 520px;
        margin-left: 0;
        transform: none;
        color: #101010;
    }

    .about-title {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .milestone-note {
        color: #5c5750;
    }

    .milestone-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 34px;
    }

    .about-future {
        width: 100%;
        min-height: clamp(300px, 86vw, 430px);
        margin: 0;
        padding: 56px 14px 28px;
    }

    .future-title {
        font-size: clamp(3.6rem, 18vw, 6.5rem);
    }

    .future-title:hover > span:nth-child(even) {
        -webkit-text-stroke-width: 2px;
    }

    .nav-item {
        font-size: 0.72rem;
        padding: 8px 10px;
        letter-spacing: 0.18em;
    }

    .page-indicator {
        right: 16px;
    }

    .featured-header {
        display: block;
    }

    .featured-note {
        margin-top: 20px;
    }

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

    .work-card {
        min-height: 0;
        padding-bottom: 32px;
    }

    .work-preview {
        position: relative;
        right: auto;
        bottom: auto;
        width: 150px;
        height: 150px;
        margin: 30px auto 0;
        transform: none;
    }

    .work-copy {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 24px;
    }

    .documentary-layout {
        grid-template-columns: 1fr;
    }

    .documentary-poster {
        display: none;
    }

    .mobile-documentary-poster {
        display: block;
        width: min(100%, 420px);
        margin: 4px auto 0;
        border: 1px solid rgba(13, 13, 13, 0.14);
    }

    .poster-particle-canvas {
        inset: -30px;
        width: calc(100% + 60px);
        height: calc(100% + 60px);
    }

    .collab-shell {
        min-height: 0;
    }

    .collab-section {
        min-height: 0;
        padding-top: 96px;
        padding-bottom: 110px;
    }

    .collab-content {
        min-height: 0;
        justify-content: flex-start;
        gap: 26px;
    }

    .collab-title {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
        font-size: clamp(2.8rem, 13vw, 4.4rem);
        line-height: 0.94;
    }

    .collab-bottom {
        transform: none;
    }

    .collab-copy {
        margin-bottom: 12px;
    }

    .collab-actions {
        display: grid;
    }

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

    .human-check {
        grid-template-columns: 1fr 100px;
    }

    .contact-form-actions {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .form-status {
        grid-column: 1 / -1;
        text-align: center;
    }

    .site-footer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        line-height: 1.8;
    }

    .site-footer .footer-left,
    .site-footer .footer-center,
    .site-footer .footer-right {
        justify-self: center;
    }
}
