.inner-stage {
    margin-left: var(--sidebar-size);
    min-height: 100dvh;
    padding: 80px 40px 120px;
    background: var(--paper);
    color: var(--ink);
}

.page-reveal {
    max-width: 860px;
    transform: translateY(36px);
    opacity: 0;
    filter: blur(10px);
    animation: pageReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageReveal {
    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

.page-label {
    margin: 0 0 32px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    opacity: 0.55;
}

.inner-stage h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 112px);
    line-height: 0.86;
    font-weight: 400;
    letter-spacing: 0.035em;
    transform: scaleY(1.06);
    transform-origin: left center;
}

.about-text {
    max-width: 620px;
    margin-top: 64px;
}

.about-text p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    opacity: 0.75;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    max-width: 900px;
}

.about-details span {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.55;
}

.about-details p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.7;
}

.archive-page {
    position: relative;
}

.archive-list {
    margin-top: 80px;
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.archive-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    align-items: center;

    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.14);

    color: inherit;
    text-decoration: none;

    transition:
        opacity 220ms ease,
        filter 220ms ease,
        transform 220ms ease,
        letter-spacing 220ms ease;
}

body.is-dark .archive-item {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.archive-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

body.is-dark .archive-item:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.archive-item span,
.archive-item em {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    opacity: 0.55;
}

.archive-item strong {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.archive-item:hover {
    opacity: 0.65;
    filter: blur(0.8px);
    transform: translateX(3px);
    letter-spacing: 0.03em;
}

.archive-list:hover .archive-item {
    opacity: 0.28;
}

.archive-list:hover .archive-item:hover,
.archive-item.active {
    opacity: 1;
    filter: blur(0);
}

.archive-list:hover .archive-item,
.archive-list:hover .archive-item:hover {
    border-top-color: rgba(0, 0, 0, 0.14);
}

.archive-list:hover .archive-item:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

body.is-dark .archive-list:hover .archive-item,
body.is-dark .archive-list:hover .archive-item:hover {
    border-top-color: rgba(255, 255, 255, 0.14);
}

body.is-dark .archive-list:hover .archive-item:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.archive-preview {
    --preview-shift-x: 50px;

    position: fixed;
    left: calc(var(--sidebar-size) + ((100vw - var(--sidebar-size)) / 2) + var(--preview-shift-x));
    top: var(--preview-y);

    width: 340px;
    aspect-ratio: 2035 / 1440;

    transform: translate(-50%, -50%);

    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.9;
    border-radius: 3px;

    transition:
        opacity 260ms ease,
        transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.archive-preview.is-hovering {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.archive-preview.is-hovering {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.archive-preview.is-hovering {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.archive-preview-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.04);
    filter: blur(8px);
    border-radius: 3px;

    transition:
        opacity 420ms ease,
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 520ms ease;
}

.archive-preview-img.is-visible,
.archive-preview-img.is-current {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.archive-list.is-scroll-active .archive-item {
    opacity: 0.6;
}

.archive-list.is-scroll-active .archive-item.active {
    opacity: 1;
}

.archive-list:hover .archive-item {
    opacity: 0.28;
}

.archive-list:hover .archive-item:hover,
.archive-list:hover .archive-item.active {
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .inner-stage {
        margin-left: 0;
        padding: 110px 25px 90px;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .archive-preview {
        display: none;
    }
}

@media (max-width: 809.98px) {
    .inner-stage {
        padding: 100px 20px 80px;
    }

    .inner-stage h1 {
        font-size: 52px;
    }

    .about-text {
        margin-top: 48px;
    }

    .about-text p {
        font-size: 16px;
    }

    .archive-list {
        margin-top: 56px;
    }

    .archive-item {
        grid-template-columns: 36px 1fr;
    }

    .archive-item em {
        grid-column: 2;
    }
}

body {
    background:
        linear-gradient(rgba(0, 0, 0, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.016) 1px, transparent 1px),
        radial-gradient(circle at 18% 18%, rgba(160, 185, 190, 0.18), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(190, 198, 202, 0.15), transparent 28%),
        var(--paper);
    background-size: 220px 220px, 220px 220px, auto, auto, auto;
}

body.is-dark {
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 18% 18%, rgba(120, 140, 145, 0.09), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.055), transparent 28%),
        var(--paper);
    background-size: 220px 220px, 220px 220px, auto, auto, auto;
}

.archive-grain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.36;
    background-image: url("../img/grain-texture-strong.png");
    background-repeat: repeat;
    background-size: 180px;
    mix-blend-mode: multiply;
}

body.is-dark .archive-grain {
    opacity: 0.2;
    mix-blend-mode: screen;
}

.archive-top-nav {
    position: fixed;
    z-index: 50;
    top: 34px;
    left: 36px;
    right: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    color: var(--ink);
    pointer-events: none;
}

.archive-top-nav a,
.archive-top-nav button {
    pointer-events: auto;
}

.archive-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    font-family: var(--font-heading);
    color: currentColor;
    text-decoration: none;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 1;
}

.archive-brand span {
    font-size: 18px;
    font-weight: 700;
    transform: scaleY(1.08);
    transform-origin: left center;
}

.archive-brand em {
    font-family: var(--font-body);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.15em;
    opacity: 0.42;
}

.archive-nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.archive-nav-links a {
    position: relative;
    color: currentColor;
    text-decoration: none;
    transition:
        opacity 220ms ease,
        filter 220ms ease,
        transform 220ms ease,
        letter-spacing 220ms ease;
}

.archive-nav-links a:hover,
.archive-nav-links a[aria-current="page"] {
    opacity: 0.62;
    filter: blur(0.5px);
    transform: translateY(-1px);
    letter-spacing: 0.16em;
}

.archive-nav-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: -6px;
    color: currentColor;
}

.sound-toggle,
.theme-toggle {
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: none;
    padding: 0;
}

.sound-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 22px;
    font-family: var(--font-body);
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.78;
    transition: opacity 220ms ease, filter 220ms ease;
}

.sound-toggle:hover {
    opacity: 0.58;
    filter: blur(0.4px);
}

.sound-icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.sound-icon::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
    transition: opacity 220ms ease, transform 220ms ease;
}

.sound-toggle[aria-pressed="true"] .sound-icon::before {
    opacity: 1;
    transform: scale(1.25);
}

.inner-stage {
    position: relative;
    z-index: 2;
    margin-left: 0;
    min-height: 100dvh;
    padding: 170px 36px 120px;
    background: transparent;
    color: var(--ink);
}

.archive-page {
    width: min(100%, 1160px);
    max-width: none;
    margin-left: auto;
}

.archive-list {
    margin-top: 20px;
    max-width: none;
    width: min(100%, 1040px);
}

.archive-item {
    grid-template-columns: 60px minmax(240px, 1fr) auto;
    padding: 21px 0;
    border-top-color: color-mix(in srgb, var(--ink) 13%, transparent);
}

.archive-item:last-child {
    border-bottom-color: color-mix(in srgb, var(--ink) 13%, transparent);
}

.archive-item span,
.archive-item em {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    opacity: 0.42;
}

.archive-item strong {
    font-family: var(--font-body);
    font-size: clamp(19px, 1.5vw, 25px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.archive-list:hover .archive-item,
.archive-list:hover .archive-item:hover {
    border-top-color: color-mix(in srgb, var(--ink) 13%, transparent);
}

.archive-list:hover .archive-item:hover {
    border-bottom-color: color-mix(in srgb, var(--ink) 13%, transparent);
}

.archive-preview {
    left: min(70vw, 1080px);
    width: min(360px, 26vw);
    box-shadow: 0 24px 90px rgba(20, 28, 32, 0.11);
    border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}

body.is-dark .archive-preview {
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

@media (max-width: 1199.98px) {
    .archive-top-nav {
        top: 24px;
        left: 24px;
        right: 24px;
        align-items: flex-start;
    }

    .archive-nav-links {
        display: none;
    }

    .archive-nav-controls {
        margin-left: auto;
    }

    .inner-stage {
        padding: 128px 25px 90px;
    }

    .archive-page {
        margin-left: 0;
    }

    .archive-list {
        width: 100%;
    }
}

@media (max-width: 809.98px) {
    .archive-top-nav {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .archive-brand span {
        font-size: 15px;
    }

    .archive-brand em,
    .sound-label {
        display: none;
    }

    .archive-nav-controls {
        gap: 10px;
    }

    .inner-stage {
        padding: 108px 20px 80px;
    }

    .archive-item {
        grid-template-columns: 38px 1fr;
        gap: 16px;
        padding: 18px 0;
    }

    .archive-item em {
        grid-column: 2;
    }
}

.archive-grain {
    opacity: 0.105 !important;
    mix-blend-mode: overlay !important;
    background-size: 180px !important;
}

body.is-dark .archive-grain {
    opacity: 0.08 !important;
    mix-blend-mode: overlay !important;
}

body {
    background:
        linear-gradient(rgba(0, 0, 0, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.012) 1px, transparent 1px),
        radial-gradient(circle at 18% 18%, rgba(160, 185, 190, 0.11), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(190, 198, 202, 0.09), transparent 28%),
        var(--paper) !important;
    background-size: 220px 220px, 220px 220px, auto, auto, auto !important;
}

body.is-dark {
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 18% 18%, rgba(120, 140, 145, 0.055), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.035), transparent 28%),
        var(--paper) !important;
    background-size: 220px 220px, 220px 220px, auto, auto, auto !important;
}

.archive-top-nav {
    top: 28px !important;
    left: 32px !important;
    right: 32px !important;
    align-items: center !important;
    gap: 24px !important;
}

.archive-brand span {
    font-size: 16px !important;
    line-height: 0.9 !important;
    font-weight: 700 !important;
    letter-spacing: 0.055em !important;
    transform: scaleY(1.08) !important;
}

.archive-brand em {
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    opacity: 0.48 !important;
}

.archive-nav-links {
    gap: 16px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    letter-spacing: 0.075em !important;
}

.archive-nav-links a:hover,
.archive-nav-links a[aria-current="page"] {
    opacity: 0.58 !important;
    filter: blur(0.8px) !important;
    transform: translateY(-1px) !important;
    letter-spacing: 0.12em !important;
}

.archive-nav-controls {
    margin-top: 0 !important;
    gap: 14px !important;
}

.sound-toggle {
    height: 22px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    opacity: 0.82 !important;
}

.sound-icon {
    width: 18px !important;
    height: 18px !important;
}

.archive-preview {
    left: calc(var(--sidebar-size) + ((100vw - var(--sidebar-size)) / 2) + 50px) !important;
    width: 340px !important;
    box-shadow: none !important;
    border: 0 !important;
}

@media (max-width: 1199.98px) {
    .archive-top-nav {
        top: 24px !important;
        left: 24px !important;
        right: 24px !important;
    }
}

@media (max-width: 809.98px) {
    .archive-top-nav {
        top: 20px !important;
        left: 20px !important;
        right: 20px !important;
    }

    .archive-brand span {
        font-size: 15px !important;
    }
}

:root {
    --paper: #f0f4f8;
    --ink: #050505;
    --muted: rgba(5, 5, 5, 0.52);
    --quiet: rgba(5, 5, 5, 0.34);
    --line: rgba(5, 5, 5, 0.14);
    --panel: rgba(240, 244, 248, 0.72);
    --font-heading: "Big Shoulders Display", sans-serif;
    --font-body: "Barlow Condensed", "Inter", Arial, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-dark {
    --paper: #0d0d0d;
    --ink: #f3f3f3;
    --muted: rgba(243, 243, 243, 0.54);
    --quiet: rgba(243, 243, 243, 0.34);
    --line: rgba(243, 243, 243, 0.16);
    --panel: rgba(13, 13, 13, 0.72);
}

html,
body {
    background: var(--paper) !important;
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, var(--line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 240px 240px;
    opacity: 0.105;
    mask-image: radial-gradient(circle at 50% 50%, black 0 54%, transparent 88%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 42%, transparent 0 42%, rgba(0,0,0,0.055) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.028), transparent 18%, transparent 82%, rgba(0,0,0,0.028));
    opacity: 0.7;
}

body.is-dark::after {
    background: radial-gradient(circle at 50% 42%, transparent 0 36%, rgba(0,0,0,0.56) 100%);
    opacity: 0.9;
}

.archive-grain {
    z-index: 2 !important;
    opacity: 0.105 !important;
    mix-blend-mode: overlay !important;
    background-image: url("../img/grain-texture-strong.png") !important;
    background-repeat: repeat !important;
    background-size: 180px !important;
}

body.is-dark .archive-grain {
    opacity: 0.08 !important;
    mix-blend-mode: overlay !important;
}

.page-shell,
.inner-stage {
    background: transparent !important;
}

.archive-top-nav {
    position: fixed !important;
    z-index: 100 !important;
    left: 32px !important;
    right: 32px !important;
    top: 28px !important;
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 24px !important;
    align-items: center !important;
    justify-content: initial !important;
    color: var(--ink) !important;
    pointer-events: none !important;
}

.archive-top-nav a,
.archive-top-nav button {
    pointer-events: auto !important;
}

.archive-brand {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 7px !important;
    width: max-content !important;
    font-family: var(--font-body) !important;
    color: var(--ink) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

.archive-brand span {
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    line-height: 0.9 !important;
    font-weight: 700 !important;
    letter-spacing: 0.055em !important;
    transform: scaleY(1.08) !important;
    transform-origin: left center !important;
}

.archive-brand em {
    font-family: var(--font-body) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    opacity: 1 !important;
}

.archive-nav-links {
    margin-left: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    font-family: var(--font-body) !important;
    font-size: initial !important;
    line-height: initial !important;
    font-weight: initial !important;
    letter-spacing: initial !important;
    text-transform: none !important;
}

.archive-nav-links a {
    color: var(--ink) !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    letter-spacing: 0.075em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition:
        opacity 240ms ease,
        filter 240ms ease,
        transform 280ms var(--ease-out),
        letter-spacing 280ms ease !important;
}

.archive-nav-links a:hover,
.archive-nav-links a[aria-current="page"] {
    opacity: 0.58 !important;
    filter: blur(0.8px) !important;
    transform: translateY(-1px) !important;
    letter-spacing: 0.12em !important;
}

.archive-nav-controls {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    margin-top: 0 !important;
    color: var(--ink) !important;
    pointer-events: auto !important;
}

.sound-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    height: 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    cursor: none !important;
    opacity: 0.82 !important;
    font-family: var(--font-body) !important;
    font-size: initial !important;
    line-height: initial !important;
    font-weight: initial !important;
    letter-spacing: initial !important;
    text-transform: none !important;
    transition: opacity 220ms ease, transform 280ms var(--ease-out), color 220ms ease !important;
}

.sound-toggle:hover { opacity: 1 !important; filter: none !important; }

.sound-label {
    font-family: var(--font-body) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.sound-icon {
    width: 18px !important;
    height: 18px !important;
    border: 1.5px solid currentColor !important;
    border-radius: 999px !important;
    position: relative !important;
    display: inline-block !important;
}

.sound-icon::before,
.sound-icon::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 2px !important;
    height: 6px !important;
    background: currentColor !important;
    border-radius: 999px !important;
    transform: translate(-50%, -50%) scaleY(0.45) !important;
    opacity: 1 !important;
    transition: transform 260ms var(--ease-out), opacity 220ms ease !important;
}

.sound-icon::after {
    left: 62% !important;
    height: 9px !important;
    opacity: 0.42 !important;
}

.sound-toggle[aria-pressed="true"] .sound-icon::before { transform: translate(-58%, -50%) scaleY(1) !important; }
.sound-toggle[aria-pressed="true"] .sound-icon::after { transform: translate(-40%, -50%) scaleY(1) !important; opacity: 1 !important; }

.archive-nav-controls .theme-toggle {
    display: inline-flex !important;
    align-items: center !important;
    height: 22px !important;
    color: var(--ink) !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    cursor: none !important;
}

.archive-nav-controls .toggle-track {
    width: 29px !important;
    height: 18px !important;
    border: 1.5px solid currentColor !important;
    border-radius: 999px !important;
    display: block !important;
    position: relative !important;
    background: transparent !important;
}

.archive-nav-controls .toggle-dot {
    position: absolute !important;
    left: 3px !important;
    top: 50% !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: currentColor !important;
    transform: translateY(-50%) !important;
    transition: transform 250ms var(--ease-out), background 250ms ease !important;
}

body.is-dark .archive-nav-controls .toggle-track { background: currentColor !important; }
body.is-dark .archive-nav-controls .toggle-dot { transform: translate(12px, -50%) !important; background: var(--paper) !important; }

.inner-stage {
    position: relative !important;
    z-index: 3 !important;
    margin-left: 0 !important;
    min-height: 100dvh !important;
    padding: 188px 32px 120px !important;
    color: var(--ink) !important;
}

.archive-page {
    width: min(100%, 1200px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: clamp(70px, 9vw, 145px) !important;
}

.archive-list {
    width: min(100%, 1100px) !important;
    max-width: none !important;
    margin-top: 32px !important;
}

.archive-item {
    grid-template-columns: 64px minmax(250px, 1fr) minmax(190px, auto) !important;
    padding: 20px 0 !important;
    border-top-color: var(--line) !important;
}

.archive-item:last-child { border-bottom-color: var(--line) !important; }
.archive-list:hover .archive-item,
.archive-list:hover .archive-item:hover { border-top-color: var(--line) !important; }
.archive-list:hover .archive-item:hover { border-bottom-color: var(--line) !important; }

.archive-item span,
.archive-item em {
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0.085em !important;
    color: var(--quiet) !important;
    opacity: 1 !important;
}

.archive-item strong {
    font-family: var(--font-body) !important;
    font-size: clamp(22px, 1.65vw, 27px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.archive-preview {
    left: calc(50vw + 105px) !important;
    top: var(--preview-y) !important;
    width: 340px !important;
    aspect-ratio: 2035 / 1440 !important;
    z-index: 1 !important;
    opacity: 0.9 !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 3px !important;
}

.custom-cursor {
    mix-blend-mode: difference;
    color: #fff;
    border-color: #fff;
    background: transparent;
}

@media (max-width: 1199.98px) {
    .archive-top-nav {
        left: 25px !important;
        right: 25px !important;
        top: 25px !important;
        grid-template-columns: 1fr auto !important;
    }

    .archive-nav-links { display: none !important; }

    .inner-stage { padding: 120px 25px 90px !important; }

    .archive-page {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 809.98px) {
    .archive-top-nav {
        left: 20px !important;
        right: 20px !important;
        top: 20px !important;
    }

    .archive-brand span { font-size: 14px !important; }
    .archive-brand em,
    .sound-label { display: none !important; }
    .archive-nav-controls { gap: 10px !important; }
    .inner-stage { padding: 104px 20px 80px !important; }
    .archive-list { margin-top: 24px !important; }
    .archive-item { grid-template-columns: 38px 1fr !important; gap: 16px !important; padding: 18px 0 !important; }
    .archive-item em { grid-column: 2 !important; }
}

.archive-top-nav {
    left: 32px !important;
    right: 32px !important;
    top: 28px !important;
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 24px !important;
    align-items: center !important;
}

.archive-brand {
    gap: 7px !important;
    transform: none !important;
}

.archive-brand span {
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    line-height: 0.9 !important;
    font-weight: 700 !important;
    letter-spacing: 0.055em !important;
    transform: scaleY(1.08) !important;
    transform-origin: left center !important;
}

.archive-brand em {
    font-family: var(--font-body) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    color: var(--muted) !important;
}

.archive-nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    font-family: var(--font-body) !important;
}

.archive-nav-links a {
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.075em !important;
    text-transform: uppercase !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: geometricPrecision !important;
}

.archive-nav-links a:hover,
.archive-nav-links a[aria-current="page"] {
    opacity: 0.58 !important;
    filter: blur(0.8px) !important;
    transform: translateY(-1px) !important;
    letter-spacing: 0.12em !important;
}

.sound-toggle .sound-label {
    font-family: var(--font-body) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
}

.inner-stage {
    padding-top: 188px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.archive-page {
    width: auto !important;
    max-width: none !important;
    margin-left: clamp(300px, 24vw, 430px) !important;
    margin-right: clamp(70px, 8vw, 130px) !important;
}

.archive-list {
    width: 100% !important;
    max-width: 1040px !important;
    margin-top: 32px !important;
}

.archive-item {
    grid-template-columns: 48px minmax(310px, 1fr) minmax(190px, auto) !important;
    gap: 24px !important;
}

.archive-item strong {
    font-family: var(--font-body) !important;
    font-size: clamp(22px, 1.55vw, 26px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

.archive-preview {
    left: calc(50vw + 96px) !important;
    width: 340px !important;
}

@media (max-width: 1199.98px) {
    .archive-page {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

.page-shell,
.inner-stage {
  background: transparent !important;
}

.archive-grain {
  z-index: 70 !important;
  opacity: 0.105 !important;
  mix-blend-mode: overlay !important;
  background-image: url("../img/grain-texture-strong.png") !important;
  background-repeat: repeat !important;
  background-size: 180px !important;
}

body.is-dark .archive-grain {
  opacity: 0.105 !important;
  mix-blend-mode: overlay !important;
}

.archive-preview {
  left: calc(50vw + 170px) !important;
}

.custom-cursor {
  position: fixed !important;
  left: 0;
  top: 0;
  z-index: 9999 !important;
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  margin-left: -6px !important;
  margin-top: -6px !important;
  border: 1px solid #fff !important;
  border-radius: 999px !important;
  background: transparent !important;
  pointer-events: none !important;
  opacity: 0.75 !important;
  mix-blend-mode: difference !important;
  transition:
    width 280ms cubic-bezier(0.16, 1, 0.3, 1),
    height 280ms cubic-bezier(0.16, 1, 0.3, 1),
    margin 280ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease,
    background 180ms ease,
    border-color 180ms ease !important;
}

.custom-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor.is-link {
  width: 24px !important;
  height: 24px !important;
  margin-left: -12px !important;
  margin-top: -12px !important;
  opacity: 0.9 !important;
}

.custom-cursor.is-image {
  width: 74px !important;
  height: 74px !important;
  margin-left: -37px !important;
  margin-top: -37px !important;
  opacity: 1 !important;
}

.custom-cursor.is-image::before {
  content: "VIEW";
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 809.98px) {
  .custom-cursor { display: none !important; }
}

.about-recent-work {
  position: relative;
  z-index: 4;
  width: min(100%, 960px);
  margin: clamp(96px, 14vh, 160px) 0 clamp(90px, 14vh, 150px) auto;
}

.about-recent-label {
  display: block;
  margin-bottom: clamp(34px, 5vw, 58px);
  color: var(--quiet);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-recent-work .case-other-projects {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(52px, 6.5vw, 92px) 0 clamp(42px, 5.2vw, 76px) !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: clamp(28px, 3.6vw, 56px) !important;
  overflow: visible !important;
}

.about-recent-work .case-other-card,
.about-recent-work .case-other-card:hover,
.about-recent-work .case-other-card:focus-visible {
  position: relative !important;
  display: block !important;
  flex: 0 1 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  text-decoration: none !important;
  opacity: 0.86 !important;
  filter: none !important;
  transform: none !important;
  transition:
    opacity 720ms ease,
    filter 720ms ease !important;
}

.about-recent-work .case-other-card:hover,
.about-recent-work .case-other-card:focus-visible {
  opacity: 1 !important;
}

.about-recent-work .case-other-card::before,
.about-recent-work .case-other-card::after {
  content: none !important;
  display: none !important;
}

.about-recent-work .case-other-card__pin {
  --pin-rotate: 0deg;
  --pin-y: 0px;

  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  margin: 0 0 13px !important;
  overflow: visible !important;
  transform: translate3d(0, var(--pin-y), 0) rotate(var(--pin-rotate)) scale(1) !important;
  transform-origin: center center !important;
  transition:
    transform 2200ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1600ms ease !important;
  will-change: transform;
  backface-visibility: hidden;
}

.about-recent-work .case-other-card__pin::before,
.about-recent-work .case-other-card__pin::after {
  content: "" !important;
  position: absolute !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
  mix-blend-mode: multiply !important;
  opacity: 0.88 !important;
  filter: contrast(1.18) saturate(1) brightness(0.96) drop-shadow(0 8px 10px rgba(0,0,0,0.055)) !important;
}

body.is-dark .about-recent-work .case-other-card__pin::before,
body.is-dark .about-recent-work .case-other-card__pin::after {
  mix-blend-mode: screen !important;
  opacity: 0.54 !important;
  filter: contrast(0.96) saturate(0.82) brightness(1.12) !important;
}

.about-recent-work .case-other-card__pin img {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 2px !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: color-mix(in srgb, var(--ink) 4%, transparent) !important;
  box-shadow: 0 22px 74px rgba(0,0,0,0.075) !important;
  filter: grayscale(0.06) contrast(1.03) brightness(0.96) saturate(0.95) !important;
  transform: none !important;
  transition:
    filter 1800ms ease,
    box-shadow 1900ms ease,
    transform 2200ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  backface-visibility: hidden;
}

.about-recent-work .case-other-card__meta {
  display: block !important;
  color: var(--quiet) !important;
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.about-recent-work .case-other-card strong {
  display: block !important;
  margin-top: 8px !important;
  color: color-mix(in srgb, var(--ink) 76%, transparent) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

.about-recent-work .case-other-card--jude {
  width: clamp(230px, 22vw, 330px) !important;
  margin-top: -10px !important;
}

.about-recent-work .case-other-card--jude .case-other-card__pin {
  --pin-rotate: -1.6deg;
  --pin-y: -4px;
}

.about-recent-work .case-other-card--jude img {
  aspect-ratio: 16 / 9.2 !important;
}

.about-recent-work .case-other-card--jude .case-other-card__pin::before {
  left: 50% !important;
  top: -33px !important;
  width: 170px !important;
  height: 63px !important;
  transform: translateX(-50%) rotate(-2.4deg) !important;
  background-image: var(--tape-b) !important;
}

.about-recent-work .case-other-card--jude .case-other-card__pin::after {
  display: none !important;
}

.about-recent-work .case-other-card--y4y {
  width: clamp(168px, 14.5vw, 222px) !important;
  margin-top: 28px !important;
}

.about-recent-work .case-other-card--y4y .case-other-card__pin {
  --pin-rotate: 1.4deg;
  --pin-y: 2px;
}

.about-recent-work .case-other-card--y4y img {
  aspect-ratio: 16 / 10 !important;
}

.about-recent-work .case-other-card--y4y .case-other-card__pin::before {
  left: 50% !important;
  top: -30px !important;
  width: 132px !important;
  height: 50px !important;
  transform: translateX(-50%) rotate(3.6deg) !important;
  background-image: var(--tape-d) !important;
}

.about-recent-work .case-other-card--y4y .case-other-card__pin::after {
  display: none !important;
}

.about-recent-work .case-other-card--festool {
  width: clamp(172px, 15.5vw, 244px) !important;
  margin-top: 2px !important;
}

.about-recent-work .case-other-card--festool .case-other-card__pin {
  --pin-rotate: -0.9deg;
  --pin-y: 0px;
}

.about-recent-work .case-other-card--festool img {
  aspect-ratio: 16 / 10 !important;
}

.about-recent-work .case-other-card--festool .case-other-card__pin::before {
  left: 34px !important;
  top: -27px !important;
  width: 130px !important;
  height: 49px !important;
  transform: rotate(-7deg) !important;
  background-image: var(--tape-a) !important;
}

.about-recent-work .case-other-card--festool .case-other-card__pin::after {
  display: none !important;
}

.about-recent-work .case-other-card--jude:hover .case-other-card__pin,
.about-recent-work .case-other-card--jude:focus-visible .case-other-card__pin {
  transform: translate3d(0, -10px, 0) rotate(-0.35deg) scale(1.012) !important;
}

.about-recent-work .case-other-card--y4y:hover .case-other-card__pin,
.about-recent-work .case-other-card--y4y:focus-visible .case-other-card__pin {
  transform: translate3d(0, -7px, 0) rotate(0.32deg) scale(1.012) !important;
}

.about-recent-work .case-other-card--festool:hover .case-other-card__pin,
.about-recent-work .case-other-card--festool:focus-visible .case-other-card__pin {
  transform: translate3d(0, -8px, 0) rotate(-0.22deg) scale(1.012) !important;
}

.about-recent-work .case-other-card:hover .case-other-card__pin img,
.about-recent-work .case-other-card:focus-visible .case-other-card__pin img {
  filter: grayscale(0) contrast(1.045) brightness(0.985) saturate(0.985) !important;
  box-shadow: 0 30px 94px rgba(0,0,0,0.115) !important;
  transform: translate3d(0, 0, 0) scale(1.002) !important;
}

.about-footer {
  position: fixed !important;
  z-index: 140 !important;
  left: 32px !important;
  right: 32px !important;
  bottom: 24px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  pointer-events: none !important;
}

.about-footer span,
.about-footer a {
  position: relative !important;
  z-index: 141 !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  pointer-events: auto !important;
}

.about-footer span {
  min-width: 36px !important;
  display: inline-block !important;
  font-variant-numeric: tabular-nums !important;
}

.about-footer a {
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 280ms var(--ease-out),
    letter-spacing 280ms ease !important;
}

.about-footer a:hover {
  opacity: 0.6 !important;
  filter: blur(0.5px) !important;
  transform: translateY(-1px) !important;
  letter-spacing: 0.09em !important;
}

@media (max-width: 980px) {
  .about-recent-work {
    width: 100% !important;
    margin: 76px 0 104px !important;
  }

  .about-recent-work .case-other-projects {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    justify-items: start !important;
  }

  .about-recent-work .case-other-card,
  .about-recent-work .case-other-card--jude,
  .about-recent-work .case-other-card--y4y,
  .about-recent-work .case-other-card--festool {
    width: min(100%, 360px) !important;
    margin: 0 !important;
  }

  .about-recent-work .case-other-card--y4y {
    justify-self: end !important;
    width: min(88%, 320px) !important;
  }

  .about-recent-work .case-other-card--festool {
    width: min(82%, 300px) !important;
  }

  .about-footer {
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
  }
}
