:root {
    --paper: #f3f2ee;
    --paper-bright: #faf9f6;
    --ink: #152027;
    --ink-soft: #5d666a;
    --line: rgba(21, 32, 39, .18);
    --night: #111;
    --white: #f8f7f3;
    --accent: #708487;
    --font: "Libre Baskerville", Georgia, serif;
    --ease: cubic-bezier(.2, .75, .25, 1);
    --side: clamp(84px, 8vw, 128px);
}


* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cart-open {
    overflow: hidden;
}

::selection {
    background: var(--ink);
    color: var(--paper);
}

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

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

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

.eyebrow {
    margin: 0 0 1.35rem;
    color: var(--ink-soft);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.lead {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    line-height: 1.65;
}

.preloader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 1.3rem;
    background: var(--night);
    color: rgba(255, 255, 255, .45);
    letter-spacing: .35em;
    text-align: center;
    transition: opacity .7s var(--ease), visibility .7s;
}

.preloader::before,
.preloader::after {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(44vw, 520px);
    height: 1px;
    background: rgba(255, 255, 255, .05);
    content: "";
}

.preloader::after {
    transform: rotate(90deg);
}

.preloader__ring {
    width: 50px;
    height: 50px;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, .08);
    border-top-color: rgba(255, 255, 255, .5);
    border-radius: 50%;
    animation: spin 1.05s linear infinite;
}

.preloader span {
    font-size: .58rem;
}

.is-loaded .preloader {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.vertical-brand {
    position: fixed;
    z-index: 120;
    top: 48px;
    left: 42px;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: top left;
    transition: color .35s;
}

.route-home .vertical-brand {
    color: var(--white);
}

.menu-open .vertical-brand {
    z-index: 150;
    color: var(--ink);
}

.menu-open .cart-toggle {
    color: var(--ink);
}

.menu-toggle {
    position: fixed;
    z-index: 150;
    top: 42px;
    right: 50px;
    width: 34px;
    height: 25px;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu-toggle::before {
    position: absolute;
    top: 5px;
    left: -8px;
    width: 6px;
    height: 6px;
    background: var(--ink);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--ink);
    transition: transform .4s var(--ease), top .4s var(--ease), background .35s;
}

.menu-toggle span:first-child {
    top: 7px;
}

.menu-toggle span:last-child {
    top: 16px;
}

.route-home .menu-toggle span,
.route-home .cart-toggle {
    color: var(--white);
}

.route-home.menu-open .cart-toggle {
    color: var(--ink);
}

.route-home .menu-toggle span {
    background: var(--white);
}

.menu-open .menu-toggle span {
    top: 11px;
    background: var(--ink);
}

.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
}

.menu-open .menu-toggle::before {
    opacity: 1;
    transform: scale(1);
}

.cart-toggle {
    position: fixed;
    z-index: 140;
    top: 44px;
    right: 102px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    border: 0;
    background: transparent;
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .14em;
}

.cart-toggle b {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .57rem;
}

.site-menu {
    position: fixed;
    z-index: 130;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(244, 243, 239, .97);
    opacity: 0;
    transition: opacity .48s var(--ease);
}

.site-menu__inner {
    position: relative;
    display: flex;
    min-height: 100%;
    padding: 15vh max(8vw, 100px) 7vh;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s .08s var(--ease), transform .55s .08s var(--ease);
}

.menu-open .site-menu {
    visibility: visible;
    pointer-events: auto;
}

.menu-open .site-menu__backdrop,
.menu-open .site-menu__inner {
    opacity: 1;
}

.menu-open .site-menu__inner {
    transform: none;
}

.site-menu__columns {
    display: grid;
    width: min(780px, 75vw);
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(50px, 10vw, 170px);
}

.site-menu ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 1.25rem;
    list-style: none;
}

.site-menu li {
    overflow: hidden;
}

.site-menu li a {
    display: inline-flex;
    flex-direction: column;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.3;
    transition: color .25s, transform .35s var(--ease);
}

.site-menu li a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.site-menu li small {
    max-height: 0;
    color: var(--ink-soft);
    font-size: .63rem;
    letter-spacing: .05em;
    opacity: 0;
    transition: max-height .3s, opacity .3s, margin .3s;
}

.site-menu li a:hover small {
    max-height: 30px;
    margin-top: 4px;
    opacity: 1;
}

.site-menu__foot {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.social-links,
.language-list {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    font-size: .65rem;
}

.language-list a {
    padding-bottom: 2px;
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.language-list a.is-active {
    border-bottom: 1px solid;
    color: var(--ink);
}

.home-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #0e0e0e;
    color: var(--white);
}

.home-hero__slides,
.home-hero__slide,
.home-hero__shade {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    margin: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.2s var(--ease), transform 6s linear;
}

.home-hero__slide.is-active {
    opacity: .82;
    transform: scale(1);
}

.home-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.65) contrast(1.08);
}

.home-hero__shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .28) 52%, rgba(0, 0, 0, .3) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, transparent 45%);
}

.home-hero__content {
    position: absolute;
    z-index: 2;
    bottom: 12vh;
    left: clamp(90px, 14vw, 230px);
    width: min(760px, 65vw);
}

.home-hero__content .eyebrow {
    color: rgba(255, 255, 255, .63);
}

.home-hero__content h1 {
    max-width: 760px;
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 5.8vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.home-hero__content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
}

.home-hero__actions {
    display: flex;
    margin-top: 2rem;
    gap: 35px;
}

.light-link {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    font-size: .78rem;
    transition: border-color .25s, transform .25s;
}

.light-link:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.home-hero__counter {
    position: absolute;
    z-index: 2;
    right: 50px;
    bottom: 48px;
    font-size: .65rem;
    letter-spacing: .12em;
}

.home-hero__scroll {
    position: absolute;
    z-index: 2;
    bottom: 45px;
    left: 50%;
    color: rgba(255, 255, 255, .58);
    font-size: .58rem;
    letter-spacing: .18em;
    transform: translateX(-50%);
}

.home-story,
.featured-works,
.story-page,
.shop-intro,
.product-grid--shop,
.product-detail,
.contact-page,
.journal,
.checkout-page,
.not-found {
    margin-left: var(--side);
}

.home-story {
    display: grid;
    min-height: 82vh;
    padding: clamp(100px, 14vw, 190px) clamp(55px, 9vw, 150px);
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 10vw, 170px);
    background: var(--paper-bright);
}

.home-story h2,
.section-head h1,
.section-head h2,
.shop-intro h1,
.story-page h1,
.contact-page h1,
.not-found h1 {
    margin: 0;
    font-size: clamp(2.35rem, 5.1vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.home-story__body {
    max-width: 630px;
    padding-top: 4.5rem;
    color: #303a3f;
}

.home-story__body p {
    margin: 0 0 1.35rem;
}

.signature {
    margin-top: 2.2rem !important;
    color: var(--ink-soft);
    font-style: italic;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.2rem;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--accent);
    gap: 16px;
    font-size: .82rem;
    transition: color .25s, gap .3s var(--ease);
}

.arrow-link:hover {
    color: var(--accent);
    gap: 24px;
}

.featured-works {
    padding: clamp(90px, 12vw, 160px) clamp(35px, 7vw, 120px);
}

.section-head {
    display: grid;
    margin-bottom: 70px;
    grid-template-columns: .45fr 1fr;
    align-items: start;
}

.section-head .eyebrow {
    padding-top: 1rem;
}

.section-head h1,
.section-head h2 {
    max-width: 850px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 4vw;
}

.product-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #deddda;
    aspect-ratio: 1.05 / 1;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .5s;
}

.product-card__image:hover img {
    transform: scale(1.025);
}

.product-card__edition {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 10px;
    background: rgba(244, 243, 239, .92);
    font-size: .58rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card__body {
    display: grid;
    padding-top: 18px;
    grid-template-columns: 1fr auto;
    gap: 25px;
}

.product-card h2 {
    margin: 0 0 .55rem;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 400;
    line-height: 1.28;
}

.product-card p {
    max-width: 520px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .81rem;
    line-height: 1.6;
}

.product-card__buy {
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 9px;
    white-space: nowrap;
    font-size: .76rem;
}

.text-button {
    padding: 0 0 3px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-size: .68rem;
}

.text-button:hover {
    border-color: var(--ink);
}

.story-page {
    padding: clamp(130px, 15vw, 210px) clamp(45px, 11vw, 180px) 120px;
}

.story-page__header {
    width: min(850px, 100%);
    margin: 0 auto 90px;
}

.story-page__header h1 {
    margin-bottom: 1.8rem;
}

.story-page__hero {
    width: min(1030px, 100%);
    margin: 0 auto 100px;
    overflow: hidden;
    background: #ddd;
    max-height: 76vh;
}

.story-page__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prose {
    width: min(760px, 100%);
    margin: 0 auto;
}

.prose h2,
.prose h3 {
    margin: 4rem 0 1.25rem;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    font-weight: 400;
    line-height: 1.3;
}

.prose p,
.prose li {
    color: #2e383d;
}

.prose a {
    border-bottom: 1px solid var(--accent);
}

.art-grid {
    display: grid;
    width: min(1140px, 100%);
    margin: 100px auto 0;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(15px, 2vw, 30px);
}

.art-grid__item {
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #ddd;
}

.art-grid__item:nth-child(1),
.art-grid__item:nth-child(4) {
    grid-column: span 7;
}

.art-grid__item:nth-child(2),
.art-grid__item:nth-child(3) {
    grid-column: span 5;
}

.art-grid__item:nth-child(5),
.art-grid__item:nth-child(6) {
    grid-column: span 6;
}

.art-grid__item img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s;
}

.art-grid__item:hover img {
    filter: brightness(.93);
    transform: scale(1.02);
}

.story-cta {
    width: min(760px, 100%);
    margin: 100px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.story-cta p {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
}

.shop-intro {
    padding: clamp(130px, 15vw, 200px) clamp(40px, 10vw, 160px) 90px;
}

.shop-intro > .eyebrow,
.shop-intro > h1,
.shop-intro__copy,
.shop-filters {
    margin-left: clamp(0px, 8vw, 120px);
}

.shop-intro__copy {
    display: grid;
    width: calc(100% - clamp(0px, 8vw, 120px));
    max-width: 920px;
    margin-top: 45px;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px;
    color: var(--ink-soft);
    font-size: .91rem;
}

.shop-filters {
    display: flex;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-filters button {
    padding: 10px 15px;
    border: 1px solid var(--line);
    background: transparent;
    font-size: .67rem;
    letter-spacing: .05em;
}

.shop-filters button:hover,
.shop-filters button.is-active {
    background: var(--ink);
    color: var(--paper);
}

.product-grid--shop {
    padding: 0 clamp(35px, 7vw, 120px) 140px;
}

.product-grid--shop > [hidden] {
    display: none;
}

.product-detail {
    display: grid;
    min-height: 100vh;
    padding: 120px clamp(40px, 7vw, 110px) 90px;
    grid-template-columns: minmax(0, 1.3fr) minmax(350px, .75fr);
    gap: clamp(45px, 8vw, 130px);
    align-items: center;
}

.product-detail__image {
    margin: 0;
    max-height: 80vh;
    overflow: hidden;
    background: #ddd;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
}

.product-detail__info h1 {
    margin: 0 0 1.2rem;
    font-size: clamp(2.6rem, 5vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.product-detail__info .prose {
    width: auto;
}

.product-detail__purchase {
    display: flex;
    margin: 2.5rem 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.product-detail__purchase strong {
    font-size: 1.15rem;
    font-weight: 400;
}

.primary-button {
    display: inline-flex;
    min-height: 50px;
    padding: 14px 22px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: background .25s, color .25s;
}

.primary-button:hover {
    background: transparent;
    color: var(--ink);
}

.product-facts {
    margin: 35px 0;
    border-top: 1px solid var(--line);
}

.product-facts div {
    display: grid;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
    font-size: .71rem;
}

.product-facts dt {
    color: var(--ink-soft);
}

.product-facts dd {
    margin: 0;
    text-align: right;
}

.contact-page,
.checkout-page,
.journal {
    padding: clamp(130px, 15vw, 200px) clamp(45px, 10vw, 160px) 130px;
}

.contact-grid {
    display: grid;
    width: min(1040px, 100%);
    margin: 0 auto;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(60px, 10vw, 140px);
}

.contact-grid .prose {
    width: auto;
    margin: 0;
}

.art-form {
    display: grid;
    gap: 22px;
}

.art-form label {
    display: grid;
    gap: 8px;
    color: var(--ink-soft);
    font-size: .67rem;
    letter-spacing: .05em;
}

.art-form input:not([type="radio"]):not([type="checkbox"]),
.art-form textarea,
.art-form select {
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    outline: 0;
    background: transparent;
    color: var(--ink);
    border-radius: 0;
    font-size: .95rem;
    transition: border-color .25s;
}

.art-form textarea {
    resize: vertical;
}

.art-form input:focus,
.art-form textarea:focus,
.art-form select:focus {
    border-color: var(--ink) !important;
}

.form-status {
    min-height: 1.6em;
    margin: 0;
    font-size: .75rem;
}

.journal .section-head,
.checkout-page .section-head {
    margin-bottom: 90px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 5vw;
}

.journal-card img {
    width: 100%;
    margin-bottom: 25px;
    background: #ddd;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.journal-card h2 {
    margin: 0 0 .7rem;
    font-size: clamp(1.45rem, 2.7vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
}

.journal-card > p:last-child {
    color: var(--ink-soft);
}

.checkout-layout {
    display: grid;
    width: min(1040px, 100%);
    margin: 0 auto;
    grid-template-columns: 1.2fr .8fr;
    gap: clamp(50px, 8vw, 110px);
}

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

.art-form fieldset {
    display: grid;
    margin: 10px 0;
    padding: 0;
    border: 0;
    gap: 10px;
}

.art-form legend {
    margin-bottom: 12px;
    font-size: .72rem;
    font-weight: 700;
}

.choice {
    display: grid !important;
    padding: 14px;
    border: 1px solid var(--line);
    grid-template-columns: auto 1fr;
    align-items: start;
    cursor: pointer;
}

.choice input {
    margin-top: 5px;
}

.choice span {
    display: grid;
    gap: 3px;
}

.choice b {
    color: var(--ink);
    font-size: .76rem;
    font-weight: 400;
}

.choice small {
    line-height: 1.45;
}

.consent {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    flex-direction: row;
}

.consent input {
    margin-top: 4px;
}

.checkout-summary {
    position: sticky;
    top: 110px;
    height: fit-content;
    padding: 30px;
    background: var(--paper-bright);
}

.checkout-summary h2 {
    margin: 0 0 25px;
    font-size: 1.25rem;
    font-weight: 400;
}

.summary-item {
    display: grid;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
    font-size: .68rem;
}

.summary-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
}

.summary-total {
    display: flex;
    padding-top: 22px;
    justify-content: space-between;
    font-size: .9rem;
}

.cart-drawer {
    position: fixed;
    z-index: 200;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 11, .45);
    opacity: 0;
    transition: opacity .35s;
}

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: min(480px, 92vw);
    height: 100%;
    padding: 32px;
    background: var(--paper-bright);
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
}

.cart-open .cart-drawer {
    visibility: visible;
    pointer-events: auto;
}

.cart-open .cart-drawer__backdrop {
    opacity: 1;
}

.cart-open .cart-drawer__panel {
    transform: none;
}

.cart-drawer header {
    display: flex;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
}

.cart-drawer h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 400;
}

.cart-drawer header button,
.lightbox button {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 2rem;
    font-weight: 300;
}

.cart-drawer__items {
    overflow: auto;
    flex: 1;
}

.cart-item {
    display: grid;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
}

.cart-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}

.cart-item h3,
.cart-item p {
    margin: 0;
}

.cart-item h3 {
    font-size: .8rem;
    font-weight: 400;
}

.cart-item p {
    color: var(--ink-soft);
    font-size: .64rem;
}

.cart-item button {
    align-self: start;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 1.1rem;
}

.cart-drawer footer {
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.cart-total {
    display: flex;
    margin-bottom: 18px;
    justify-content: space-between;
    font-size: .85rem;
}

.cart-drawer .primary-button {
    width: 100%;
}

.lightbox {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    padding: 55px;
    border: 0;
    background: rgba(10, 10, 10, .95);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, .7);
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox button {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 28px;
    color: #fff;
}

.toast {
    position: fixed;
    z-index: 300;
    right: 24px;
    bottom: 24px;
    max-width: min(360px, calc(100vw - 48px));
    padding: 13px 17px;
    background: var(--ink);
    color: var(--paper);
    font-size: .7rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}

.toast.is-visible {
    opacity: 1;
    transform: none;
}

.site-footer {
    display: grid;
    margin-left: var(--side);
    padding: 70px clamp(35px, 7vw, 120px);
    border-top: 1px solid var(--line);
    grid-template-columns: .65fr 1fr .85fr;
    gap: 45px;
    align-items: start;
    color: var(--ink-soft);
    font-size: .68rem;
}

.site-footer__brand {
    color: var(--ink);
    font-size: 1.4rem;
    font-weight: 700;
}

.site-footer p {
    max-width: 400px;
    margin: 0;
}

.site-footer > div {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.not-found {
    display: grid;
    min-height: 80vh;
    padding: 20vh 12vw;
    align-content: center;
}

.not-found h1 {
    max-width: 880px;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    :root {
        --side: 0px;
    }

    .vertical-brand {
        top: 29px;
        left: 24px;
        transform: none;
    }

    .menu-toggle {
        top: 27px;
        right: 24px;
    }

    .cart-toggle {
        top: 29px;
        right: 72px;
    }

    .cart-toggle span {
        display: none;
    }

    .site-menu__inner {
        padding: 110px 30px 36px;
    }

    .site-menu__columns {
        width: auto;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .site-menu li a {
        font-size: 1.02rem;
    }

    .site-menu li small {
        display: none;
    }

    .home-hero__content {
        bottom: 15vh;
        left: 28px;
        width: calc(100% - 56px);
    }

    .home-hero__content h1 {
        font-size: clamp(2.5rem, 11vw, 4.8rem);
    }

    .home-hero__counter {
        right: 25px;
        bottom: 30px;
    }

    .home-hero__scroll {
        display: none;
    }

    .home-story {
        padding: 100px 30px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-story__body {
        padding-top: 1.5rem;
    }

    .featured-works,
    .story-page,
    .shop-intro,
    .product-grid--shop,
    .contact-page,
    .journal,
    .checkout-page {
        padding-right: 28px;
        padding-left: 28px;
    }

    .section-head {
        grid-template-columns: 1fr;
    }

    .product-detail {
        min-height: auto;
        padding: 120px 28px 80px;
        grid-template-columns: 1fr;
    }

    .product-detail__image,
    .product-detail__image img {
        max-height: none;
    }

    .contact-grid,
    .checkout-layout {
        width: auto;
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        grid-row: 1;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    body {
        font-size: 15px;
    }

    .preloader::before,
    .preloader::after {
        width: 80vw;
    }

    .vertical-brand {
        font-size: .98rem;
    }

    .site-menu__columns {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-menu ul {
        gap: .8rem;
    }

    .site-menu__foot {
        margin-top: 35px;
    }

    .home-hero__content .eyebrow {
        max-width: 75%;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-story h2,
    .section-head h1,
    .section-head h2,
    .shop-intro h1,
    .story-page h1,
    .contact-page h1,
    .not-found h1 {
        font-size: clamp(2.2rem, 12vw, 4rem);
    }

    .section-head {
        margin-bottom: 45px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-card__body {
        grid-template-columns: 1fr;
    }

    .product-card__buy {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .story-page {
        padding-top: 125px;
    }

    .story-page__header,
    .story-page__hero,
    .prose,
    .art-grid,
    .story-cta {
        width: 100%;
    }

    .story-page__header {
        margin-bottom: 55px;
    }

    .story-page__hero {
        margin-bottom: 60px;
    }

    .art-grid {
        margin-top: 65px;
        grid-template-columns: 1fr;
    }

    .art-grid__item:nth-child(n) {
        grid-column: auto;
    }

    .art-grid__item img {
        min-height: 230px;
    }

    .shop-intro > .eyebrow,
    .shop-intro > h1,
    .shop-intro__copy,
    .shop-filters {
        margin-left: 0;
    }

    .shop-intro__copy {
        width: auto;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-detail__info h1 {
        font-size: 2.8rem;
    }

    .product-detail__purchase {
        align-items: stretch;
        flex-direction: column;
    }

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

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

    .lightbox {
        padding: 45px 15px 15px;
    }

    .site-footer {
        padding: 55px 28px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Original Vzduch composition — airy, asymmetrical and image-led. */

.route-home .vertical-brand,
.route-home .cart-toggle {
    color: var(--ink);
}

.route-home .menu-toggle span {
    background: var(--ink);
}

.route-home.home-dark-nav .vertical-brand,
.route-home.home-dark-nav .cart-toggle {
    color: var(--white);
}

.route-home.home-dark-nav .menu-toggle span {
    background: var(--white);
}

.route-home.menu-open .vertical-brand,
.route-home.menu-open .cart-toggle {
    color: var(--ink);
}

.route-home.menu-open .menu-toggle span {
    background: var(--ink);
}

.home-intro {
    position: relative;
    height: 100svh;
    min-height: 660px;
    overflow: hidden;
    background: #090909;
    color: var(--white);
}

.home-intro > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-intro::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 35%, rgba(0, 0, 0, .68) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .16), transparent 38%);
    content: "";
    pointer-events: none;
}

.home-intro__meta {
    position: absolute;
    z-index: 2;
    right: clamp(35px, 6vw, 100px);
    bottom: clamp(45px, 8vh, 90px);
    left: clamp(90px, 12vw, 190px);
}

.home-intro__meta > p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, .68);
    font-size: .62rem;
    letter-spacing: .18em;
}

.home-intro__meta h1 {
    max-width: 710px;
    margin: 0;
    font-size: clamp(1.55rem, 3.2vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.home-intro__meta > div {
    display: flex;
    margin-top: 1.8rem;
    gap: 28px;
}

.home-intro__meta a {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .48);
    font-size: .63rem;
    letter-spacing: .1em;
}

.home-intro__scroll {
    position: absolute;
    z-index: 3;
    right: 50%;
    bottom: 30px;
    display: grid;
    width: 30px;
    height: 42px;
    transform: translateX(50%);
}

.home-intro__scroll i {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, .68);
    opacity: 0;
    animation: original-chevron 2.8s ease-out infinite;
    transform: rotate(42deg);
}

.home-intro__scroll i::after {
    position: absolute;
    width: 22px;
    height: 1px;
    background: inherit;
    content: "";
    transform: translate(15px, -15px) rotate(96deg);
    transform-origin: left;
}

.home-intro__scroll i:nth-child(2) {
    animation-delay: .8s;
}

.home-intro__scroll i:nth-child(3) {
    animation-delay: 1.6s;
}

@keyframes original-chevron {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(42deg) scale(.75);
    }
    35% {
        opacity: .75;
    }
    100% {
        opacity: 0;
        transform: translateY(30px) rotate(42deg) scale(.45);
    }
}

.home-original {
    margin-left: var(--side);
    padding-top: clamp(80px, 9vw, 145px);
    background: var(--paper-bright);
}

.home-original__award {
    width: 61.5%;
    margin: 0 auto;
}

.home-original__award img {
    width: 100%;
    border-radius: 2px;
}

.home-original__language {
    margin: 28px 0 0;
    text-align: center;
}

.home-original__language a {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid var(--line);
    font-size: .62rem;
    letter-spacing: .13em;
}

.home-original__line {
    margin: clamp(50px, 7vw, 90px) auto 0;
    padding: 0 25px;
    font-size: clamp(1.15rem, 2vw, 1.8rem);
    font-weight: 700;
    text-align: center;
}

.home-original__prize {
    margin: 40px auto 0;
    padding: 0 25px;
    color: var(--ink-soft);
    font-size: .72rem;
    letter-spacing: .05em;
    text-align: center;
}

.home-original__chevrons {
    position: relative;
    width: 32px;
    height: 80px;
    margin: 15px auto 0;
}

.home-original__chevrons i {
    position: absolute;
    top: 0;
    left: 5px;
    width: 22px;
    height: 1px;
    background: var(--ink);
    opacity: 0;
    animation: original-chevron-dark 3s ease-out infinite;
    transform: rotate(42deg);
}

.home-original__chevrons i::after {
    position: absolute;
    width: 22px;
    height: 1px;
    background: inherit;
    content: "";
    transform: translate(15px, -15px) rotate(96deg);
    transform-origin: left;
}

.home-original__chevrons i:nth-child(2) {
    animation-delay: 1s;
}

.home-original__chevrons i:nth-child(3) {
    animation-delay: 2s;
}

@keyframes original-chevron-dark {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(42deg) scale(.75);
    }
    38% {
        opacity: .55;
    }
    100% {
        opacity: 0;
        transform: translateY(42px) rotate(42deg) scale(.4);
    }
}

.home-original__trio {
    display: grid;
    width: 61.5%;
    margin: clamp(100px, 12vw, 180px) auto clamp(110px, 14vw, 210px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3.3vw, 58px);
    align-items: center;
}

.home-original__trio figure {
    margin: 0;
}

.home-original__trio figure:nth-child(2) {
    transform: translateY(8%);
}

.home-original__trio figure:nth-child(3) {
    transform: translateY(-5%);
}

.home-original__trio img {
    width: 100%;
}

.home-original__letter {
    width: 34%;
    min-width: 430px;
    margin: 0 auto;
    color: #293237;
    font-size: .84rem;
    line-height: 2;
}

.home-original__letter p {
    margin: 0 0 1.3rem;
}

.home-original__letter p:first-child::first-letter {
    float: left;
    margin: .1rem .35rem 0 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: .85;
}

.home-original__letter .signature {
    margin-top: 2.2rem !important;
    text-align: right;
}

.home-original__ending {
    padding: clamp(170px, 21vw, 330px) 35px clamp(100px, 12vw, 180px);
    text-align: center;
}

.home-original__ending > p {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(1.25rem, 2.3vw, 2.2rem);
}

.home-original__ending > div {
    display: flex;
    justify-content: center;
    gap: 38px;
}

.prints-page {
    margin-left: var(--side);
    padding: clamp(130px, 15vw, 210px) clamp(30px, 6vw, 100px) 140px;
}

.archive-hero {
    width: min(790px, 66%);
    margin: 0 0 clamp(110px, 14vw, 190px) 10.5%;
}

.archive-hero h1 {
    margin: 0 0 1.6rem;
    font-size: clamp(3rem, 6.5vw, 7.2rem);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: 1;
}

.archive-hero__note {
    max-width: 670px;
    margin: 3.5rem 0 0;
    color: #313b40;
    font-size: .88rem;
    line-height: 1.9;
}

.print-image {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
}

.print-image img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transition: filter .4s, transform .8s var(--ease);
}

.print-image:hover img,
.loose-gallery__item:hover img {
    filter: brightness(.94);
    transform: scale(.995);
}

.print-pair {
    display: grid;
    margin: 0 auto clamp(120px, 16vw, 240px);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
}

.print-pair--opening .print-image:first-child {
    grid-column: 2 / span 4;
}

.print-pair--opening .print-image:last-child {
    margin-top: 16vh;
    grid-column: 8 / span 5;
}

.print-pair--stagger .print-image:first-child {
    grid-column: 1 / span 5;
}

.print-pair--stagger .print-image:last-child {
    margin-top: 10vh;
    grid-column: 8 / span 4;
}

.print-pair--landscape .print-image:first-child {
    grid-column: 1 / span 7;
}

.print-pair--landscape .print-image:last-child {
    margin-top: 18vh;
    grid-column: 9 / span 4;
}

.print-single {
    display: grid;
    margin: 0 auto clamp(120px, 16vw, 240px);
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.print-single--right .print-image {
    grid-column: 6 / span 6;
}

.print-single--left .print-image {
    grid-column: 2 / span 7;
}

.print-chapters {
    display: grid;
    width: min(1080px, 86%);
    margin: 0 auto clamp(120px, 16vw, 230px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(70px, 11vw, 170px);
}

.print-chapters .prose {
    width: auto;
    margin: 0;
}

.print-chapters h3 {
    margin-top: 0;
}

.old-style-cta {
    padding: clamp(100px, 16vw, 230px) 20px 40px;
    text-align: center;
}

.old-style-cta p {
    margin: 0;
    font-size: clamp(1.5rem, 3.4vw, 3.6rem);
}

.loose-gallery {
    display: grid;
    width: min(1280px, 100%);
    margin: clamp(110px, 15vw, 220px) auto 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: row dense;
    gap: clamp(90px, 13vw, 190px) clamp(15px, 2.5vw, 42px);
    align-items: start;
}

.loose-gallery__item {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
}

.loose-gallery__item img {
    width: 100%;
    height: auto;
    max-height: 78vh;
    object-fit: contain;
    transition: filter .4s, transform .8s var(--ease);
}

.loose-gallery__item--a {
    grid-column: 1 / span 5;
}

.loose-gallery__item--b {
    margin-top: 14vh;
    grid-column: 8 / span 4;
}

.loose-gallery__item--c {
    grid-column: 5 / span 7;
}

.loose-gallery__item--d {
    grid-column: 1 / span 4;
}

.loose-gallery__item--e {
    margin-top: 9vh;
    grid-column: 7 / span 5;
}

.loose-gallery__item--f {
    grid-column: 3 / span 8;
}

.loose-gallery__item--g {
    margin-top: 7vh;
    grid-column: 2 / span 4;
}

.loose-gallery__item--h {
    grid-column: 8 / span 5;
}

.product-grid--loose {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: row dense;
    gap: clamp(90px, 12vw, 175px) clamp(18px, 2.5vw, 42px);
    align-items: start;
}

.product-grid--loose .shop-artwork--1 {
    grid-column: 1 / span 5;
}

.product-grid--loose .shop-artwork--2 {
    margin-top: 13vh;
    grid-column: 8 / span 4;
}

.product-grid--loose .shop-artwork--3 {
    grid-column: 3 / span 6;
}

.product-grid--loose .shop-artwork--4 {
    margin-top: 8vh;
    grid-column: 9 / span 4;
}

.product-grid--loose .shop-artwork--5 {
    grid-column: 1 / span 4;
}

.product-grid--loose .shop-artwork--6 {
    margin-top: 12vh;
    grid-column: 7 / span 5;
}

.product-grid--loose .product-card__image {
    aspect-ratio: 1 / 1;
}

@media (max-width: 900px) {
    .home-intro__meta {
        right: 28px;
        bottom: 85px;
        left: 28px;
    }

    .home-original__award,
    .home-original__trio {
        width: calc(100% - 56px);
    }

    .home-original__letter {
        width: min(620px, calc(100% - 70px));
        min-width: 0;
    }

    .prints-page {
        padding-right: 28px;
        padding-left: 28px;
    }

    .archive-hero {
        width: min(720px, 88%);
        margin-left: 5%;
    }

    .print-pair--opening .print-image:first-child,
    .print-pair--stagger .print-image:first-child {
        grid-column: 1 / span 5;
    }

    .print-pair--opening .print-image:last-child,
    .print-pair--stagger .print-image:last-child {
        grid-column: 7 / span 6;
    }

    .print-chapters {
        width: 92%;
        gap: 60px;
    }
}

@media (max-width: 620px) {
    .home-intro {
        min-height: 620px;
    }

    .home-intro > img {
        object-fit: contain;
        object-position: center 38%;
    }

    .home-intro::after {
        background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, .88) 88%);
    }

    .home-intro__meta > p {
        font-size: .54rem;
    }

    .home-intro__meta h1 {
        max-width: 330px;
        font-size: clamp(1.45rem, 7vw, 2.2rem);
    }

    .home-intro__meta > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-intro__scroll {
        display: none;
    }

    .home-original {
        padding-top: 100px;
    }

    .home-original__award {
        width: calc(100% - 40px);
    }

    .home-original__line {
        margin-top: 65px;
    }

    .home-original__trio {
        width: calc(100% - 52px);
        margin-top: 90px;
        margin-bottom: 130px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-original__trio figure {
        width: 82%;
    }

    .home-original__trio figure:nth-child(2) {
        margin-left: auto;
        transform: none;
    }

    .home-original__trio figure:nth-child(3) {
        width: 68%;
        margin-left: 8%;
        transform: none;
    }

    .home-original__letter {
        width: calc(100% - 58px);
        font-size: .82rem;
        line-height: 1.85;
    }

    .home-original__ending {
        padding-top: 150px;
    }

    .home-original__ending > div {
        align-items: center;
        flex-direction: column;
        gap: 0;
    }

    .archive-hero {
        width: 100%;
        margin-right: 0;
        margin-bottom: 100px;
        margin-left: 0;
    }

    .archive-hero__note {
        margin-top: 2.2rem;
    }

    .print-pair,
    .print-single,
    .loose-gallery,
    .product-grid--loose {
        display: block;
    }

    .print-pair .print-image,
    .print-single .print-image,
    .loose-gallery__item,
    .product-grid--loose .shop-artwork {
        width: 100%;
        margin: 0 0 90px;
    }

    .print-pair .print-image:nth-child(even),
    .loose-gallery__item:nth-child(even),
    .product-grid--loose .shop-artwork:nth-child(even) {
        width: 78%;
        margin-left: auto;
    }

    .print-pair .print-image:nth-child(odd),
    .loose-gallery__item:nth-child(3n),
    .product-grid--loose .shop-artwork:nth-child(3n) {
        width: 82%;
    }

    .print-chapters {
        width: 100%;
        margin-bottom: 110px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .print-chapters .prose + .prose {
        margin-top: 50px;
    }

    .old-style-cta {
        padding-top: 90px;
    }
}

/* Navigation and homepage refinements based on the local review. */

.route-home {
    background: var(--paper-bright);
}

.route-home .site-footer {
    background: var(--paper-bright);
}

.language-toggle {
    position: fixed;
    z-index: 145;
    top: 43px;
    right: 184px;
    padding: 2px 0 4px;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1;
    transition: color .35s, opacity .25s;
}

.language-toggle:hover {
    opacity: .55;
}

.home-dark-nav .language-toggle {
    color: var(--white);
}

.cart-toggle {
    top: 36px;
    right: 96px;
    gap: 11px;
}

.cart-toggle__label {
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
}

.cart-toggle__bag {
    position: relative;
    display: grid;
    width: 25px;
    height: 28px;
    border: 1px solid currentColor;
    place-items: center;
}

.cart-toggle__bag::before {
    position: absolute;
    top: -6px;
    left: 6px;
    width: 11px;
    height: 8px;
    border: 1px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    content: "";
}

.cart-toggle .cart-toggle__bag b {
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-size: .6rem;
    font-weight: 700;
    line-height: 1;
}

.site-menu__backdrop {
    background: rgba(7, 7, 7, .985);
}

.site-menu__inner {
    padding: clamp(120px, 15vh, 180px) clamp(55px, 11vw, 180px) clamp(42px, 7vh, 80px);
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .045), transparent 30%),
        transparent;
    color: var(--white);
}

.site-menu__inner::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side);
    width: 1px;
    background: rgba(255, 255, 255, .07);
    content: "";
}

.site-menu__columns {
    width: min(1050px, 82vw);
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(70px, 13vw, 210px);
}

.site-menu .eyebrow {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .36);
}

.site-menu ul {
    gap: 1.35rem;
    counter-reset: menu-item;
}

.site-menu li {
    counter-increment: menu-item;
}

.site-menu li a {
    position: relative;
    padding-left: 42px;
    color: var(--white);
    font-size: clamp(1.55rem, 2.8vw, 3rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.site-menu li a::before {
    position: absolute;
    top: .6em;
    left: 0;
    color: rgba(255, 255, 255, .28);
    content: "0" counter(menu-item);
    font-size: .52rem;
    letter-spacing: .08em;
}

.site-menu li a:hover {
    color: var(--white);
    transform: translateX(10px);
}

.site-menu li a:hover span {
    opacity: .58;
}

.site-menu li small,
.site-menu li a:hover small {
    max-height: 30px;
    margin-top: .4rem;
    color: rgba(255, 255, 255, .38);
    font-size: .6rem;
    letter-spacing: .06em;
    opacity: 1;
}

.site-menu__foot {
    color: rgba(255, 255, 255, .62);
}

.social-links a {
    border-color: rgba(255, 255, 255, .2);
}

.language-list a {
    color: rgba(255, 255, 255, .42);
}

.language-list a.is-active {
    color: var(--white);
}

.menu-open .vertical-brand,
.menu-open .cart-toggle,
.menu-open .language-toggle,
.route-home.menu-open .vertical-brand,
.route-home.menu-open .cart-toggle,
.route-home.menu-open .language-toggle {
    color: var(--white);
}

.menu-open .menu-toggle span,
.route-home.menu-open .menu-toggle span {
    background: var(--white);
}

.menu-open .menu-toggle::before {
    background: var(--white);
}

.home-intro {
    isolation: isolate;
}

.home-intro__art {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 1450px);
    aspect-ratio: 1200 / 630;
    transform: translate3d(0, var(--intro-shift, 0), 0);
    will-change: transform;
}

.home-intro__art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.home-intro::after {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(9, 9, 9, .82), transparent 36%),
        linear-gradient(90deg, rgba(9, 9, 9, .76), transparent 44%);
}

.home-intro__meta {
    top: clamp(135px, 18vh, 205px);
    right: auto;
    bottom: auto;
    left: clamp(90px, 12vw, 190px);
    width: min(650px, 46vw);
}

.home-intro__meta h1 {
    font-size: clamp(1.8rem, 3.4vw, 4.1rem);
    text-wrap: balance;
}

.home-intro__scroll,
.home-original__chevrons {
    position: absolute;
    z-index: 3;
    right: auto;
    bottom: 30px;
    left: 50%;
    display: block;
    width: 1px;
    height: 68px;
    margin: 0;
    background: rgba(255, 255, 255, .24);
    transform: none;
}

.home-intro__scroll span,
.home-original__chevrons span {
    position: absolute;
    top: 22px;
    left: -36px;
    color: rgba(255, 255, 255, .45);
    font-size: .48rem;
    font-style: normal;
    letter-spacing: .18em;
    transform: rotate(-90deg);
}

.home-intro__scroll i,
.home-intro__scroll i::after,
.home-original__chevrons i,
.home-original__chevrons i::after {
    background: none;
}

.home-intro__scroll i,
.home-original__chevrons i {
    position: absolute;
    top: -2px;
    left: -2px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    opacity: 1;
    animation: scroll-dot 2.6s var(--ease) infinite;
    transform: none;
}

@keyframes scroll-dot {
    0% {
        opacity: 0;
        transform: translateY(0) scale(.5);
    }
    20% {
        opacity: .9;
    }
    75% {
        opacity: .75;
    }
    100% {
        opacity: 0;
        transform: translateY(66px) scale(.5);
    }
}

.home-original {
    margin-left: 0;
    padding-top: 0;
    background: #090909;
}

.home-original__opening {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #090909;
    color: var(--white);
}

.home-original__award {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(68vw, 1120px);
    margin: 0;
}

.home-original__award img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    object-position: right bottom;
    border-radius: 0;
}

.home-original__opening-copy {
    position: absolute;
    z-index: 2;
    top: clamp(145px, 22vh, 235px);
    left: clamp(90px, 12vw, 190px);
    width: min(610px, 43vw);
}

.home-original__line {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-size: clamp(2.1rem, 4.5vw, 5.1rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.05;
    text-align: left;
    text-wrap: balance;
}

.home-original__prize {
    margin: 2.2rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .52);
    font-size: .62rem;
    letter-spacing: .12em;
    text-align: left;
    text-transform: uppercase;
}

.home-original__content {
    padding-top: clamp(110px, 15vw, 220px);
    background: var(--paper-bright);
}

.home-original__trio {
    margin-top: 0;
}

.home-original__letter {
    position: relative;
    width: min(650px, 44vw);
    min-width: 0;
    padding-top: 70px;
    color: #293237;
    font-size: clamp(.86rem, 1.05vw, .98rem);
    line-height: 2.05;
    text-wrap: pretty;
}

.home-original__letter::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 40px;
    background: var(--line);
    content: "";
}

.home-original__letter p {
    margin-bottom: 1.75rem;
}

.home-original__letter p:first-child {
    margin-bottom: 1.1rem;
}

.home-original__letter p:first-child::first-letter {
    margin: .12rem .42rem 0 0;
    font-size: 3.15rem;
    line-height: .78;
}

.home-original__letter .signature {
    margin-top: 2.8rem !important;
    color: var(--ink-soft);
    font-size: .78rem;
}

@media (max-width: 900px) {
    .language-toggle {
        top: 31px;
        right: 125px;
    }

    .cart-toggle {
        top: 25px;
        right: 72px;
    }

    .cart-toggle__label {
        display: none;
    }

    .site-menu__inner {
        padding: 115px 34px 38px;
    }

    .site-menu__inner::before {
        display: none;
    }

    .site-menu__columns {
        width: min(720px, 100%);
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .site-menu li a {
        padding-left: 31px;
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .home-intro__meta,
    .home-original__opening-copy {
        left: 8vw;
    }

    .home-intro__art {
        width: 92vw;
    }

    .home-original__award {
        width: 79vw;
    }
}

@media (max-width: 620px) {
    .language-toggle {
        top: 32px;
        right: 118px;
        font-size: .54rem;
    }

    .cart-toggle__bag {
        width: 22px;
        height: 24px;
    }

    .cart-toggle__bag::before {
        top: -5px;
        left: 5px;
        width: 10px;
        height: 7px;
    }

    .site-menu__inner {
        overflow-y: auto;
        padding: 100px 27px 30px;
    }

    .site-menu__columns {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-menu .eyebrow {
        margin-bottom: 1rem;
    }

    .site-menu ul {
        gap: .85rem;
    }

    .site-menu li a {
        font-size: 1.42rem;
    }

    .site-menu li small {
        display: none;
    }

    .site-menu__foot {
        margin-top: 35px;
    }

    .home-intro__art {
        bottom: 7vh;
        width: 112vw;
    }

    .home-intro::after {
        background:
            linear-gradient(180deg, rgba(9, 9, 9, .9), transparent 42%),
            linear-gradient(90deg, rgba(9, 9, 9, .6), transparent 52%);
    }

    .home-intro__meta {
        top: 118px;
        right: 28px;
        left: 28px;
        width: auto;
    }

    .home-intro__meta h1 {
        max-width: 340px;
    }

    .home-intro__scroll,
    .home-original__chevrons {
        display: block;
        bottom: 22px;
    }

    .home-original__opening-copy {
        top: 120px;
        right: 28px;
        left: 28px;
        width: auto;
    }

    .home-original__line {
        max-width: 390px;
        font-size: clamp(2rem, 9vw, 3.25rem);
    }

    .home-original__prize {
        max-width: 280px;
        line-height: 1.7;
    }

    .home-original__award {
        bottom: 11vh;
        width: 94vw;
    }

    .home-original__award img {
        max-height: 58vh;
    }

    .home-original__content {
        padding-top: 100px;
    }

    .home-original__letter {
        width: calc(100% - 58px);
        padding-top: 58px;
        font-size: .86rem;
        line-height: 1.9;
    }
}
/* 2026 art direction: light navigation, seamless hero and editorial archives */
.site-menu__backdrop {
    background: rgba(248, 247, 243, .985);
    backdrop-filter: blur(10px);
}

.site-menu__inner {
    padding: clamp(112px, 14vh, 160px) clamp(42px, 8vw, 128px) clamp(34px, 6vh, 70px);
    background:
        radial-gradient(circle at 80% 18%, rgba(112, 132, 135, .08), transparent 29%),
        linear-gradient(135deg, rgba(255, 255, 255, .32), transparent 60%);
    color: var(--ink);
}

.site-menu__inner::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side);
    width: 1px;
    background: var(--line);
    content: "";
}

.site-menu__columns {
    width: min(1210px, 86vw);
    grid-template-columns: 1.15fr 1fr .85fr;
    gap: clamp(38px, 6.5vw, 105px);
}

.site-menu .eyebrow {
    margin-bottom: 1.65rem;
    color: var(--ink-soft);
}

.site-menu ul {
    gap: 1.05rem;
}

.site-menu li {
    overflow: visible;
}

.site-menu li a {
    display: grid;
    padding: .1rem 0;
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 10px;
    color: var(--ink);
    font-size: clamp(1.3rem, 2vw, 2.15rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.site-menu li a em {
    padding-top: .72em;
    color: rgba(21, 32, 39, .45);
    font-size: .49rem;
    font-style: normal;
    letter-spacing: .08em;
}

.site-menu li a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.site-menu li a b {
    font-weight: 400;
}

.site-menu li a:hover {
    color: var(--ink);
    transform: translateX(6px);
}

.site-menu li small,
.site-menu li a:hover small {
    max-height: 30px;
    margin-top: .42rem;
    color: var(--ink-soft);
    font-size: .56rem;
    letter-spacing: .045em;
    line-height: 1.45;
    opacity: .78;
}

.site-menu__foot {
    color: var(--ink-soft);
}

.social-links {
    gap: 15px;
}

.social-links a {
    width: 25px;
    height: 25px;
    border: 0;
    transition: opacity .25s, transform .35s var(--ease);
}

.social-links a:hover {
    opacity: .55;
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    overflow: visible;
}

.social-links rect,
.social-links circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
}

.social-links .social-dot,
.social-links path {
    fill: currentColor;
    stroke: none;
}

.language-list a {
    color: var(--ink-soft);
}

.language-list a.is-active {
    color: var(--ink);
}

.menu-open .vertical-brand,
.menu-open .cart-toggle,
.menu-open .language-toggle,
.route-home.menu-open .vertical-brand,
.route-home.menu-open .cart-toggle,
.route-home.menu-open .language-toggle {
    color: var(--ink);
}

.menu-open .menu-toggle span,
.route-home.menu-open .menu-toggle span {
    background: var(--ink);
}

.menu-open .menu-toggle::before {
    background: var(--ink);
}

.home-intro {
    min-height: 640px;
    isolation: isolate;
    background: #080808;
}

.home-intro__art {
    right: -1px;
    bottom: -1px;
    width: min(82vw, 1450px);
    aspect-ratio: 1672 / 941;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, .18) 18%, #000 48%, #000 100%);
    mask-image: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, .18) 18%, #000 48%, #000 100%);
    transform: translate3d(0, var(--intro-shift, 0), 0);
}

.home-intro__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
}

.home-intro::after {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, .7), transparent 34%),
        linear-gradient(90deg, rgba(8, 8, 8, .72), transparent 46%);
}

.home-intro__meta {
    top: clamp(132px, 18vh, 205px);
    right: auto;
    bottom: auto;
    left: clamp(86px, 11vw, 178px);
    width: min(650px, 46vw);
}

.home-intro__meta h1 {
    font-size: clamp(2.05rem, 4vw, 4.85rem);
    line-height: 1.02;
    text-wrap: balance;
}

.home-original {
    margin-left: 0;
    padding-top: 0;
    background: var(--paper-bright);
}

.home-original__content {
    padding-top: clamp(105px, 14vw, 205px);
    background: var(--paper-bright);
}

.home-original__trio {
    margin-top: 0;
    perspective: 900px;
}

.home-original__trio figure {
    overflow: hidden;
    border-radius: 4px;
    transform: translate3d(0, var(--float-y, 0), 0) rotate(var(--float-r, 0deg));
    transition: transform .16s linear;
}

.home-original__trio figure:nth-child(1) {
    --float-r: -.5deg;
}

.home-original__trio figure:nth-child(2) {
    --float-r: .45deg;
}

.home-original__trio figure:nth-child(3) {
    --float-r: -.3deg;
}

.home-original__trio img {
    transform: scale(1.015);
    transition: transform 1.4s var(--ease), filter .8s;
}

.home-original__trio figure:hover img {
    filter: contrast(1.03);
    transform: scale(1.035);
}

.home-original__letter {
    color: #293237;
}

.home-original__letter p:first-child {
    display: flex;
    margin-bottom: 1.25rem;
    align-items: baseline;
    gap: .42rem;
}

.home-original__letter p:first-child::first-letter {
    float: none;
    margin: 0;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: .82;
}

.home-original__letter .signature {
    color: #293237;
    font-size: .78rem;
    font-style: normal;
    font-weight: 400;
}

.home-original__ending > p {
    font-weight: 700;
}

.print-image,
.loose-gallery__item,
.photography-shot {
    overflow: hidden;
    border-radius: 4px;
}

.print-image img,
.loose-gallery__item img,
.photography-shot img,
.media-video video {
    border-radius: 4px;
}

.media-video {
    margin: 0;
    background: #111;
}

.media-video video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.print-image.media-video {
    display: block;
}

.print-pair .print-image,
.print-single .print-image,
.loose-gallery__item {
    transform: translate3d(var(--drift-x, 0), var(--drift-y, 0), 0);
    transition: transform .18s linear;
}

.cards-page {
    margin-left: var(--side);
    padding: clamp(130px, 15vw, 210px) clamp(30px, 6vw, 100px) 140px;
}

.cards-page__intro {
    display: grid;
    width: min(1040px, 82%);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(55px, 10vw, 145px);
}

.cards-page__intro h3 {
    margin-top: 0;
}

.cards-page .loose-gallery__item:nth-child(even) {
    transform: translate3d(var(--drift-x, 0), var(--drift-y, 0), 0) rotate(.35deg);
}

.photography-page {
    margin-left: var(--side);
    padding-bottom: clamp(100px, 12vw, 180px);
    background: var(--paper-bright);
}

.photography-hero {
    display: grid;
    min-height: 100svh;
    padding: clamp(130px, 15vw, 190px) clamp(32px, 7vw, 115px) clamp(60px, 7vw, 100px);
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(35px, 7vw, 110px);
    align-items: center;
}

.photography-hero h1 {
    margin: 0 0 1.4rem;
    font-size: clamp(3.6rem, 8.6vw, 9.5rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .9;
}

.photography-hero figure {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
}

.photography-hero img {
    width: 100%;
    height: min(72vh, 820px);
    object-fit: cover;
    border-radius: 4px;
}

.photography-story {
    display: grid;
    padding: clamp(80px, 11vw, 160px) clamp(30px, 7vw, 115px);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(70px, 11vw, 170px) clamp(16px, 2.5vw, 40px);
    align-items: start;
}

.photography-shot {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translate3d(var(--drift-x, 0), var(--drift-y, 0), 0);
    transition: transform .18s linear;
}

.photography-shot img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.photography-shot--1 {
    grid-column: 1 / span 5;
}

.photography-shot--2 {
    margin-top: 10vh;
    grid-column: 8 / span 4;
}

.photography-shot--3 {
    grid-column: 4 / span 7;
}

.photography-shot--4 {
    grid-column: 1 / span 4;
}

.photography-shot--5 {
    margin-top: 8vh;
    grid-column: 7 / span 6;
}

.photography-shot--6 {
    grid-column: 2 / span 7;
}

.photography-shot--7 {
    margin-top: 6vh;
    grid-column: 9 / span 4;
}

.photography-copy {
    grid-column: 4 / span 6;
    width: auto;
    margin: 0;
    padding: clamp(28px, 4vw, 58px) 0;
}

.photography-copy h3 {
    margin-top: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.8rem);
    line-height: 1.25;
}

.photography-cta {
    width: min(980px, calc(100% - 70px));
    margin: clamp(80px, 12vw, 170px) auto 0;
    padding-top: clamp(50px, 7vw, 85px);
    border-top: 1px solid var(--line);
}

.photography-cta p {
    max-width: 860px;
    margin: 0 0 2rem;
    font-size: clamp(2rem, 5vw, 5.5rem);
    letter-spacing: -.045em;
    line-height: 1.08;
}

.about-page {
    margin-left: var(--side);
    padding-bottom: clamp(100px, 12vw, 180px);
    background: var(--paper-bright);
}

.about-page__hero {
    padding: clamp(130px, 14vw, 190px) clamp(34px, 7vw, 110px) 0;
}

.about-page__hero > div {
    margin-left: 7%;
}

.about-page__hero h1 {
    margin: 0;
    font-size: clamp(4.3rem, 10vw, 10rem);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: .9;
}

.about-page__hero figure {
    margin: clamp(70px, 9vw, 130px) 0 0;
    overflow: hidden;
    border-radius: 4px;
}

.about-page__hero img {
    width: 100%;
    max-height: 78vh;
    object-fit: cover;
    border-radius: 4px;
}

.about-page__manifesto {
    width: min(760px, 58%);
    margin: clamp(90px, 12vw, 170px) auto;
}

.about-page__manifesto h3 {
    margin-top: 4rem;
    font-size: clamp(1.8rem, 3.2vw, 3.25rem);
    line-height: 1.25;
}

.about-services {
    display: grid;
    width: min(1120px, calc(100% - 70px));
    margin: 0 auto clamp(120px, 16vw, 230px);
    border-top: 1px solid var(--line);
}

.about-services a {
    display: grid;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
    align-items: baseline;
    transition: padding .35s var(--ease), opacity .25s;
}

.about-services a:hover {
    padding-right: 10px;
    padding-left: 10px;
}

.about-services span,
.about-services small {
    color: var(--ink-soft);
    font-size: .62rem;
    letter-spacing: .08em;
}

.about-services b {
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
    font-weight: 400;
}

.about-references {
    width: min(1120px, calc(100% - 70px));
    margin: 0 auto;
}

.about-references h2 {
    max-width: 900px;
    margin: 0 0 clamp(70px, 9vw, 110px);
    font-size: clamp(2rem, 4vw, 4.4rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.brand-logos {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-logos svg {
    width: 100%;
    padding: clamp(18px, 3vw, 35px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.brand-logos text {
    fill: var(--ink);
    font-family: Georgia, serif;
    font-size: 16px;
    letter-spacing: 2px;
}

.about-references__names {
    margin: 35px 0 0;
    color: var(--ink-soft);
    font-size: .66rem;
    letter-spacing: .08em;
    line-height: 2;
    text-transform: uppercase;
}

.about-page .story-cta {
    width: min(1120px, calc(100% - 70px));
    margin-right: auto;
    margin-left: auto;
}

.contact-page {
    min-height: 100svh;
    padding-bottom: clamp(90px, 11vw, 150px);
}

.contact-intro {
    width: min(720px, calc(100% - 70px));
    margin: clamp(40px, 6vw, 80px) auto clamp(80px, 10vw, 140px);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.contact-list {
    width: min(980px, calc(100% - 70px));
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.contact-list__item {
    display: grid;
    width: 100%;
    padding: clamp(25px, 3vw, 38px) 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px 25px;
    color: var(--ink);
    text-align: left;
}

.contact-list__item > span {
    color: var(--ink-soft);
    font-size: .62rem;
    letter-spacing: .12em;
}

.contact-list__item > button,
.contact-list__item > b {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: clamp(1.35rem, 3vw, 3rem);
    font-weight: 400;
    letter-spacing: -.03em;
    text-align: left;
}

.contact-list__item > button {
    grid-column: 2;
    grid-row: 1;
}

.contact-list__item > button.is-revealed {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
}

.contact-list__item small {
    grid-column: 2;
    color: var(--ink-soft);
    font-size: .62rem;
    letter-spacing: .03em;
}

.reveal[data-reveal-variant="left"] {
    --reveal-x: -24px;
}

.reveal[data-reveal-variant="right"] {
    --reveal-x: 24px;
}

.js .reveal {
    transform: translate3d(var(--reveal-x, 0), 25px, 0);
}

.js .reveal.is-visible {
    transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
    .site-menu__inner::before {
        display: none;
    }

    .site-menu__columns {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .site-menu__group--here {
        grid-column: 1 / -1;
    }

    .home-intro__art {
        width: 96vw;
    }

    .photography-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .photography-hero figure {
        width: 82%;
        margin-left: auto;
    }

    .about-page__manifesto {
        width: min(720px, calc(100% - 70px));
    }
}

@media (max-width: 700px) {
    .site-menu__inner {
        overflow-y: auto;
        padding: 96px 25px 28px;
    }

    .site-menu__columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-menu__group--here {
        grid-column: auto;
    }

    .site-menu .eyebrow {
        margin-bottom: .75rem;
    }

    .site-menu ul {
        gap: .6rem;
    }

    .site-menu li a {
        grid-template-columns: 24px 1fr;
        font-size: 1.25rem;
    }

    .site-menu li a em {
        padding-top: .6em;
    }

    .site-menu li small {
        display: none;
    }

    .site-menu__foot {
        margin-top: 32px;
    }

    .home-intro {
        min-height: 690px;
    }

    .home-intro__art {
        bottom: 5vh;
        width: 128vw;
        -webkit-mask-image: linear-gradient(145deg, transparent 0%, rgba(0, 0, 0, .3) 26%, #000 58%, #000 100%);
        mask-image: linear-gradient(145deg, transparent 0%, rgba(0, 0, 0, .3) 26%, #000 58%, #000 100%);
    }

    .home-intro__meta {
        top: 116px;
        right: 27px;
        left: 27px;
        width: auto;
    }

    .home-intro__meta > p {
        max-width: 250px;
        line-height: 1.7;
    }

    .home-intro__meta h1 {
        max-width: 350px;
        font-size: clamp(2rem, 9.6vw, 3.35rem);
    }

    .home-intro__meta > div {
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .home-original__content {
        padding-top: 92px;
    }

    .home-original__trio {
        width: calc(100% - 50px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .home-original__trio figure:nth-child(3) {
        width: 64%;
        margin-left: auto;
        grid-column: 1 / -1;
    }

    .home-original__letter p:first-child::first-letter {
        font-size: 2.65rem;
    }

    .cards-page,
    .photography-page,
    .about-page {
        margin-left: 0;
    }

    .cards-page {
        padding-right: 25px;
        padding-left: 25px;
    }

    .cards-page__intro {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .photography-hero {
        padding: 120px 25px 60px;
    }

    .photography-hero h1 {
        font-size: clamp(3.5rem, 22vw, 6rem);
    }

    .photography-hero figure {
        width: 100%;
    }

    .photography-hero img {
        height: 62vh;
    }

    .photography-story {
        padding: 70px 25px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 75px 14px;
    }

    .photography-shot--1,
    .photography-shot--3,
    .photography-shot--5,
    .photography-shot--6 {
        grid-column: 1 / span 5;
    }

    .photography-shot--2,
    .photography-shot--4,
    .photography-shot--7 {
        margin-top: 0;
        grid-column: 2 / span 5;
    }

    .photography-copy {
        grid-column: 1 / -1;
        padding: 10px 0;
    }

    .photography-cta {
        width: calc(100% - 50px);
    }

    .about-page__hero {
        padding: 120px 25px 0;
    }

    .about-page__hero > div {
        margin-left: 0;
    }

    .about-page__hero h1 {
        font-size: clamp(4.3rem, 25vw, 7rem);
    }

    .about-page__manifesto,
    .about-services,
    .about-references,
    .about-page .story-cta {
        width: calc(100% - 50px);
    }

    .about-services a {
        grid-template-columns: 35px 1fr;
    }

    .about-services small {
        display: none;
    }

    .brand-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-list,
    .contact-intro {
        width: calc(100% - 50px);
    }

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

    .contact-list__item > button,
    .contact-list__item small {
        grid-column: 1;
        grid-row: auto;
    }
}

.js .home-original__trio figure.reveal.is-visible {
    transform: translate3d(0, var(--float-y, 0), 0) rotate(var(--float-r, 0deg));
}

.js .print-pair .print-image.reveal.is-visible,
.js .print-single .print-image.reveal.is-visible,
.js .loose-gallery__item.reveal.is-visible,
.js .photography-shot.reveal.is-visible {
    transform: translate3d(var(--drift-x, 0), var(--drift-y, 0), 0);
}

@media (prefers-reduced-motion: reduce) {
    .home-intro__art,
    .home-original__trio figure,
    .print-pair .print-image,
    .print-single .print-image,
    .loose-gallery__item,
    .photography-shot {
        transform: none !important;
        transition: none !important;
    }
}

/* July review pass: calmer controls, two-column navigation and full-width editorial pages. */
.menu-toggle {
    top: 27px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    transition: opacity .25s;
}

.menu-toggle:hover {
    opacity: .58;
}

.menu-toggle:focus {
    outline: 1px solid rgba(21, 32, 39, .32);
    outline-offset: 2px;
}

.menu-toggle::before {
    display: none;
}

.menu-toggle span {
    left: 10px;
    width: 24px;
    height: 1.5px;
}

.menu-toggle span:first-child {
    top: 17px;
}

.menu-toggle span:last-child {
    top: 25px;
}

.menu-open .menu-toggle span {
    top: 21px;
}

.language-toggle {
    top: 43px;
    right: 196px;
    padding: 0;
    border: 0;
    font-size: .6rem;
}

.cart-toggle {
    top: 30px;
    right: 86px;
    min-height: 38px;
    gap: 12px;
}

.cart-toggle__label {
    padding: 0;
    border: 0;
}

.cart-toggle__bag {
    display: grid;
    width: 24px;
    height: 26px;
}

.cart-toggle .cart-toggle__bag {
    display: grid;
}

.site-menu__backdrop {
    background: #f8f7f3;
    backdrop-filter: none;
}

.site-menu__inner {
    padding: clamp(108px, 13vh, 150px) clamp(38px, 8vw, 125px) clamp(32px, 5vh, 58px);
    background: linear-gradient(145deg, rgba(255, 255, 255, .38), transparent 62%);
}

.site-menu__inner::before {
    display: none;
}

.site-menu__columns {
    width: min(1050px, 82vw);
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .72fr);
    gap: clamp(75px, 12vw, 190px);
}

.site-menu__column {
    display: grid;
    gap: clamp(30px, 4.2vh, 52px);
    align-content: start;
}

.site-menu .eyebrow {
    margin-bottom: 1rem;
    font-size: .6rem;
}

.site-menu ul {
    gap: .72rem;
}

.site-menu li a {
    padding: .05rem 0;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    font-size: clamp(1.25rem, 1.85vw, 2rem);
    line-height: 1.12;
}

.site-menu li a em {
    padding-top: .65em;
    font-size: .46rem;
}

.site-menu li small,
.site-menu li a:hover small {
    margin-top: .25rem;
    font-size: .53rem;
    line-height: 1.4;
}

.site-menu li a:hover {
    opacity: .56;
    transform: translateX(4px);
}

.site-menu__foot {
    padding-top: 34px;
    align-items: center;
}

.social-links a {
    width: 27px;
    height: 27px;
}

.social-links svg {
    width: 17px;
    height: 17px;
}

.language-list a {
    border: 0 !important;
    font-size: .62rem;
    opacity: .48;
}

.language-list a.is-active {
    opacity: 1;
}

.home-intro__art {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 18%, rgba(0, 0, 0, .78) 50%, #000 68%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 18%, rgba(0, 0, 0, .78) 50%, #000 68%);
}

.home-intro__art img {
    object-fit: cover;
    object-position: center bottom;
}

.home-intro::after {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, .72), transparent 34%),
        linear-gradient(90deg, rgba(8, 8, 8, .84), transparent 53%);
}

.home-intro__scroll {
    background: rgba(21, 32, 39, .34);
}

.home-intro__scroll span {
    color: rgba(21, 32, 39, .62);
    font-weight: 700;
}

.home-intro__scroll i {
    background: rgba(21, 32, 39, .78);
}

.route-photography .vertical-brand,
.route-about .vertical-brand,
.route-contact .vertical-brand {
    display: none;
}

.route-photography .photography-page,
.route-about .about-page,
.route-contact .contact-page {
    margin-left: 0;
}

.route-photography .site-footer,
.route-about .site-footer,
.route-contact .site-footer {
    margin-left: 0;
}

.site-footer {
    align-items: end;
}

.site-footer p {
    line-height: 1.55;
}

.site-footer > div {
    align-items: flex-end;
}

.cards-page__intro {
    display: grid;
    width: min(1080px, 86%);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(50px, 9vw, 130px);
}

.cards-page__chapter {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.cards-page__chapter > span {
    padding-top: .85rem;
    color: var(--ink-soft);
    font-size: .48rem;
    letter-spacing: .08em;
}

.cards-page__chapter .prose {
    width: auto;
    margin: 0;
}

.cards-page__chapter h3 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.7rem, 3.1vw, 3.3rem);
    line-height: 1.18;
}

.cards-page__chapter p {
    position: relative;
    margin: 0;
    padding-left: 17px;
    color: var(--ink-soft);
    font-size: .76rem;
    line-height: 1.85;
}

.cards-page__chapter p::before {
    position: absolute;
    top: .05em;
    left: 0;
    content: "•";
}

.about-page__hero {
    display: grid;
    min-height: 100svh;
    padding: clamp(118px, 13vw, 175px) clamp(34px, 8vw, 130px) clamp(75px, 8vw, 115px);
    grid-template-columns: minmax(0, .9fr) minmax(330px, .62fr);
    gap: clamp(55px, 9vw, 145px);
    align-items: center;
}

.about-page__hero > div {
    margin-left: 0;
}

.about-page__hero figure {
    width: min(100%, 590px);
    margin: 0 0 0 auto;
}

.about-page__hero img {
    width: 100%;
    height: min(76vh, 820px);
    max-height: none;
    object-fit: cover;
    object-position: center 44%;
}

.about-references h2 {
    margin-bottom: clamp(50px, 7vw, 90px);
}

.brand-cloud {
    display: flex;
    min-height: 420px;
    padding: clamp(35px, 6vw, 80px);
    overflow: hidden;
    background: #efeee9;
    border-radius: 4px;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: clamp(24px, 4vw, 62px) clamp(28px, 5vw, 75px);
    align-items: center;
}

.brand-wordmark {
    display: inline-flex;
    color: var(--ink);
    align-items: center;
    justify-content: center;
    font-size: clamp(.72rem, 1.25vw, 1.15rem);
    letter-spacing: .08em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-wordmark--1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(.9rem, 1.7vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -.02em;
    transform: rotate(-1deg);
}

.brand-wordmark--2 {
    font-size: clamp(.75rem, 1.15vw, 1.05rem);
    font-style: italic;
    letter-spacing: .01em;
    text-transform: none;
    transform: translateY(7px);
}

.brand-wordmark--3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(.65rem, 1vw, .92rem);
    font-weight: 600;
    letter-spacing: .14em;
    transform: rotate(.7deg);
}

.brand-wordmark--4 {
    font-size: clamp(.95rem, 1.65vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -.04em;
    transform: translateY(-6px);
}

.brand-wordmark--5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(.68rem, 1.1vw, 1rem);
    letter-spacing: .02em;
    text-transform: none;
}

.brand-wordmark--6 {
    font-size: clamp(.72rem, 1.35vw, 1.22rem);
    letter-spacing: .16em;
    transform: rotate(-.6deg);
}

.brand-wordmark--7 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(.82rem, 1.42vw, 1.3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    transform: translateY(4px);
}

.contact-page {
    min-height: auto;
    padding: clamp(120px, 13vw, 175px) clamp(28px, 8vw, 120px) clamp(80px, 9vw, 120px);
}

.contact-page .story-page__header {
    width: min(720px, 100%);
    margin-bottom: 30px;
}

.contact-page h1 {
    font-size: clamp(3rem, 6.5vw, 6.8rem);
}

.contact-page .lead {
    margin-bottom: 0;
    font-size: clamp(.95rem, 1.25vw, 1.15rem);
}

.contact-intro {
    width: min(650px, 100%);
    margin: 0 auto clamp(48px, 6vw, 72px);
    font-size: .9rem;
    line-height: 1.85;
}

.contact-list {
    width: min(780px, 100%);
}

.contact-list__item {
    padding: 18px 0;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 7px 20px;
}

.contact-list__item > button,
.contact-list__item > b {
    font-size: clamp(1.05rem, 2vw, 1.75rem);
}

.contact-list__item small {
    font-size: .56rem;
}

@media (max-width: 980px) {
    .site-menu__columns {
        width: 100%;
        grid-template-columns: minmax(0, 1.1fr) minmax(220px, .8fr);
        gap: 55px;
    }

    .about-page__hero {
        grid-template-columns: minmax(0, .8fr) minmax(280px, .7fr);
    }
}

@media (max-width: 700px) {
    .menu-toggle {
        top: 18px;
        right: 15px;
    }

    .language-toggle {
        top: 35px;
        right: 116px;
    }

    .cart-toggle {
        top: 21px;
        right: 68px;
    }

    .site-menu__inner {
        padding: 92px 25px 28px;
    }

    .site-menu__columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-menu__column {
        gap: 27px;
    }

    .site-menu li a {
        font-size: 1.22rem;
    }

    .home-intro__art {
        inset: 0;
        width: 100%;
        height: 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .12) 26%, rgba(0, 0, 0, .9) 58%, #000 100%);
        mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .12) 26%, rgba(0, 0, 0, .9) 58%, #000 100%);
    }

    .home-intro__art img {
        object-position: 69% bottom;
    }

    .home-intro::after {
        background: linear-gradient(180deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .08) 48%, transparent 75%);
    }

    .cards-page__intro {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page__hero {
        min-height: auto;
        padding: 112px 25px 70px;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-page__hero figure {
        width: 78%;
    }

    .about-page__hero img {
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .brand-cloud {
        min-height: 0;
        padding: 38px 24px;
        justify-content: center;
        gap: 31px 34px;
    }

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

    .site-footer {
        align-items: start;
    }

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

/* July refinement: light home, centered navigation and restored photography rail. */
.site-menu__columns,
.site-menu__foot {
    margin-right: auto;
    margin-left: auto;
}

.site-menu__foot {
    width: min(1050px, 82vw);
}

.route-home,
.route-home .home-intro {
    background: var(--paper-bright);
    color: var(--ink);
}

.route-home .home-intro {
    border-bottom: 0;
}

.route-home .home-intro__art {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none !important;
    will-change: auto;
}

.route-home .home-intro__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.route-home .home-intro::after {
    display: none;
}

.route-home .home-intro__meta > p {
    color: var(--ink-soft);
}

.route-home .home-intro__meta a {
    border-color: rgba(21, 32, 39, .42);
}

.route-home.home-dark-nav .vertical-brand,
.route-home.home-dark-nav .cart-toggle,
.route-home.home-dark-nav .language-toggle {
    color: var(--ink);
}

.route-home.home-dark-nav .menu-toggle span {
    background: var(--ink);
}

.route-photography {
    background: var(--paper-bright);
}

.route-photography .vertical-brand {
    display: block;
    color: var(--ink);
}

.route-photography .photography-page,
.route-photography .site-footer {
    margin-left: var(--side);
    background: var(--paper-bright);
}

@media (max-width: 980px) {
    .site-menu__foot {
        width: 100%;
    }
}

/* Navigation and service refinements. */
.route-about .vertical-brand,
.route-contact .vertical-brand {
    display: block;
    top: 30px;
    left: clamp(24px, 3.4vw, 54px);
    width: auto;
    height: 40px;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 40px;
    transform: none;
}

.cart-toggle__bag {
    width: 28px;
    height: 30px;
    border: 0;
}

.cart-toggle__bag::before {
    display: none;
}

.cart-toggle__bag svg {
    display: block;
    width: 28px;
    height: 30px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.25;
}

.cart-toggle .cart-toggle__bag b {
    position: absolute;
    top: -4px;
    right: -7px;
    display: grid;
    width: 16px;
    height: 16px;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    color: var(--paper-bright);
    font-size: .48rem;
    font-weight: 700;
    line-height: 1;
    place-items: center;
}

@media (min-width: 981px) {
    .site-menu__inner {
        overflow-y: auto;
        padding: clamp(105px, 11vh, 140px) clamp(42px, 7vw, 112px) clamp(38px, 5vh, 62px);
    }

    .site-menu__columns,
    .site-menu__foot {
        width: min(1150px, 84vw);
    }

    .site-menu__columns {
        grid-template-columns: minmax(0, 1.12fr) minmax(300px, .76fr);
        gap: clamp(100px, 11vw, 180px);
    }

    .site-menu__column {
        gap: clamp(44px, 5.5vh, 68px);
    }

    .site-menu .eyebrow {
        margin-bottom: 1.3rem;
        font-size: .64rem;
    }

    .site-menu ul {
        gap: 1rem;
    }

    .site-menu li a {
        grid-template-columns: 27px minmax(0, 1fr);
        gap: 15px;
        font-size: clamp(1.55rem, 2.2vw, 2.5rem);
        line-height: 1.08;
    }

    .site-menu li a em {
        padding-top: .7em;
        font-size: .48rem;
    }

    .site-menu li small,
    .site-menu li a:hover small {
        margin-top: .34rem;
        font-size: .57rem;
        line-height: 1.45;
    }

    .language-toggle,
    .cart-toggle {
        top: 27px;
        display: flex;
        height: 44px;
        align-items: center;
    }

    .language-toggle {
        right: 202px;
        line-height: 1;
    }

    .cart-toggle {
        right: 84px;
        min-height: 44px;
    }

    .menu-toggle {
        top: 27px;
    }
}

@media (max-width: 700px) {
    .route-about .vertical-brand,
    .route-contact .vertical-brand {
        top: 18px;
        left: 20px;
        height: 44px;
        line-height: 44px;
    }

    .language-toggle {
        top: 18px;
        height: 44px;
        line-height: 44px;
    }

    .cart-toggle {
        top: 18px;
        min-height: 44px;
    }

    .cart-toggle__bag,
    .cart-toggle__bag svg {
        width: 25px;
        height: 27px;
    }

    .cart-toggle .cart-toggle__bag b {
        top: -4px;
        right: -6px;
        width: 15px;
        height: 15px;
    }
}

/* Unified page rails, footer surface and compact About portrait. */
.site-footer {
    background: var(--paper-bright);
}

.route-about,
.route-contact {
    background: var(--paper-bright);
}

.route-about .about-page,
.route-contact .contact-page,
.route-about .site-footer,
.route-contact .site-footer {
    margin-left: var(--side);
    background: var(--paper-bright);
}

.about-page__hero figure {
    width: min(100%, 430px);
}

.about-page__hero img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center 54%;
}

.cart-toggle__bag,
.cart-toggle__bag svg {
    width: 30px;
    height: 27px;
}

@media (min-width: 901px) {
    .route-about .vertical-brand,
    .route-contact .vertical-brand {
        top: 48px;
        left: 42px;
        width: auto;
        height: auto;
        font-size: 1.15rem;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1;
        transform: rotate(-90deg) translateX(-100%);
        transform-origin: top left;
    }
}

@media (max-width: 900px) {
    .route-about .vertical-brand,
    .route-contact .vertical-brand {
        top: 29px;
        left: 24px;
        height: auto;
        font-size: 1.15rem;
        letter-spacing: 0;
        line-height: 1;
        transform: none;
    }
}

@media (max-width: 700px) {
    .about-page__hero figure {
        width: min(78%, 360px);
        margin-right: auto;
        margin-left: auto;
    }

    .about-page__hero img {
        aspect-ratio: 2 / 3;
    }

    .cart-toggle__bag,
    .cart-toggle__bag svg {
        width: 27px;
        height: 25px;
    }
}

/* Honest edition signals and refined shop surfaces. */
.cart-toggle {
    gap: 0;
    justify-content: center;
}

.cart-toggle__label {
    display: none;
}

.product-card__image,
.product-card__image img,
.product-detail__image,
.product-detail__image img,
.cart-item img {
    border-radius: 4px;
}

.product-card__image,
.product-detail__image {
    overflow: hidden;
}

.route-shop,
.route-shop .site-footer,
.route-shop .product-detail {
    background: var(--paper-bright);
}

.collector-proof {
    margin: clamp(42px, 6vw, 72px) 0;
    padding: clamp(32px, 4vw, 52px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.collector-proof h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(1.7rem, 3.6vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.collector-proof > p:last-child {
    max-width: 590px;
    margin: 1.6rem 0 0;
    color: var(--ink-soft);
    font-size: .78rem;
    line-height: 1.85;
}

.collector-proof__names {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.collector-proof__names span {
    display: inline-flex;
    min-height: 31px;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    align-items: center;
    font-size: .63rem;
    letter-spacing: .04em;
}

@media (min-width: 981px) {
    .language-toggle {
        right: 142px;
    }

    .cart-toggle {
        right: 78px;
        width: 44px;
    }
}
