.more-projects.stack-card {
    background: #050607;
}

.contact-request.stack-card {
    background: #e4e4e0;
}

.more-projects > .stack-card__surface {
    height: 100vh;
    min-height: 100vh;
    padding: clamp(2.8rem, 3.8vw, 4.2rem) clamp(1.25rem, 2vw, 2rem) clamp(1.75rem, 2.6vw, 2.35rem);
    background:
        radial-gradient(circle at top right, rgba(10, 0, 255, 0.14), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 30%),
        linear-gradient(180deg, #050607 0%, #0a0b0d 100%);
    overflow: hidden;
    box-sizing: border-box;
}

.more-projects__shell {
    width: min(1320px, 100%);
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: clamp(0.8rem, 1.3vh, 1.25rem);
}

.more-projects__meta,
.contact-request__meta,
.showreel-card__eyebrow,
.showreel-card__hud,
.showreel-card__dims,
.more-projects__note,
.more-projects__status {
    font-family: 'Terminus', 'Courier New', monospace;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.more-projects__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
}

.more-projects__top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
    gap: clamp(1.25rem, 2vw, 2rem);
    align-items: end;
}

.more-projects__title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

.more-projects__lead {
    margin-top: 0.8rem;
    max-width: 48rem;
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.more-projects__note {
    justify-self: end;
    display: grid;
    gap: 0.45rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.52);
}

.more-projects__note span:first-child {
    color: rgba(186, 254, 0, 0.88);
}

.more-projects__viewport {
    --showreel-stage-height: clamp(520px, 58vh, 700px);
    position: relative;
    display: grid;
    align-items: center;
    height: var(--showreel-stage-height);
    min-height: var(--showreel-stage-height);
    padding: 0 clamp(4.75rem, 6vw, 6.8rem);
}

.more-projects__stage {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 6px;
    background:
        radial-gradient(circle at top right, rgba(10, 0, 255, 0.1), transparent 30%),
        linear-gradient(180deg, #06080b 0%, #0b0f14 100%);
    perspective: 1800px;
    transform-style: preserve-3d;
    touch-action: pan-y;
    isolation: isolate;
}

.showreel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 980px);
    height: 100%;
    max-height: 100%;
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 5px;
    background: #080b0f;
    border: 1px solid rgba(10, 0, 255, 0.12);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
    filter: blur(4px) saturate(0.78);
    transition:
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s ease,
        filter 0.45s ease,
        box-shadow 0.45s ease;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
}

.showreel-card.is-active {
    opacity: 1;
    z-index: 20;
    pointer-events: auto;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
        0 42px 110px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.showreel-card.is-prev,
.showreel-card.is-next {
    opacity: 0.44;
    z-index: 4;
    pointer-events: none;
    filter: blur(1px) saturate(0.58);
}

.showreel-card.is-prev {
    transform: translate(calc(-50% - min(58vw, 760px)), -50%) scale(0.78) rotateY(28deg);
}

.showreel-card.is-next {
    transform: translate(calc(-50% + min(58vw, 760px)), -50%) scale(0.78) rotateY(-28deg);
}

.showreel-card.is-hidden-left {
    transform: translate(calc(-50% - min(96vw, 1220px)), -50%) scale(0.66);
}

.showreel-card.is-hidden-right {
    transform: translate(calc(-50% + min(96vw, 1220px)), -50%) scale(0.66);
}

.showreel-card__media {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
    background:
        radial-gradient(circle at center, rgba(10, 0, 255, 0.08), transparent 58%),
        linear-gradient(180deg, #040507 0%, #090c10 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.showreel-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 24%, transparent 72%, rgba(0, 0, 0, 0.44) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.24));
    z-index: 1;
    pointer-events: none;
}

.showreel-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.14;
    z-index: 1;
    pointer-events: none;
}

.showreel-card__video {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    background: #000;
    filter: saturate(0.94) contrast(1.06);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.showreel-card__hud,
.showreel-card__dims {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.58);
}

.showreel-card__hud {
    top: 1.2rem;
}

.showreel-card__dims {
    bottom: 1.2rem;
    color: rgba(186, 254, 0, 0.78);
}

.showreel-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-width: 0;
    padding: 1.7rem 1.6rem 1.3rem;
    background:
        radial-gradient(circle at top left, rgba(10, 0, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #0d1116 0%, #090b0e 100%);
}

.showreel-card__eyebrow {
    font-size: 0.66rem;
    color: rgba(186, 254, 0, 0.88);
}

.showreel-card__title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #fff;
    text-transform: uppercase;
}

.showreel-card__desc {
    font-size: clamp(0.96rem, 1.05vw, 1.04rem);
    line-height: 1.64;
    color: rgba(255, 255, 255, 0.68);
}

.showreel-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.showreel-card__tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Terminus', 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.showreel-card__action {
    margin-top: 0.8rem;
    align-self: flex-start;
    min-height: 54px;
    padding: 0.95rem 1.25rem;
    border: 1px solid rgba(10, 0, 255, 0.24);
    background: linear-gradient(180deg, rgba(18, 22, 29, 0.98), rgba(9, 12, 16, 0.98));
    color: #fff;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.showreel-card__action:hover {
    opacity: 1;
    border-color: rgba(10, 0, 255, 0.46);
}

.showreel-nav-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: clamp(76px, 7vw, 128px);
    height: clamp(96px, 9vw, 148px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(186, 254, 0, 0.96);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(5.4rem, 9vw, 9rem);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    text-shadow:
        0 0 18px rgba(186, 254, 0, 0.36),
        0 0 42px rgba(10, 0, 255, 0.22);
    transition:
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.2s ease,
        text-shadow 0.2s ease,
        opacity 0.2s ease;
    animation: showreelNavIdle 2.7s ease-in-out infinite;
}

.showreel-nav-btn--prev {
    left: clamp(0.55rem, 1.1vw, 1.2rem);
}

.showreel-nav-btn--next {
    right: clamp(0.55rem, 1.1vw, 1.2rem);
    animation-delay: 0.32s;
}

.showreel-nav-btn:hover,
.showreel-nav-btn:focus-visible {
    outline: none;
    opacity: 1;
    color: rgba(186, 254, 0, 1);
    text-shadow:
        0 0 28px rgba(186, 254, 0, 0.72),
        0 0 72px rgba(10, 0, 255, 0.34);
    transform: translateY(-50%) scale(1.1);
    animation-play-state: paused;
}

@keyframes showreelNavIdle {
    0%, 100% {
        opacity: 0.86;
        text-shadow:
            0 0 16px rgba(186, 254, 0, 0.3),
            0 0 38px rgba(10, 0, 255, 0.18);
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        text-shadow:
            0 0 28px rgba(186, 254, 0, 0.58),
            0 0 64px rgba(10, 0, 255, 0.26);
        transform: translateY(-50%) scale(1.045);
    }
}

.more-projects__footer {
    display: grid;
    grid-template-columns: auto auto minmax(180px, 1fr);
    gap: 1rem 1.5rem;
    align-items: center;
}

.more-projects__status {
    display: grid;
    gap: 0.35rem;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.48);
}

.more-projects__status span:first-child {
    font-size: 0.68rem;
    color: rgba(186, 254, 0, 0.9);
}

.more-projects__controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.showreel-dot {
    width: 12px;
    height: 12px;
    border-radius: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.showreel-dot.is-active {
    background: rgba(10, 0, 255, 0.95);
    border-color: rgba(10, 0, 255, 0.95);
    transform: scale(1.1);
}

.more-projects__progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.more-projects__progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 25%;
    background: rgba(10, 0, 255, 0.95);
    transform: translateX(0%);
    transition: transform 0.35s ease;
}

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

.showreel-modal {
    position: fixed;
    inset: 0;
    z-index: 10030;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.showreel-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(18px);
}

.showreel-modal__dialog {
    position: relative;
    width: min(100%, 460px);
    height: min(90svh, 820px);
    aspect-ratio: 9 / 16;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #000;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.showreel-modal__video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: cover;
}

.showreel-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.44);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.showreel-modal__close:hover,
.showreel-modal__close:focus-visible {
    outline: none;
    opacity: 1;
    background: rgba(0, 0, 0, 0.64);
}

.contact-request > .stack-card__surface {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    padding: clamp(5.2rem, 8vh, 6.4rem) clamp(1rem, 1.8vw, 1.75rem) clamp(1.75rem, 4vh, 3rem) 0;
    background: #e4e4e0;
    color: #0a0a0a;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-request__grid {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
}

.contact-request__info,
.contact-request__socials {
    position: relative;
    min-width: 0;
}

.contact-request__info {
    padding: clamp(3.5rem, 4vw, 4.5rem) clamp(2.4rem, 3vw, 3.5rem) clamp(2.6rem, 3vw, 3.4rem) 5vw;
    background: #e4e4e0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-request__info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.contact-request__info > * {
    position: relative;
    z-index: 1;
}

.contact-request__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.62rem;
    color: rgba(0, 0, 0, 0.42);
}

.contact-request__title {
    margin-top: 1.3rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.contact-request__lead {
    margin-top: 1.25rem;
    max-width: 40rem;
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    line-height: 1.64;
    color: rgba(0, 0, 0, 0.58);
}

.contact-request__list {
    margin-top: 1.6rem;
    display: grid;
    gap: 0.85rem;
}

.contact-request__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-request__item p,
.contact-request__item a {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.62);
}

.contact-request__item a {
    color: #0a0a0a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.contact-request__item-index {
    font-family: 'Terminus', 'Courier New', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(10, 0, 255, 0.84);
    padding-top: 0.25rem;
}

.contact-request__socials {
    padding: 0 clamp(1rem, 1.4vw, 1.35rem) 0 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.35vw, 1.35rem);
    align-items: stretch;
    align-content: center;
    background: transparent;
    border-left: none;
}

.contact-card {
    position: relative;
    height: min(68vh, 680px);
    min-height: 0;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10, 0, 255, 0.38);
    background: #050505;
    color: #ffffff;
    isolation: isolate;
    opacity: 1;
}

.contact-card::before,
.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.contact-card::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    mix-blend-mode: difference;
    opacity: 0.26;
}

.contact-card::after {
    border: 2px solid rgba(255, 4, 7, 0.78);
    inset: 0.45rem;
    opacity: 0.72;
}

.contact-card__photo,
.contact-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-card__photo {
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    filter: grayscale(0.18) contrast(1.12) saturate(0.86);
    transition: opacity 1.25s ease, transform 4.8s ease;
    z-index: 0;
}

.contact-card__photo.is-active {
    opacity: 1;
    transform: scale(1.11);
}

.contact-card__shade {
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(10, 0, 255, 0.12), transparent 48%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.62));
}

.contact-card__icon {
    position: relative;
    z-index: 4;
    width: clamp(68px, 7.2vw, 118px);
    height: clamp(68px, 7.2vw, 118px);
    object-fit: contain;
    mix-blend-mode: difference;
    filter: invert(1) contrast(1.55) saturate(1.4);
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.45s ease,
        opacity 0.45s ease;
}

.contact-card:hover .contact-card__icon,
.contact-card:focus-visible .contact-card__icon {
    transform: scale(1.16) rotate(-4deg);
    filter: invert(1) contrast(1.95) saturate(2.2) hue-rotate(80deg);
    opacity: 0.96;
    animation: contactIconPulse 1.45s ease-in-out infinite;
}

.contact-card:focus-visible {
    outline: 2px solid #bafe00;
    outline-offset: 4px;
}

.contact-card__label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 4;
    font-family: 'Terminus', 'Courier New', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    mix-blend-mode: difference;
}

@keyframes contactIconPulse {
    0%, 100% {
        transform: scale(1.08) rotate(-4deg);
    }
    50% {
        transform: scale(1.18) rotate(-4deg);
    }
}

.y2k-corner-asset {
    position: absolute;
    z-index: 2;
    width: clamp(110px, 16vw, 310px);
    height: auto;
    pointer-events: none;
    opacity: 0.72;
    mix-blend-mode: difference;
    filter: invert(1) contrast(1.5) saturate(1.8);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
    will-change: opacity, filter, transform;
}

.y2k-corner-asset.is-changing {
    opacity: 0;
    filter: invert(1) contrast(2) saturate(2.4) hue-rotate(90deg);
}

.y2k-corner-asset--project-a {
    left: 1.35rem;
    bottom: 4.4rem;
    transform: rotate(-8deg);
}

.y2k-corner-asset--project-b {
    right: 1.25rem;
    top: 4.6rem;
    transform: rotate(9deg) scale(0.72);
}

.y2k-corner-asset--contact-a {
    left: 1.4rem;
    bottom: 1rem;
    transform: rotate(8deg);
}

.y2k-corner-asset--contact-b {
    right: 1.4rem;
    top: 5.2rem;
    transform: rotate(-12deg) scale(0.86);
}

@media (max-width: 1100px) {
    .showreel-nav-btn {
        width: 64px;
        height: 96px;
        font-size: 5.4rem;
    }

    .more-projects > .stack-card__surface {
        padding-inline: 1.25rem;
    }

    .more-projects__top,
    .contact-request__grid {
        grid-template-columns: 1fr;
    }

    .more-projects__note {
        justify-self: start;
    }

    .more-projects__viewport {
        --showreel-stage-height: clamp(560px, 68vh, 760px);
        padding: 0;
    }

    .showreel-card.is-prev {
        transform: translate(calc(-50% - min(74vw, 720px)), -50%) scale(0.76) rotateY(26deg);
    }

    .showreel-card.is-next {
        transform: translate(calc(-50% + min(74vw, 720px)), -50%) scale(0.76) rotateY(-26deg);
    }

    .contact-request__info {
        padding: 3rem 1.75rem 1rem;
    }

    .contact-request__socials {
        padding: 0 1.75rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .more-projects.stack-card,
    .contact-request.stack-card {
        position: sticky;
        top: 0;
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }

    .more-projects > .stack-card__surface {
        height: 100vh;
        min-height: 100vh;
        padding: 4rem 0.75rem 0.85rem;
        overflow: hidden;
    }

    .more-projects__shell {
        height: 100%;
        min-height: 0;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 0.62rem;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .more-projects__meta,
    .more-projects__lead,
    .more-projects__note {
        display: none;
    }

    .more-projects__top {
        display: block;
        min-height: 0;
    }

    .more-projects__title {
        font-size: clamp(2rem, 10.6vw, 3.15rem);
    }

    .more-projects__viewport {
        height: 100%;
        min-height: 0;
        padding: 0;
    }

    .showreel-nav-btn {
        display: none;
    }

    .more-projects__stage {
        min-height: 100%;
        border-radius: 6px;
    }

    .showreel-card {
        width: min(100%, 100%);
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr);
        border-radius: 5px;
    }

    .showreel-card.is-prev {
        transform: translate(calc(-50% - 96%), -50%) scale(0.88);
        opacity: 0.08;
    }

    .showreel-card.is-next {
        transform: translate(calc(-50% + 96%), -50%) scale(0.88);
        opacity: 0.08;
    }

    .showreel-card.is-hidden-left {
        transform: translate(calc(-50% - 160%), -50%) scale(0.7);
    }

    .showreel-card.is-hidden-right {
        transform: translate(calc(-50% + 160%), -50%) scale(0.7);
    }

    .showreel-card__media {
        min-height: 0;
        height: 100%;
        aspect-ratio: auto;
        border-right: none;
        border-bottom: none;
        padding: 0.45rem;
        align-items: stretch;
    }

    .showreel-card__video {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 4px;
    }

    .showreel-card__body {
        display: none;
    }

    .more-projects__footer {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.42rem;
        padding: 0 0.1rem;
    }

    .more-projects__status {
        gap: 0.22rem;
        font-size: 0.54rem;
    }

    .more-projects__status span:last-child {
        font-size: 0.5rem;
    }

    .more-projects__progress {
        order: 2;
    }

    .contact-request__info {
        max-height: none;
        padding: 1.8rem 0.95rem 1.15rem;
        overflow: visible;
    }

    .contact-request > .stack-card__surface {
        height: 100vh;
        min-height: 100vh;
        padding: 4.35rem 0 0.85rem;
        overflow: hidden;
        transform: none;
        backface-visibility: visible;
        contain: none;
    }

    .contact-request__grid {
        height: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        overflow: hidden;
    }

    .contact-request__socials {
        min-height: 0;
        padding: 0 1rem 1rem;
        overflow: hidden;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .contact-card {
        height: 100%;
        min-height: 0;
    }

    .contact-request__title {
        margin-top: 0.75rem;
        font-size: clamp(1.75rem, 9.2vw, 2.85rem);
    }

    .contact-request__lead {
        margin-top: 0.8rem;
        font-size: 0.8rem;
        line-height: 1.34;
    }

    .contact-request__item p,
    .contact-request__item a {
        font-size: 0.76rem;
        line-height: 1.3;
    }

    .contact-request__list {
        margin-top: 1rem;
        gap: 0.6rem;
    }

    .contact-request__item {
        gap: 0.55rem;
        padding-top: 0.45rem;
    }

    .contact-request__item:nth-child(1),
    .contact-request__item:nth-child(2),
    .contact-request__item:nth-child(3) {
        display: none;
    }

    .contact-card__icon {
        width: clamp(46px, 13vw, 72px);
        height: clamp(46px, 13vw, 72px);
    }

    .contact-card__label {
        left: 0.6rem;
        bottom: 0.65rem;
        font-size: 0.54rem;
    }

    .y2k-corner-asset {
        display: block;
        z-index: 0;
        width: clamp(82px, 30vw, 150px);
        opacity: 0.18;
        mix-blend-mode: multiply;
        filter: grayscale(1) contrast(1.18);
        transition: opacity 0.45s ease, transform 0.45s ease;
        will-change: opacity;
    }

    .y2k-corner-asset.is-changing {
        opacity: 0;
        filter: grayscale(1) contrast(1.18);
    }

    .y2k-corner-asset--project-a {
        left: 0.35rem;
        bottom: 6.6rem;
        transform: rotate(-8deg) scale(0.74);
    }

    .y2k-corner-asset--project-b {
        right: 0.35rem;
        top: 4.8rem;
        transform: rotate(9deg) scale(0.62);
    }

    .y2k-corner-asset--contact-a {
        left: 0.35rem;
        bottom: 8.2rem;
        transform: rotate(8deg) scale(0.72);
    }

    .y2k-corner-asset--contact-b {
        right: 0.25rem;
        top: 5rem;
        transform: rotate(-12deg) scale(0.66);
    }

    .showreel-modal {
        padding: 1rem;
    }

    .showreel-modal__dialog {
        width: min(100%, 440px);
        height: min(92svh, 760px);
        border-radius: 5px;
    }
}

@media (max-height: 920px) and (min-width: 769px) {
    .more-projects > .stack-card__surface {
        padding-top: 2.2rem;
        padding-bottom: 1.5rem;
    }

    .more-projects__title,
    .contact-request__title {
        font-size: clamp(2.3rem, 4.4vw, 4.5rem);
    }

    .more-projects__viewport {
        --showreel-stage-height: clamp(500px, 58vh, 640px);
    }

    .showreel-card__body {
        padding: 1.4rem 1.35rem;
        gap: 0.8rem;
    }

    .showreel-card__title {
        font-size: clamp(2.1rem, 3vw, 3.5rem);
    }

    .showreel-card__desc,
    .contact-request__lead,
    .contact-request__item p,
    .contact-request__item a,
    .contact-request__info {
        padding-top: 2.4rem;
        padding-bottom: 2rem;
    }
}
