/* Figma tokens — file IQTXoSvIH6yAjoppLTlvnV, frame 585:6566 */
:root {
    --night: #383838;
    --text-dimmed: #bfbfbf;
    --background: #ffffff;
    --text-primary: #000000;
    --badge-border: #a6a6a6;
    --page-padding: 40px;
    --menu-padding: 20px;
    --section-gap: 48px;
    --title-size: 128px;
    --story-size: clamp(32px, 5.5vw, 88px);
    --story-block-gap: 120px;
    --footer-text-size: clamp(48px, 8vw, var(--detail-title-size));
    --footer-padding: 48px;
    --footer-top-gap: 40px;
    --reveal-duration: 1.35s;
    --reveal-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --hero-develop-duration: 6.5s;
    --hero-develop-delay: 0.7s;
    --hero-develop-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --nav-fade-delay: calc(var(--hero-develop-delay) + var(--hero-develop-duration) * 0.55);
    --story-develop-duration: calc(var(--hero-develop-duration) / 2);
    --story-develop-delay: calc(var(--hero-develop-delay) / 2);
    --polaroid-text: #f4f4f3;
    --text-develop-duration: var(--hero-develop-duration);
    --footer-develop-duration: calc(var(--text-develop-duration) * 1.5);
    --footer-develop-delay: calc(var(--hero-develop-delay) * 2);
    --footer-reveal-duration: calc(var(--reveal-duration) * 1.5);
    --link-hover-duration: 1.5s;
    --link-hover-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --detail-nav-enter-duration: 260ms;
    --detail-nav-exit-duration: 180ms;
    --detail-nav-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --placeholder: #f3f3f5;
    --text-muted: #808080;
    --catalog-padding: 32px;
    --screen-bottom-padding: 48px;
    --detail-title-size: 128px;
    --detail-copy-size: clamp(16px, 2vw, 20px);
    --site-header-height: 51px;
    --footer-closing-height: 80px;
    --inter-ui-size: 12px;
    --external-link-size: 16px;
}

@font-face {
    font-family: "Instrument Serif";
    src: local("Instrument Serif");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    background-color: var(--background);
    color: var(--text-primary);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

video {
    display: block;
    max-width: 100%;
}

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

.page {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Figma Desktop frame — nav + hero + title = one viewport */
.top-screen {
    width: 100%;
    height: var(--top-screen-height, 100svh);
    max-height: var(--top-screen-height, 100svh);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    overflow: hidden;
}

/* Section: menu — 579:6534 */
.menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--menu-padding);
    padding-bottom: var(--menu-padding);
    flex-shrink: 0;
}

.top-screen:has(.hero-media.is-developing) .menu,
.top-screen:has(.hero-media.is-developing) .title-row .app-store-badge {
    opacity: 0;
    animation: nav-fade-in var(--reveal-duration) var(--reveal-ease) var(--nav-fade-delay) both;
}

html.nav-intro-seen .top-screen:has(.hero-media.is-developing) .menu,
html.nav-intro-seen .top-screen:has(.hero-media.is-developing) .title-row .app-store-badge {
    opacity: 1;
    animation: none;
}

@keyframes nav-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.nav-link {
    font-weight: 500;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.nav-link--active {
    color: var(--night);
}

.nav-link--active:hover,
.nav-link--active:focus-visible {
    color: var(--text-dimmed);
}

.nav-link--spent {
    grid-column: 1;
    justify-self: start;
}

.nav-link--spent.nav-link--dimmed {
    grid-column: 1;
    justify-self: start;
}

.nav-spacer {
    grid-column: 2;
}

.nav-link--dimmed {
    color: var(--text-dimmed);
    grid-column: 3;
    justify-self: center;
}

.nav-link--dimmed:hover,
.nav-link--dimmed:focus-visible {
    color: var(--night);
}

.nav-link--about {
    grid-column: 3;
    justify-self: center;
}

.nav-link--dimmed[aria-disabled="true"] {
    cursor: default;
}

.nav-link--dimmed[aria-disabled="true"]:hover,
.nav-link--dimmed[aria-disabled="true"]:focus-visible {
    color: var(--text-dimmed);
}

.nav-link--download {
    grid-column: 4;
    justify-self: end;
}

/* Figma content column — 579:6540 */
.home-frame {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* Section: hero — 579:6541 */
.hero {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    opacity: 0.08;
    filter: brightness(0.18) saturate(0.2) sepia(0.12);
}

.hero-develop,
.story-develop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(244, 244, 243, 0.96) 0%,
        rgba(244, 244, 243, 0.94) 100%
    );
}

.hero-media.is-developing .hero-image {
    will-change: opacity, filter;
    animation: hero-photo-develop var(--hero-develop-duration) var(--hero-develop-ease) var(--hero-develop-delay) forwards;
}

.hero-media.is-developing .hero-develop {
    animation: hero-wash-clear var(--hero-develop-duration) var(--hero-develop-ease) var(--hero-develop-delay) forwards;
}

.hero-media.is-developed .hero-image {
    opacity: 1;
    filter: none;
}

.hero-media.is-developed .hero-develop {
    opacity: 0;
}

.hero-media--video .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    opacity: 0.08;
    filter: brightness(0.18) saturate(0.2) sepia(0.12);
}

.hero-media--video.is-developing .hero-video {
    will-change: opacity, filter;
    animation: hero-photo-develop var(--hero-develop-duration) var(--hero-develop-ease) var(--hero-develop-delay) forwards;
}

.hero-media--video.is-developing .hero-develop {
    animation: hero-wash-clear var(--hero-develop-duration) var(--hero-develop-ease) var(--hero-develop-delay) forwards;
}

.hero-media--video.is-developed .hero-video {
    opacity: 1;
    filter: none;
}

.hero-media--video.is-developed .hero-develop {
    opacity: 0;
}

.hero-video--mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video--desktop {
        display: none;
    }

    .hero-video--mobile {
        display: block;
    }
}

@keyframes hero-photo-develop {
    from {
        opacity: 0.08;
        filter: brightness(0.18) saturate(0.2) sepia(0.12);
    }

    to {
        opacity: 1;
        filter: brightness(1) saturate(1) sepia(0);
    }
}

@keyframes hero-wash-clear {
    to {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .hero-media--video .hero-video {
        opacity: 1;
        filter: none;
    }

    .hero-develop,
    .story-develop {
        display: none;
    }

    .hero-media.is-developing .hero-image,
    .hero-media.is-developing .hero-develop,
    .hero-media--video.is-developing .hero-video,
    .hero-media--video.is-developing .hero-develop,
    .story-media.is-visible .story-image,
    .story-media.is-visible .story-develop {
        animation: none;
    }

    .story-media .story-image {
        opacity: 1;
        filter: none;
    }

    .menu,
    .title-row .app-store-badge,
    .page--about-timeless .site-header--about,
    .page--about-timeless .title-row--about {
        opacity: 1;
        animation: none;
    }

    .story-copy a:hover,
    .story-copy a:focus-visible {
        text-decoration: underline;
        text-underline-offset: 0.12em;
    }

    .story-copy a:hover::after,
    .story-copy a:focus-visible::after {
        transform: scaleX(0);
    }

    .story-line--split.is-visible .story-line__segment {
        animation: none;
        color: var(--text-primary);
    }
}

/* Section: title row — 579:6542 + 579:6544 */
.title-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-shrink: 0;
    padding-top: var(--section-gap);
    padding-bottom: var(--page-padding);
    min-height: calc(var(--title-size) + var(--section-gap) + var(--page-padding));
}

.title {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: var(--title-size);
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
    word-break: break-word;
}

@media (min-width: 769px) {
    .title {
        /* Serif cap height sits low in the em box at large sizes */
        transform: translateY(-0.06em);
    }
}

/* App Store badge — Component 2, 579:6544 */
.app-store-badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    width: 120px;
    height: 40px;
    padding: 0;
    background: #000000;
    border: 1px solid var(--badge-border);
    border-radius: 6px;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.app-store-badge:hover {
    opacity: 0.88;
}

.app-store-badge__icon {
    position: relative;
    width: 20px;
    height: 24px;
    margin-left: 7px;
    flex-shrink: 0;
    overflow: hidden;
}

.app-store-badge__icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.app-store-badge__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 8px;
    color: #ffffff;
}

.app-store-badge__line {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 9px;
}

.app-store-badge__store {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.47px;
}

@media (max-width: 1200px) {
    :root {
        --title-size: clamp(64px, 8vw, 128px);
        --section-gap: clamp(24px, 3vw, 48px);
    }
}

@media (max-width: 768px) {
    :root {
        --page-padding: 20px;
        --title-size: clamp(48px, 12vw, 96px);
        --section-gap: 24px;
    }

    .menu {
        align-items: center;
        height: auto;
        padding-top: var(--menu-padding);
        padding-bottom: var(--menu-padding);
    }

    .title-row {
        align-items: center;
        gap: 16px;
        min-height: auto;
        padding-top: var(--section-gap);
        padding-bottom: 20px;
    }

    .title {
        transform: translateY(-0.04em);
    }
}

html.compact-top {
    --title-size: clamp(40px, 11vw, 72px);
    --section-gap: 16px;
}

html.compact-top .menu {
    align-items: center;
    height: auto;
    padding-top: var(--menu-padding);
    padding-bottom: var(--menu-padding);
}

html.compact-top .title-row {
    padding-bottom: 16px;
}

/* Story page — frame 585:6584 */
.story {
    width: 100%;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
}

/* About page — frame 595:8399 */
.about {
    width: 100%;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    padding-bottom: var(--page-padding);
    display: flex;
    flex-direction: column;
    gap: var(--story-block-gap);
}

.about-copy {
    padding-top: var(--story-block-gap);
}

.about-copy .story-copy {
    gap: 0.75em;
}

.about-copy .story-line--lead {
    margin-bottom: 0.75em;
}

.about-copy .story-line--close {
    margin-top: 2.5em;
}

.story-intro {
    padding-top: var(--story-block-gap);
    padding-bottom: var(--story-block-gap);
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: var(--story-block-gap);
    padding-bottom: var(--story-block-gap);
}

.story-block--last {
    padding-bottom: calc(var(--story-block-gap) + var(--page-padding));
}

.story-image {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
}

.story-media {
    position: relative;
    width: 100%;
}

.story-media .story-image {
    opacity: 0.08;
    filter: brightness(0.18) saturate(0.2) sepia(0.12);
}

.story-media.is-visible .story-image {
    will-change: opacity, filter;
    animation: hero-photo-develop var(--story-develop-duration) var(--hero-develop-ease) var(--story-develop-delay) forwards;
}

.story-media.is-visible .story-develop {
    animation: hero-wash-clear var(--story-develop-duration) var(--hero-develop-ease) var(--story-develop-delay) forwards;
}

.story-media.is-developed .story-image {
    opacity: 1;
    filter: none;
}

.story-media.is-developed .story-develop {
    opacity: 0;
}

.story-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
}

.story-line {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: var(--story-size);
    font-weight: 400;
    line-height: 1.15;
    color: var(--polaroid-text);
}

.story-line--lead {
    margin-bottom: 0.35em;
}

.story-line--close {
    margin-top: 0.65em;
}

.story-copy a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: none;
}

.story-copy a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.08em;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--link-hover-duration) var(--link-hover-ease);
}

.story-copy a:hover,
.story-copy a:focus-visible {
    color: var(--text-dimmed);
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.story-copy a:hover::after,
.story-copy a:focus-visible::after {
    transform: scaleX(1);
}

.story-line--split.is-visible {
    animation: none;
    will-change: auto;
}

.story-line--split.is-visible .story-line__segment {
    display: inline;
    color: var(--polaroid-text);
    will-change: color;
    animation: text-polaroid-develop var(--text-develop-duration) var(--hero-develop-ease) var(--reveal-delay, 0ms) forwards;
}

.story-line--split .story-line__segment {
    color: var(--polaroid-text);
}

/* Scroll reveal — polaroid develop on editorial text */
@keyframes text-polaroid-develop {
    from {
        color: var(--polaroid-text);
    }

    to {
        color: var(--text-primary);
    }
}

@keyframes text-polaroid-develop-muted {
    from {
        color: var(--polaroid-text);
    }

    to {
        color: var(--text-muted);
    }
}

@keyframes footer-credit-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.story-line.is-visible:not(.story-line--split) {
    will-change: color;
    animation: text-polaroid-develop var(--text-develop-duration) var(--hero-develop-ease) var(--reveal-delay, 0ms) forwards;
}

.site-footer__text.is-visible {
    will-change: opacity;
    animation: footer-credit-fade-in var(--footer-develop-duration) var(--hero-develop-ease) var(--footer-develop-delay) forwards;
}

.site-footer__closing .app-store-badge {
    opacity: 0;
    transition: opacity var(--footer-reveal-duration) var(--reveal-ease);
    transition-delay: 0ms;
}

.site-footer__closing .app-store-badge.is-visible {
    opacity: 1;
    transition-delay: var(--footer-develop-delay);
}

@media (prefers-reduced-motion: reduce) {
    .story-line,
    .story-line__segment,
    .site-footer__title,
    .site-footer__credit-title {
        color: var(--text-primary);
        animation: none;
    }

    .site-footer__credit-title {
        color: var(--text-dimmed);
    }

    .site-footer__text {
        opacity: 1;
        animation: none;
    }

    .site-footer__closing .app-store-badge {
        opacity: 1;
        transition: none;
    }
}

.site-footer {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 0;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    display: flex;
    flex-direction: column;
}

.site-footer__credit {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 0;
    margin-top: var(--footer-top-gap);
    padding-right: var(--footer-padding);
    padding-bottom: var(--footer-padding);
    padding-left: var(--footer-padding);
    background: #000000;
}

.site-footer__text {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: var(--footer-text-size);
    font-weight: 400;
    line-height: 1.05;
    color: var(--night);
    opacity: 0;
}

.site-footer__closing {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: calc(var(--title-size) + var(--section-gap) + var(--menu-padding) * 3);
    padding-top: calc(var(--section-gap) + 12px);
    padding-bottom: calc(var(--menu-padding) + env(safe-area-inset-bottom, 0px));
    background: var(--background);
}

.site-footer__title-row {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__title {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: var(--footer-text-size);
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
}

.site-footer__title-row .site-footer__title {
    flex: 0 0 auto;
    white-space: nowrap;
}

.site-footer__title-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.site-footer__title-link:hover,
.site-footer__title-link:focus-visible {
    color: var(--text-dimmed);
}

.site-footer__title-row .site-footer__legal-nav {
    margin-top: 0;
    width: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

.site-footer__title-row .site-footer__legal-link {
    justify-self: auto;
}

.site-footer__title-row .site-footer__legal-link--terms,
.site-footer__title-row .site-footer__legal-link--privacy {
    grid-column: auto;
    justify-self: auto;
}

@media (min-width: 769px) {
    .site-footer__title {
        transform: translateY(-0.06em);
    }
}

.site-footer__legal-nav {
    margin-top: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.site-footer__legal-link {
    color: var(--text-dimmed);
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.site-footer__legal-link--terms {
    grid-column: 3;
    justify-self: center;
}

.site-footer__legal-link--privacy {
    grid-column: 4;
    justify-self: end;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
    color: var(--night);
}

@media (max-width: 768px) {
    :root {
        --story-block-gap: 72px;
        --footer-top-gap: var(--menu-padding);
    }

    .story-intro {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .site-footer__title {
        transform: translateY(-0.04em);
    }

    .site-footer__credit {
        padding: var(--menu-padding);
        padding-bottom: calc(var(--menu-padding) + env(safe-area-inset-bottom, 0px));
    }

    .site-footer__closing {
        min-height: calc(var(--title-size) + var(--section-gap) + var(--menu-padding) * 2);
        padding-top: var(--section-gap);
        padding-bottom: calc(var(--menu-padding) + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    :root {
        --story-block-gap: 56px;
    }
}

/* Legal pages — privacy, terms */
.page--legal {
    align-items: stretch;
}

.legal-header {
    width: 100%;
}

.legal-header__intro,
.legal {
    width: min(680px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
}

.legal-header__intro {
    padding-top: var(--section-gap);
    padding-bottom: calc(var(--section-gap) + 8px);
}

.legal-title {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
}

.legal-meta {
    margin-top: 16px;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-dimmed);
}

.legal {
    padding-bottom: calc(var(--story-block-gap) + var(--page-padding));
}

.legal-section + .legal-section {
    margin-top: 40px;
}

.legal-heading {
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1.4;
    color: var(--night);
    margin-bottom: 12px;
}

.legal p {
    font-family: "Helvetica Neue", Helvetica, Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-primary);
}

.legal p + p {
    margin-top: 1em;
}

.legal a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.legal a:hover,
.legal a:focus-visible {
    color: var(--night);
}

.legal-list {
    margin-top: 1em;
    padding-left: 1.25em;
    font-family: "Helvetica Neue", Helvetica, Inter, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-primary);
}

.legal-list li + li {
    margin-top: 0.5em;
}

.site-footer--compact {
    min-height: auto;
}

.site-footer--compact .site-footer__closing {
    min-height: calc(var(--title-size) + var(--section-gap) + var(--menu-padding) * 2);
}

/* Timeless Objects — catalog footer */
.site-footer--catalog {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
}

.site-footer--catalog .site-footer__stage {
    display: flex;
    flex-direction: column;
    height: calc(var(--top-screen-height, 100svh) - var(--footer-closing-height));
    min-height: calc(var(--top-screen-height, 100svh) - var(--footer-closing-height));
    padding-top: 0;
    padding-right: var(--catalog-padding);
    padding-left: var(--catalog-padding);
    padding-bottom: 0;
    background: var(--background);
    box-sizing: border-box;
}

.site-footer--catalog .site-footer__nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: var(--site-header-height);
    min-height: var(--site-header-height);
    padding: 0;
    background: transparent;
}

.site-footer--catalog .site-footer__nav .filter-bar {
    width: 100%;
    align-self: stretch;
    height: 100%;
}

.site-footer--catalog .site-footer__nav .filter-bar__group {
    align-items: stretch;
}

.filter-bar--footer .filter-bar__group--end {
    margin-left: auto;
}

.site-footer__maker {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    min-height: var(--site-header-height);
    gap: 0.35em;
    color: var(--text-dimmed);
    text-decoration: none;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.site-footer__maker:hover,
.site-footer__maker:focus-visible {
    color: var(--night);
}

.site-footer__maker-icon {
    flex-shrink: 0;
}

.site-footer--catalog .site-footer__credit {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
}

.site-footer__credit-panel {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 0;
    width: 100%;
    padding: var(--catalog-padding);
    padding-bottom: calc(var(--screen-bottom-padding) + env(safe-area-inset-bottom, 0px));
    background: #000000;
    box-sizing: border-box;
}

.site-footer__credit-label {
    margin: 0;
    max-width: 100%;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1;
    color: var(--night);
    text-align: right;
    opacity: 0;
}

.site-footer__credit-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.site-footer__credit-link:hover,
.site-footer__credit-link:focus-visible {
    color: var(--background);
}

.site-footer__credit-icon {
    width: 0.70em;
    height: 0.70em;
    margin-left: 0.18em;
    flex-shrink: 0;
    color: inherit;
    opacity: 0;
    transition:
        color var(--link-hover-duration) var(--link-hover-ease),
        opacity var(--link-hover-duration) var(--link-hover-ease);
}

.page--about-timeless .site-footer__stage {
    height: calc(var(--top-screen-height, 100svh) - var(--footer-closing-height));
    min-height: calc(var(--top-screen-height, 100svh) - var(--footer-closing-height));
}

.site-footer__closing--catalog {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
    padding: var(--catalog-padding);
    padding-bottom: calc(var(--catalog-padding) + env(safe-area-inset-bottom, 0px));
}

.site-footer__legal-nav--catalog {
    grid-template-columns: repeat(2, 1fr);
}

.site-footer__legal-nav--catalog .site-footer__legal-link:first-child {
    justify-self: start;
}

.site-footer__legal-nav--catalog .site-footer__legal-link--terms {
    grid-column: 2;
    justify-self: center;
}

.site-footer__legal-nav--catalog .site-footer__legal-link--privacy {
    grid-column: 3;
    justify-self: end;
}

/* Timeless Objects — catalog */
html.catalog-boot {
    background: var(--background);
}

html.catalog-boot .page--catalog {
    visibility: hidden;
}

.page--catalog {
    align-items: stretch;
    min-height: 100%;
}

.site-header {
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    left: 0;
    right: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    height: var(--site-header-height);
    padding: 0 var(--catalog-padding);
    background: var(--background);
    pointer-events: none;
}

.site-header > * {
    pointer-events: auto;
}

.site-header .filter-bar {
    align-self: stretch;
    height: 100%;
}

.site-header .filter-bar__group {
    align-items: stretch;
}

.page--catalog .site-header {
    opacity: 0;
}

.page--catalog:has(.catalog > .object-screen--featured .hero-media.is-developing) .site-header {
    animation: nav-fade-in var(--reveal-duration) var(--reveal-ease) var(--nav-fade-delay) both;
}

.page--catalog:has(.catalog > .object-screen--featured .hero-media.is-developed) .site-header {
    opacity: 1;
}

html.nav-intro-seen .page--catalog .site-header {
    opacity: 1;
    animation: none;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.filter-bar__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.filter-bar__group--end {
    flex-shrink: 0;
    margin-left: auto;
}

.filter-bar__link {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    min-height: var(--site-header-height);
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    color: var(--text-dimmed);
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.filter-bar__link--active,
.filter-bar__link:hover,
.filter-bar__link:focus-visible {
    color: var(--night);
}

.collection-tabs--desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px 16px;
}

.collection-dropdown--mobile {
    display: none;
    align-items: stretch;
    align-self: stretch;
}

.collection-dropdown {
    position: relative;
}

.collection-dropdown__trigger {
    line-height: 1;
}

.collection-dropdown__label {
    display: block;
    line-height: 1;
}

.collection-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.collection-dropdown.is-open .collection-dropdown__menu {
    display: flex;
}

.collection-dropdown__option {
    white-space: nowrap;
    text-align: right;
}

.site-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    width: 100%;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
}

.site-nav__link {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-dimmed);
    font: inherit;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.site-nav__link:first-child {
    justify-self: start;
}

.site-nav__link:nth-child(2) {
    justify-self: center;
}

.site-nav__link:last-child {
    justify-self: end;
}

.site-nav__link--active,
.site-nav__link--anchor[aria-current="page"],
.site-nav__link--anchor:hover,
.site-nav__link--anchor:focus-visible {
    color: var(--night);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--night);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.category-filters[hidden] {
    display: none;
}

.category-chip {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    color: var(--text-dimmed);
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.category-chip--active,
.category-chip:hover,
.category-chip:focus-visible {
    color: var(--night);
}

.catalog {
    width: 100%;
}

.catalog-error,
.catalog-empty {
    padding: calc(env(safe-area-inset-top, 0px) + 80px) var(--catalog-padding) 40px;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    color: var(--text-muted);
}

.object-screen {
    height: var(--top-screen-height, 100svh);
    min-height: var(--top-screen-height, 100svh);
    padding: calc(env(safe-area-inset-top, 0px) + var(--site-header-height)) var(--catalog-padding) calc(var(--screen-bottom-padding) + env(safe-area-inset-bottom, 0px));
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 32px;
    padding: 0 var(--catalog-padding) calc(var(--screen-bottom-padding) + env(safe-area-inset-bottom, 0px));
}

.catalog-grid--detail {
    padding: 0;
    padding-bottom: calc(var(--screen-bottom-padding) + env(safe-area-inset-bottom, 0px));
}

.object-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.object-card__media {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--placeholder);
}

.object-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.object-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--placeholder);
}

.object-nav--card {
    opacity: 1;
    padding-top: 16px;
    animation: none;
}

.object-screen__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.object-hero,
.detail-hero {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background: var(--placeholder);
}

.object-hero__link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.object-hero .hero-image {
    object-fit: contain;
    object-position: center;
}

.hero-placeholder,
.detail-hero__placeholder {
    position: absolute;
    inset: 0;
    background: var(--placeholder);
}

.object-nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    padding: 16px 0 0;
}

.page--catalog .object-screen--featured .object-nav {
    opacity: 0;
}

.page--catalog:has(.catalog > .object-screen--featured .hero-media.is-developing) .object-screen--featured .object-nav {
    animation: nav-fade-in var(--reveal-duration) var(--reveal-ease) var(--nav-fade-delay) both;
}

.page--catalog:has(.catalog > .object-screen--featured .hero-media.is-developed) .object-screen--featured .object-nav {
    opacity: 1;
}

html.nav-intro-seen .page--catalog .object-screen--featured .object-nav {
    opacity: 1;
    animation: none;
}

.object-nav__brand {
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    color: var(--text-muted);
    flex-shrink: 0;
}

.object-nav__brand--link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    color: var(--text-dimmed);
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.object-nav__brand--link:hover,
.object-nav__brand--link:focus-visible {
    color: var(--night);
}

.object-nav__brand-name,
.object-nav__external,
.object-nav__external-icon {
    color: inherit;
}

.object-nav__end {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.object-nav > .object-nav__link {
    min-width: 0;
    flex: 1;
}

.object-nav__link {
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.object-nav__link:hover,
.object-nav__link:focus-visible {
    color: var(--text-muted);
}

.object-nav__link--current {
    pointer-events: none;
}

.object-nav__external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--external-link-size);
    height: var(--external-link-size);
}

.object-nav__external-icon {
    display: block;
    width: var(--external-link-size);
    height: var(--external-link-size);
}

.hero-media.is-visible:not(.is-developed):not(.is-developing) .hero-image,
.hero-media.is-visible:not(.is-developed):not(.is-developing) .hero-develop {
    will-change: opacity, filter;
    animation: hero-photo-develop var(--story-develop-duration) var(--hero-develop-ease) var(--story-develop-delay) forwards;
}

/* Detail page */
.page--detail {
    align-items: stretch;
    min-height: 100%;
}

.detail-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--catalog-padding);
    padding-top: calc(env(safe-area-inset-top, 0px) + var(--catalog-padding));
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.detail-loading,
.detail-not-found {
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--inter-ui-size);
    font-weight: 400;
    color: var(--text-muted);
}

.detail-frame {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

.detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
}

.detail-title {
    min-width: 0;
    flex: 1;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    line-height: 1;
    word-break: break-word;
    color: var(--text-primary);
}

.detail-title__link {
    color: inherit;
    text-decoration: none;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.detail-title__link:hover,
.detail-title__link:focus-visible {
    color: var(--text-dimmed);
}

.detail-header__dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    appearance: none;
    border: 0;
    background: none;
    padding: 0 8px 0 16px;
    min-width: 40px;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 140ms var(--detail-nav-ease-out);
}

.detail-header__dot::after {
    content: "";
    position: absolute;
    inset: 0 -8px 0 -16px;
}

.detail-header__dot:active {
    transform: scale(0.96);
}

.detail-header__dot-mark {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff5c25;
    transition:
        background-color var(--link-hover-duration) var(--link-hover-ease),
        transform var(--detail-nav-enter-duration) var(--detail-nav-ease-out),
        opacity var(--detail-nav-enter-duration) var(--detail-nav-ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .detail-header__dot:hover .detail-header__dot-mark,
    .detail-header__dot:focus-visible .detail-header__dot-mark {
        background-color: #ff5c25;
        opacity: 0.72;
    }
}

.page--detail.is-header-open .detail-header__dot-mark {
    background-color: #ff5c25;
    transform: scale(0.82);
    opacity: 0.72;
}

.page--detail .site-header {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, calc(-100% - 6px), 0);
    transition:
        transform var(--detail-nav-exit-duration) var(--detail-nav-ease-out),
        opacity var(--detail-nav-exit-duration) var(--detail-nav-ease-out),
        visibility 0s linear var(--detail-nav-exit-duration);
}

.page--detail.is-header-open .site-header {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
        transform var(--detail-nav-enter-duration) var(--detail-nav-ease-out),
        opacity var(--detail-nav-enter-duration) var(--detail-nav-ease-out),
        visibility 0s;
}

.page--detail #detail-root > .detail-frame,
.page--detail #detail-root > .detail-not-found {
    transition: transform var(--detail-nav-exit-duration) var(--detail-nav-ease-out);
}

.page--detail.is-header-open #detail-root > .detail-frame,
.page--detail.is-header-open #detail-root > .detail-not-found {
    transform: translate3d(0, var(--site-header-height), 0);
    transition: transform var(--detail-nav-enter-duration) var(--detail-nav-ease-out);
}

.detail-hero {
    position: relative;
    width: 100%;
    flex: none;
    min-height: 0;
    overflow: visible;
    background: transparent;
}

.page--detail .detail-hero {
    position: relative;
    inset: auto;
    overflow: visible;
}

.page--detail .detail-hero:has(.detail-hero__image),
.page--detail .detail-hero:has(.detail-hero__placeholder) {
    background: var(--placeholder);
}

.page--detail .detail-hero:has(.detail-hero__placeholder) {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.page--detail .detail-hero:has(.detail-hero__placeholder) .detail-hero__media {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.detail-hero__link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.detail-hero__media {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
}

.page--detail .detail-hero__media.hero-media {
    position: relative;
    inset: auto;
    overflow: hidden;
}

.page--detail .detail-hero__media .hero-image,
.page--detail .detail-hero__media .detail-hero__image {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    object-position: center;
    pointer-events: none;
    opacity: 0.08;
    filter: brightness(0.18) saturate(0.2) sepia(0.12);
}

.page--detail .detail-hero__media.is-developed .hero-image,
.page--detail .detail-hero__media.is-developed .detail-hero__image {
    opacity: 1;
    filter: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px 48px;
    align-items: start;
}

.detail-about__body {
    grid-column: 1;
    min-width: 0;
    max-width: min(640px, 80ch);
}

.detail-about__heading {
    grid-column: 1;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, var(--detail-title-size));
    font-weight: 400;
    line-height: 1;
    color: var(--text-dimmed);
    margin-bottom: 0;
    text-wrap: balance;
}

.detail-brand--aside {
    grid-column: 2;
    grid-row: 1;
}

.detail-brand--mobile-footer {
    display: none;
}

@media (min-width: 769px) {
    .detail-brand--mobile-footer {
        display: none !important;
    }

    .detail-brand--aside .detail-brand__name {
        display: inline;
    }

    .detail-brand--aside .detail-brand__external {
        margin-left: 0.18em;
    }
}

.detail-brand {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-shrink: 0;
}

.detail-brand__link {
    display: inline-flex;
    align-items: center;
    font-size: clamp(48px, 8vw, var(--detail-title-size));
    line-height: 1;
    color: var(--text-dimmed);
    text-decoration: none;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.detail-brand__link:hover,
.detail-brand__link:focus-visible {
    color: var(--night);
}

.detail-brand__external {
    display: inline;
    margin-left: 0.18em;
    color: inherit;
}

.detail-brand__external-icon {
    display: block;
    width: 0.70em;
    height: 0.70em;
}

.detail-brand__name {
    display: inline;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    color: inherit;
}

.detail-copy {
    font-family: Inter, "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--detail-copy-size);
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-muted);
    text-wrap: pretty;
    hyphens: none;
    overflow-wrap: break-word;
}

.detail-copy + .detail-copy {
    margin-top: 1.25em;
}

.detail-copy--empty {
    color: var(--text-muted);
}

.detail-copy a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: color var(--link-hover-duration) var(--link-hover-ease);
}

.detail-copy a:hover,
.detail-copy a:focus-visible {
    color: var(--night);
}

/* About page — Timeless */
.page--legal .site-footer__closing {
    min-height: auto;
    padding: var(--catalog-padding);
    padding-bottom: calc(var(--catalog-padding) + env(safe-area-inset-bottom, 0px));
}

.page--legal .site-footer__closing .site-nav {
    width: 100%;
}

.site-header--simple {
    position: relative;
    pointer-events: auto;
    opacity: 1;
    animation: none;
    padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
}

.page--legal .legal-header {
    padding-top: var(--section-gap);
}

/* About page — Timeless */
.page--about-timeless {
    align-items: stretch;
    width: 100%;
}

.page--about-timeless .top-screen {
    padding-left: var(--catalog-padding);
    padding-right: var(--catalog-padding);
}

.page--about-timeless .site-header--about {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    min-height: var(--site-header-height);
    padding: calc(env(safe-area-inset-top, 0px) + 0px) 0 0;
    background: transparent;
    pointer-events: auto;
    opacity: 1;
}

.page--about-timeless .top-screen:has(.hero-media.is-developing) .site-header--about,
.page--about-timeless .top-screen:has(.hero-media.is-developing) .title-row--about {
    opacity: 0;
    animation: nav-fade-in var(--reveal-duration) var(--reveal-ease) var(--nav-fade-delay) both;
}

.page--about-timeless .top-screen:has(.hero-media.is-developed) .site-header--about,
.page--about-timeless .top-screen:has(.hero-media.is-developed) .title-row--about {
    opacity: 1;
}

html.nav-intro-seen .page--about-timeless .top-screen:has(.hero-media.is-developing) .site-header--about,
html.nav-intro-seen .page--about-timeless .top-screen:has(.hero-media.is-developing) .title-row--about {
    opacity: 1;
    animation: none;
}

.page--about-timeless .site-header--about .filter-bar {
    align-self: stretch;
    height: 100%;
}

.title-row--about {
    padding-top: var(--section-gap);
    padding-bottom: var(--page-padding);
}

.page--about-timeless .site-footer {
    padding-left: 0;
    padding-right: 0;
}

.page--about-timeless .site-footer__closing--catalog {
    min-height: auto;
}

.about-timeless {
    width: 100%;
    padding: 0 var(--catalog-padding) var(--catalog-padding);
}

.page--about-timeless .about-copy {
    display: flex;
    flex-direction: column;
    gap: var(--story-block-gap);
    width: 100%;
    max-width: none;
    padding-top: var(--story-block-gap);
}

.page--about-timeless .about-copy__group.story-copy {
    gap: 0.15em;
}

.page--about-timeless .about-copy .story-line--lead {
    margin-bottom: 0;
}

.about-timeless .story-line {
    font-size: clamp(28px, 4.5vw, 56px);
}

@media (max-width: 768px) {
    :root {
        --catalog-padding: 16px;
        --screen-bottom-padding: 40px;
        --detail-title-size: 72px;
        --detail-copy-size: 14px;
        --site-header-height: 50px;
    }

    .site-header {
        height: var(--site-header-height);
        align-items: center;
    }

    .page--catalog .site-header,
    .page--detail .site-header {
        height: var(--site-header-height);
        min-height: var(--site-header-height);
        max-height: var(--site-header-height);
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
        --inter-ui-size: 11px;
    }

    .filter-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .filter-bar__group--start {
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 10px 12px;
        padding-right: 4px;
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 32px), transparent 100%);
        mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 32px), transparent 100%);
    }

    .filter-bar__group--start::-webkit-scrollbar {
        display: none;
    }

    .filter-bar__group--start .filter-bar__link {
        flex-shrink: 0;
    }

    .filter-bar__group--end {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        align-self: stretch;
        margin-left: -16px;
        flex: 0 0 auto;
        padding-left: 20px;
        background: linear-gradient(to right, transparent, var(--background) 16px);
    }

    .site-footer__nav .filter-bar__group--end {
        margin-left: auto;
        padding-left: 16px;
        background: linear-gradient(to right, transparent, var(--background) 12px);
        align-self: stretch;
    }

    .site-footer--catalog .site-footer__nav {
        height: var(--site-header-height);
        min-height: var(--site-header-height);
        max-height: var(--site-header-height);
    }

    .site-footer__credit-panel {
        padding: var(--catalog-padding);
    }

    .collection-tabs--desktop {
        display: none;
    }

    .collection-dropdown--mobile {
        display: flex;
        align-items: stretch;
        align-self: stretch;
    }

    .page--catalog .site-header .filter-bar,
    .page--detail .site-header .filter-bar {
        position: relative;
        z-index: 2;
    }

    .page--catalog .site-header:has(.collection-dropdown.is-open)::after,
    .page--detail .site-header:has(.collection-dropdown.is-open)::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 40px;
        background: var(--background);
        pointer-events: none;
        z-index: 1;
    }

    .collection-dropdown.is-open {
        align-items: flex-end;
    }

    .collection-dropdown.is-open .collection-dropdown__menu {
        top: calc(100% + 2px);
        right: calc(-1 * var(--catalog-padding));
        gap: 6px;
        padding: 7px var(--catalog-padding) 9px;
        align-items: flex-end;
        box-sizing: border-box;
    }

    .collection-dropdown.is-open .collection-dropdown__option {
        padding: 1px 0;
        width: 100%;
        text-align: right;
    }

    .filter-bar__link {
        white-space: nowrap;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .object-card__image {
        object-fit: cover;
    }

    .page--detail .detail-hero {
        aspect-ratio: 1;
        overflow: hidden;
        background: var(--placeholder);
    }

    .page--detail .detail-hero__link {
        display: block;
        height: 100%;
    }

    .page--detail .detail-hero__media.hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .page--detail .detail-hero__media .hero-image,
    .page--detail .detail-hero__media .detail-hero__image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }

    .detail-content {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px 16px;
    }

    .detail-about__body {
        grid-column: 1 / -1;
    }

    .detail-brand--aside {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }

    .detail-brand--aside .detail-brand__name {
        display: none;
    }

    .detail-brand--aside .detail-brand__external {
        margin-left: 0;
    }

    .detail-brand--mobile-footer {
        display: flex;
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .detail-brand--mobile-footer .detail-brand__link {
        justify-content: flex-start;
    }

    .object-nav {
        gap: 12px;
    }

    .object-nav__link {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page--catalog .site-header,
    .page--catalog .object-screen--featured .object-nav {
        opacity: 1;
        animation: none;
    }

    .page--detail .site-header {
        animation: none;
        transform: none;
    }

    .page--detail #detail-root > .detail-frame,
    .page--detail #detail-root > .detail-not-found,
    .detail-header__dot,
    .detail-header__dot-mark {
        transition: opacity 120ms ease !important;
        transform: none !important;
        transition-delay: 0ms !important;
    }

    .page--detail .site-header {
        transition: opacity 120ms ease, visibility 0s linear 120ms !important;
    }

    .page--detail.is-header-open .site-header {
        transition: opacity 120ms ease, visibility 0s !important;
    }

    .page--detail .detail-hero__media .hero-image,
    .page--detail .detail-hero__media .detail-hero__image {
        opacity: 1;
        filter: none;
        animation: none;
    }

    .hero-media.is-visible:not(.is-developed):not(.is-developing) .hero-image,
    .hero-media.is-visible:not(.is-developed):not(.is-developing) .hero-develop {
        animation: none;
    }
}
