:root {
    --black: #0d0d0c;
    --white: #f6f5f1;
    --pure: #ffffff;
    --grey: #e9e8e3;
    --signal: #e34b2d;
    --line: rgba(13, 13, 12, 0.2);
    --line-light: rgba(246, 245, 241, 0.24);
    --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--black);
    background: var(--white);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body.menu-open,
body:has(.lightbox[open]) {
    overflow: hidden;
}

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

button {
    color: inherit;
    font: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: -80px;
    left: 16px;
    padding: 12px 16px;
    color: var(--white);
    background: var(--black);
    font-size: 11px;
    transition: top 160ms ease;
}

.skip-link:focus {
    top: 16px;
}

.kicker {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-header {
    position: absolute;
    z-index: 40;
    inset: 0 0 auto;
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px clamp(20px, 3.4vw, 64px);
    color: var(--black);
}

.brand {
    width: max-content;
    display: grid;
    gap: 5px;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.brand-name span {
    color: var(--signal);
}

.brand-sub {
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-menu a {
    position: relative;
    padding: 10px 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-menu a:hover::after,
.main-menu a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-button {
    display: none;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 0 20px;
    border: 1px solid currentColor;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
}

.button-dark {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
    color: var(--black);
    background: transparent;
}

.button-light {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
    color: var(--white);
    background: transparent;
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: currentColor;
}

/* Home hero */
.album-hero {
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
    grid-template-rows: auto 1fr auto;
    gap: 30px clamp(40px, 7vw, 130px);
    padding: 132px clamp(20px, 3.4vw, 64px) 30px;
    color: var(--black);
    background:
        linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(13, 13, 12, 0.08) calc(100% - 1px)),
        var(--white);
}

.album-hero > .kicker {
    grid-column: 1 / -1;
}

.album-hero h1 {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 0.03em;
    margin: 0;
    font-size: clamp(74px, 9.2vw, 158px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.album-hero h1 span {
    display: block;
    white-space: nowrap;
}

.album-hero h1 span:last-child {
    color: var(--signal);
}

.album-hero-copy {
    align-self: end;
    padding-bottom: 12px;
}

.album-hero-copy > p {
    margin: 0 0 32px;
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: -0.02em;
}

.album-hero-foot {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Catalogue index */
.album-index {
    padding: clamp(80px, 9vw, 150px) clamp(20px, 3.4vw, 64px);
    background: var(--pure);
}

.album-index-heading {
    display: grid;
    grid-template-columns: 0.35fr 1fr 0.5fr;
    gap: clamp(36px, 6vw, 110px);
    align-items: end;
    margin-bottom: 62px;
}

.album-index-heading h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(52px, 6.2vw, 102px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.album-index-heading > p:last-child {
    max-width: 360px;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.015em;
}

.album-cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(48px, 6vw, 94px) clamp(16px, 2.2vw, 36px);
}

.album-card {
    grid-column: span 6;
    min-width: 0;
    display: grid;
    gap: 16px;
}

.album-card-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    display: block;
    overflow: hidden;
    background: var(--album-tone, var(--grey));
}

.album-card-visual > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.88);
    transition: transform 500ms cubic-bezier(.2, .7, .2, 1), filter 300ms ease;
}

.album-card:hover .album-card-visual > img,
.album-card:focus-visible .album-card-visual > img {
    transform: scale(1.018);
    filter: saturate(1);
}

.album-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: clamp(18px, 2.2vw, 36px);
}

.album-placeholder::before {
    content: "IMAGE ARCHIVE";
    position: absolute;
    top: clamp(18px, 2.2vw, 36px);
    right: clamp(18px, 2.2vw, 36px);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.album-placeholder strong {
    font-size: clamp(74px, 8vw, 132px);
    font-weight: 700;
    line-height: 0.72;
    letter-spacing: -0.08em;
}

.album-placeholder i {
    position: absolute;
    top: 50%;
    right: clamp(18px, 2.2vw, 36px);
    width: 22%;
    height: 1px;
    background: rgba(13, 13, 12, 0.35);
}

.album-card-number {
    position: absolute;
    top: clamp(16px, 1.8vw, 28px);
    left: clamp(16px, 1.8vw, 28px);
    z-index: 2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.album-card-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
    padding-top: 12px;
    border-top: 1px solid var(--black);
}

.album-card-copy > span:first-child {
    display: grid;
    gap: 5px;
}

.album-card-copy small,
.album-card-action {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.album-card-copy strong {
    font-size: clamp(25px, 2.4vw, 39px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.album-card-action {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.album-card-action i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--black);
    border-radius: 50%;
    font-size: 14px;
    font-style: normal;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.album-card:hover .album-card-action i,
.album-card:focus-visible .album-card-action i {
    color: var(--white);
    background: var(--black);
    transform: rotate(45deg);
}

.catalogue-note {
    padding: clamp(90px, 11vw, 180px) clamp(20px, 3.4vw, 64px);
    color: var(--white);
    background: var(--black);
}

.catalogue-note > .kicker {
    margin-bottom: clamp(70px, 10vw, 150px);
    color: rgba(246, 245, 241, 0.55);
}

.catalogue-note > div {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.38fr);
    gap: clamp(60px, 11vw, 180px);
    align-items: end;
}

.catalogue-note h2 {
    margin: 0;
    font-size: clamp(62px, 8.2vw, 138px);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.catalogue-note div > p {
    max-width: 480px;
    margin: 0;
    color: rgba(246, 245, 241, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

/* Contact and footer */
.contact {
    padding: clamp(90px, 11vw, 180px) clamp(20px, 7vw, 130px) 40px;
    color: var(--white);
    background: var(--signal);
}

.contact h2 {
    max-width: 1200px;
    margin: 0;
    font-size: clamp(62px, 8.7vw, 146px);
    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.contact > p:not(.kicker) {
    max-width: 540px;
    margin: 50px 0 0 auto;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    margin-top: 34px;
}

.contact-email {
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
}

.contact-note {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: clamp(90px, 12vw, 190px);
    padding-top: 18px;
    border-top: 1px solid rgba(246, 245, 241, 0.45);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer {
    display: grid;
    grid-template-columns: 0.6fr 1fr auto;
    gap: clamp(30px, 6vw, 100px);
    align-items: end;
    padding: 52px clamp(20px, 3.4vw, 64px);
    color: var(--white);
    background: var(--black);
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: rgba(246, 245, 241, 0.52);
    font-size: 10px;
    line-height: 1.6;
}

.site-footer > div {
    display: grid;
    gap: 10px;
    justify-items: end;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mobile-cta {
    display: none;
}

/* Individual collection */
.collection-hero {
    min-height: 640px;
    display: flex;
    flex-direction: column;
    padding: 126px clamp(20px, 3.4vw, 64px) 34px;
    background: var(--album-tone, var(--grey));
}

.collection-breadcrumb {
    display: flex;
    gap: 9px;
    margin-bottom: auto;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.collection-breadcrumb a {
    border-bottom: 1px solid currentColor;
}

.collection-hero > .kicker {
    margin: 64px 0 16px;
}

.collection-hero h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(78px, 11vw, 180px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.collection-hero-bottom {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(250px, 0.55fr) auto;
    gap: clamp(34px, 6vw, 100px);
    align-items: end;
    margin-top: 58px;
    padding-top: 20px;
    border-top: 1px solid rgba(13, 13, 12, 0.38);
}

.collection-hero-bottom > p {
    max-width: 580px;
    margin: 0;
    font-size: clamp(17px, 1.6vw, 23px);
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.collection-hero-bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.collection-hero-bottom li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(13, 13, 12, 0.24);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-count {
    display: flex;
    align-items: end;
    gap: 10px;
}

.collection-count strong {
    font-size: 58px;
    font-weight: 500;
    line-height: 0.75;
    letter-spacing: -0.07em;
}

.collection-count span {
    font-size: 7px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.collection-switcher {
    position: sticky;
    z-index: 28;
    top: 0;
    min-height: 56px;
    display: flex;
    align-items: stretch;
    gap: 28px;
    padding: 0 clamp(20px, 3.4vw, 64px);
    overflow-x: auto;
    background: rgba(246, 245, 241, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
}

.collection-switcher::-webkit-scrollbar {
    display: none;
}

.collection-switcher > span,
.collection-switcher a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.collection-switcher > span {
    margin-right: auto;
    color: rgba(13, 13, 12, 0.4);
}

.collection-switcher a {
    position: relative;
}

.collection-switcher a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--signal);
    transform: scaleX(0);
}

.collection-switcher a[aria-current="page"]::after,
.collection-switcher a:hover::after {
    transform: scaleX(1);
}

.gallery-section {
    padding: clamp(76px, 8vw, 130px) clamp(12px, 3.4vw, 64px);
    background: var(--pure);
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.gallery-heading .kicker {
    margin-bottom: 16px;
}

.gallery-heading h2 {
    margin: 0;
    font-size: clamp(48px, 5.8vw, 94px);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.gallery-heading > p {
    margin: 0;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.catalogue-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2vw, 30px);
}

.gallery-item {
    grid-column: span 4;
    display: grid;
    gap: 12px;
    padding: 0;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: zoom-in;
}

.gallery-item:nth-child(7n + 1),
.gallery-item:nth-child(7n + 5) {
    grid-column: span 6;
}

.gallery-item:nth-child(7n + 2),
.gallery-item:nth-child(7n + 3),
.gallery-item:nth-child(7n + 4),
.gallery-item:nth-child(7n + 6),
.gallery-item:nth-child(7n + 7) {
    grid-column: span 3;
}

.gallery-image {
    position: relative;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
    background: var(--grey);
}

.gallery-item:nth-child(7n + 1) .gallery-image,
.gallery-item:nth-child(7n + 5) .gallery-image {
    aspect-ratio: 4 / 3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(.2, .7, .2, 1);
}

.gallery-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 9px 11px;
    color: var(--white);
    background: var(--black);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-item:hover .gallery-image img,
.gallery-item:focus-visible .gallery-image img {
    transform: scale(1.018);
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-top: 10px;
    border-top: 1px solid var(--black);
}

.gallery-caption strong {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.gallery-caption small {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.gallery-empty {
    min-height: 420px;
    display: grid;
    grid-template-columns: 0.5fr 1fr auto;
    gap: clamp(36px, 7vw, 110px);
    align-items: end;
    padding: clamp(28px, 4vw, 58px);
    background: var(--album-tone, var(--grey));
}

.gallery-empty-mark {
    align-self: center;
    font-size: clamp(88px, 11vw, 180px);
    font-weight: 700;
    line-height: 0.75;
    letter-spacing: -0.08em;
}

.gallery-empty h3 {
    margin: 0 0 12px;
    font-size: clamp(26px, 2.8vw, 42px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.gallery-empty p {
    margin: 0;
    font-size: 11px;
}

.next-collection {
    min-height: 260px;
    display: grid;
    grid-template-columns: 0.45fr 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 44px clamp(20px, 3.4vw, 64px);
    background: var(--album-tone, var(--grey));
}

.next-collection > span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.next-collection strong {
    font-size: clamp(52px, 7vw, 112px);
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.next-collection i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid var(--black);
    border-radius: 50%;
    font-size: 20px;
    font-style: normal;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.next-collection:hover i,
.next-collection:focus-visible i {
    color: var(--white);
    background: var(--black);
    transform: rotate(45deg);
}

.compact-contact {
    padding-top: clamp(76px, 8vw, 130px);
}

.compact-contact h2 {
    font-size: clamp(58px, 7.4vw, 120px);
}

/* Image viewer */
.lightbox {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    margin: 0;
    padding: 32px clamp(16px, 3vw, 52px);
    color: var(--white);
    background: rgba(13, 13, 12, 0.97);
    border: 0;
}

.lightbox[open] {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    place-items: center;
}

.lightbox::backdrop {
    background: rgba(13, 13, 12, 0.86);
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 20px;
    padding: 10px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lightbox figure {
    height: calc(100vh - 64px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    margin: 0;
}

.lightbox figure img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
}

.lightbox figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.lightbox figcaption span {
    color: rgba(246, 245, 241, 0.56);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lightbox figcaption strong {
    font-size: 13px;
    font-weight: 500;
}

.lightbox-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(246, 245, 241, 0.35);
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
    color: var(--black);
    background: var(--white);
}

@media (max-width: 960px) {
    .album-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        min-height: 700px;
    }

    .album-hero > .kicker,
    .album-hero-foot {
        grid-column: 1;
    }

    .album-hero-copy {
        max-width: 520px;
    }

    .album-index-heading {
        grid-template-columns: 0.38fr 1fr;
    }

    .album-index-heading > p:last-child {
        grid-column: 2;
    }

    .catalogue-note > div {
        grid-template-columns: 1fr;
    }

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

    .collection-count {
        grid-column: 2;
        justify-self: end;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: span 6;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 66px;
    }

    html {
        scroll-padding-top: 58px;
    }

    body {
        padding-bottom: 62px;
    }

    .site-header {
        min-height: var(--header-height);
        padding: 12px 16px;
    }

    .site-header .brand,
    .site-header .menu-button {
        position: relative;
        z-index: 2;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-sub {
        font-size: 7px;
    }

    .menu-button {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 10px 0;
        background: transparent;
        border: 0;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .menu-button i,
    .menu-button i::after {
        width: 18px;
        height: 1px;
        display: block;
        background: currentColor;
        transition: transform 160ms ease;
    }

    .menu-button i::after {
        content: "";
        transform: translateY(5px);
    }

    .menu-button[aria-expanded="true"] i {
        transform: rotate(45deg);
    }

    .menu-button[aria-expanded="true"] i::after {
        transform: rotate(-90deg);
    }

    .main-menu {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 12px;
        padding: 90px 18px 100px;
        color: var(--white);
        background: var(--black);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
    }

    .main-menu.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-menu a {
        padding: 6px 0;
        font-size: clamp(39px, 12vw, 54px);
        font-weight: 500;
        line-height: 1.05;
        letter-spacing: -0.055em;
        text-transform: none;
    }

    body.menu-open .site-header .brand,
    body.menu-open .site-header .menu-button {
        color: var(--white);
    }

    .album-hero {
        min-height: 630px;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 106px 16px 20px;
    }

    .album-hero > .kicker {
        max-width: 260px;
        margin-bottom: 58px;
        font-size: 8px;
    }

    .album-hero h1 {
        display: flex;
        gap: 0.08em;
        font-size: clamp(54px, 15.9vw, 68px);
        line-height: 0.88;
        letter-spacing: -0.075em;
    }

    .album-hero h1 span {
        white-space: normal;
    }

    .album-hero-copy {
        max-width: 340px;
        margin-top: 45px;
        padding: 0;
    }

    .album-hero-copy > p {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.45;
    }

    .album-hero .button {
        width: 100%;
        min-height: 48px;
    }

    .album-hero-foot {
        margin-top: auto;
        padding-top: 14px;
    }

    .album-hero-foot span:nth-child(2) {
        display: none;
    }

    .album-index {
        padding: 62px 12px 86px;
    }

    .album-index-heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 38px;
        padding: 0 4px;
    }

    .album-index-heading .kicker {
        margin-bottom: 17px;
        font-size: 8px;
    }

    .album-index-heading h2 {
        font-size: 49px;
        line-height: 0.88;
    }

    .album-index-heading > p:last-child {
        grid-column: 1;
        max-width: 290px;
        font-size: 14px;
    }

    .album-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .album-card {
        grid-column: 1;
        gap: 12px;
    }

    .album-card-visual {
        aspect-ratio: 4 / 3;
    }

    .album-placeholder {
        padding: 18px;
    }

    .album-placeholder::before {
        top: 17px;
        right: 17px;
        font-size: 6px;
    }

    .album-placeholder strong {
        font-size: 76px;
    }

    .album-placeholder i {
        right: 18px;
    }

    .album-card-number {
        top: 17px;
        left: 17px;
        font-size: 8px;
    }

    .album-card-copy {
        min-height: 58px;
        padding-top: 10px;
    }

    .album-card-copy small {
        font-size: 7px;
    }

    .album-card-copy strong {
        font-size: 28px;
    }

    .album-card-action {
        font-size: 0;
    }

    .album-card-action i {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .catalogue-note {
        padding: 74px 16px;
    }

    .catalogue-note > .kicker {
        margin-bottom: 72px;
        font-size: 8px;
    }

    .catalogue-note > div {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .catalogue-note h2 {
        font-size: 56px;
        line-height: 0.86;
    }

    .catalogue-note div > p {
        font-size: 14px;
    }

    .contact {
        padding: 74px 16px 30px;
    }

    .contact .kicker {
        font-size: 8px;
    }

    .contact h2 {
        font-size: 54px;
        line-height: 0.86;
    }

    .contact > p:not(.kicker) {
        margin-top: 34px;
        font-size: 16px;
    }

    .contact-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
    }

    .contact-actions .button {
        width: 100%;
    }

    .contact-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 62px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 42px 16px;
    }

    .site-footer > div {
        justify-items: start;
    }

    .mobile-cta {
        position: fixed;
        z-index: 60;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 0 16px;
        color: var(--white);
        background: var(--black);
        border-top: 1px solid var(--line-light);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .mobile-cta i {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        color: var(--black);
        background: var(--white);
        border-radius: 50%;
        font-size: 13px;
        font-style: normal;
    }

    .collection-hero {
        min-height: auto;
        padding: 102px 16px 32px;
    }

    .collection-breadcrumb {
        margin-bottom: 54px;
        font-size: 7px;
    }

    .collection-hero > .kicker {
        margin: 0 0 13px;
        font-size: 8px;
    }

    .collection-hero h1 {
        font-size: clamp(52px, 16vw, 72px);
        line-height: 0.88;
        overflow-wrap: anywhere;
    }

    .collection-hero-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 38px;
        padding-top: 16px;
    }

    .collection-hero-bottom > p {
        font-size: 16px;
    }

    .collection-count {
        display: none;
    }

    .collection-switcher {
        min-height: 52px;
        gap: 22px;
        padding: 0 16px;
    }

    .collection-switcher > span {
        display: none;
    }

    .gallery-section {
        padding: 58px 8px 78px;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .gallery-heading .kicker {
        margin-bottom: 12px;
        font-size: 8px;
    }

    .gallery-heading h2 {
        font-size: 43px;
    }

    .catalogue-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 18px 8px;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(5n + 1) {
        grid-column: 1 / -1;
    }

    .gallery-item:nth-child(n) .gallery-image {
        aspect-ratio: 4 / 5;
    }

    .gallery-item:nth-child(5n + 1) .gallery-image {
        aspect-ratio: 4 / 3;
    }

    .gallery-caption {
        padding-top: 7px;
    }

    .gallery-caption strong {
        font-size: 12px;
    }

    .gallery-caption small {
        font-size: 6px;
    }

    .gallery-empty {
        min-height: 410px;
        grid-template-columns: 1fr;
        align-content: space-between;
        align-items: start;
        padding: 26px 20px;
    }

    .gallery-empty-mark {
        align-self: start;
        font-size: 92px;
    }

    .gallery-empty h3 {
        font-size: 27px;
    }

    .next-collection {
        min-height: 220px;
        grid-template-columns: 1fr auto;
        padding: 34px 16px;
    }

    .next-collection > span {
        grid-column: 1 / -1;
    }

    .next-collection strong {
        font-size: 45px;
    }

    .next-collection i {
        width: 50px;
        height: 50px;
    }

    .compact-contact {
        padding-top: 68px;
    }

    .compact-contact h2 {
        font-size: 52px;
    }

    .lightbox[open] {
        grid-template-columns: 1fr 1fr;
        align-content: center;
        gap: 12px;
        padding: 50px 14px 18px;
    }

    .lightbox figure {
        grid-column: 1 / -1;
        grid-row: 1;
        height: calc(100vh - 128px);
    }

    .lightbox-prev,
    .lightbox-next {
        grid-row: 2;
    }

    .lightbox-prev {
        justify-self: end;
    }

    .lightbox-next {
        justify-self: start;
    }
}

@media (max-width: 360px) {
    .album-hero h1 {
        font-size: 52px;
    }

    .album-index-heading h2 {
        font-size: 44px;
    }

    .catalogue-note h2,
    .contact h2 {
        font-size: 49px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
