/*!a7687a6559d70fc33c18588650aa480e9e764ef7*/
@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/playfair-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/playfair-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/playfair-italic-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/playfair-italic-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}
:root {
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --ink: #111111;
    --ink-soft: #6b6b6b;
    --ink-faint: #727272;
    --line: #e6e6e6;
    --line-soft: #f1f1f1;
    --bg: #ffffff;
    --bg-sunk: #fafafa;
    --accent: #111111;
    --step--1: 0.8125rem;
    --step-0: 0.9375rem;
    --step-1: 1.0625rem;
    --step-2: 1.375rem;
    --step-3: 1.75rem;
    --step-4: clamp(1.875rem, 3vw, 2.5rem);
    --step-5: clamp(2.25rem, 4vw, 3.5rem);
    --gutter: clamp(1.25rem, 3.2vw, 5rem);
    --measure: 34rem;
    --shell: 118rem;
    --masthead-h: 4.75rem;
    --pace: 420ms;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.005em;
    margin: 0;
    text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1.1em; max-width: var(--measure); }
::selection { background: var(--ink); color: var(--bg); }
:focus-visible {
    outline: 1px solid var(--ink);
    outline-offset: 3px;
}
.shell {
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.shell--narrow { max-width: 62rem; }
.shell--read { max-width: 52rem; }
.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--sunk { background: var(--bg-sunk); }
.stack > * + * { margin-top: var(--stack-gap, 1rem); }
.eyebrow {
    font-size: var(--step--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0 0 1.25rem;
}
.lede {
    font-size: var(--step-1);
    color: var(--ink-soft);
    max-width: var(--measure);
}
.masthead {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--pace) var(--ease);
}
.masthead[data-scrolled="true"] { border-bottom-color: var(--line); }
.masthead__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 4.75rem;
}
.wordmark {
    grid-column: 2;
    justify-self: center;
    font-size: var(--step-1);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.nav {
    display: flex;
    gap: clamp(1rem, 2.4vw, 2.25rem);
    align-items: center;
    font-size: var(--step--1);
}
.nav--end { grid-column: 3; justify-content: flex-end; }
.nav a {
    position: relative;
    padding-block: 0.35rem;
    color: var(--ink-soft);
    transition: color var(--pace) var(--ease);
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--pace) var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.lang {
    display: inline-flex;
    gap: 0.4rem;
    color: var(--ink-faint);
}
.lang [aria-current="true"] { color: var(--ink); }
.btn {
    --btn-ink: var(--bg);
    --btn-bg: var(--ink);
    --btn-fill: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    min-height: 3.25rem;
    border: 1px solid var(--btn-bg);
    color: var(--btn-ink);
    font: inherit;
    font-size: var(--step--1);
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    background-color: var(--btn-bg);
    background-image: linear-gradient(var(--btn-fill), var(--btn-fill));
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 100% 0;
    transition: color var(--pace) var(--ease),
                border-color var(--pace) var(--ease),
                background-size var(--pace) var(--ease);
}
.btn:hover { color: var(--ink); background-size: 100% 100%; }
.btn--ghost {
    --btn-bg: transparent;
    --btn-ink: var(--ink);
    --btn-fill: var(--ink);
    border-color: var(--line);
}
.btn--ghost:hover { color: var(--bg); border-color: var(--ink); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.35; pointer-events: none; }
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
    gap: clamp(1.5rem, 3.5vw, 3.5rem) clamp(1rem, 2.5vw, 2.5rem);
}
.card__frame {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--bg-sunk);
    overflow: hidden;
}
.card__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--pace) var(--ease), transform 900ms var(--ease);
}
.card__frame img + img {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.card:hover .card__frame img { transform: scale(1.03); }
.card:hover .card__frame img + img { opacity: 1; }
.card__body { padding-top: 1rem; }
.card__name {
    font-size: var(--step-0);
    letter-spacing: -0.01em;
    margin: 0 0 0.25rem;
}
.card__price {
    font-size: var(--step--1);
    color: var(--ink-soft);
    margin: 0;
}
.pdp {
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: 1fr;
}
@media (min-width: 60rem) {
    .pdp { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); align-items: start; }
    .pdp__info { position: sticky; top: 7rem; }
}
.pdp__gallery { display: grid; gap: 0.6rem; }
@media (min-width: 60rem) {
    .pdp__gallery { max-width: 88%; margin-inline: auto; }
}
.pdp__stage { background: var(--bg-sunk); position: relative; }
.pdp__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    display: grid; place-items: center;
    width: 2.75rem; height: 2.75rem;
    appearance: none; border: 0; cursor: pointer;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    opacity: 0; transition: opacity var(--pace) var(--ease);
}
.pdp__nav svg { width: 1.1rem; height: 1.1rem; }
.pdp__nav--prev { left: 0.5rem; }
.pdp__nav--next { right: 0.5rem; }
.pdp__stage:hover .pdp__nav,
.pdp__nav:focus-visible { opacity: 1; }
@media (hover: none) {
    .pdp__nav { opacity: 1; }
}
.pdp__stage img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.pdp__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}
.pdp__thumbs::-webkit-scrollbar { display: none; }
.pdp__thumb {
    border: 0;
    flex: 0 0 clamp(5.5rem, 23%, 11rem);
    appearance: none; padding: 0; cursor: pointer;
    background: var(--bg-sunk);
    transition: opacity var(--pace) var(--ease);
    opacity: 0.42;
}
.pdp__thumb img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.pdp__thumb:hover { opacity: 1; }
.pdp__thumb[aria-selected="true"] { opacity: 1; }
.pdp__cert { display: flex; align-items: center; gap: 0.75rem; margin: 0.9rem 0 0; }
.pdp__cert img { height: 2.25rem; width: auto; opacity: 0.8; flex: 0 0 auto; }
.pdp__cert span { font-size: var(--step--1); color: var(--ink-faint); }
.pdp__price {
    font-size: var(--step-2);
    letter-spacing: -0.02em;
    margin: 0.75rem 0 0;
}
.pdp__split3 {
    margin: 0.6rem 0 0;
    font-size: var(--step--1);
    color: var(--ink-soft);
    text-align: center;
}
.pdp__split3 strong { font-weight: 500; color: var(--ink); }
.pdp__split3-mark {
    height: 0.8rem;
    width: auto;
    display: inline-block;
    vertical-align: -0.04em;
    margin-left: 0.15rem;
}
.pdp__split3[hidden] { display: none; }
.pdp__rating {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 0.5rem;
    font-size: var(--step--1);
    color: var(--ink-soft);
    text-decoration: none;
}
.pdp__rating:hover .pdp__rating-count { text-decoration: underline; text-underline-offset: 2px; }
.stars { color: var(--ink); letter-spacing: 0.08em; }
.sheet--reviews { max-width: min(38rem, 94vw); }
.sheet--reviews .sheet__bar h2 { font-size: var(--step-1); display: flex; align-items: baseline; gap: 0.5rem; }
.sheet__count { font-size: var(--step--1); color: var(--ink-soft); font-weight: 400; }
.rev {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: min(60vh, 34rem);
    overflow-y: auto;
}
.rev__item { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.rev__item:last-child { border-bottom: 0; }
.rev__stars { margin: 0 0 0.35rem; color: var(--ink); letter-spacing: 0.08em; }
.rev__body { margin: 0; color: var(--ink-soft); }
.rev__who { margin: 0.35rem 0 0; font-size: var(--step--1); color: var(--ink-faint); }
.pdp__monthly {
    font-size: var(--step--1);
    color: var(--ink-soft);
    letter-spacing: normal;
    margin-left: 0.6rem;
    white-space: nowrap;
}
.pdp__note { font-size: var(--step--1); color: var(--ink-faint); }
.field { margin-block: 2rem; }
.field__label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: var(--step--1);
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}
.field__value { color: var(--ink); }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
    appearance: none;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: var(--step--1);
    padding: 0.65rem 1.1rem;
    min-height: 2.75rem;
    cursor: pointer;
    transition: border-color var(--pace) var(--ease), background var(--pace) var(--ease), color var(--pace) var(--ease);
}
.pill:hover { border-color: var(--ink-faint); }
.pill[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
}
.pill[disabled] {
    color: var(--ink-faint);
    text-decoration: line-through;
    cursor: not-allowed;
}
.disclosure { border-top: 1px solid var(--line); }
.disclosure:last-of-type { border-bottom: 1px solid var(--line); }
.disclosure summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-size: var(--step-0);
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary::after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid var(--ink-soft);
    border-bottom: 1px solid var(--ink-soft);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform var(--pace) var(--ease);
    flex: none;
}
.disclosure[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.disclosure__body { padding-bottom: 1.5rem; color: var(--ink-soft); }
.hero {
    position: relative;
    min-height: min(86vh, 52rem);
    display: grid;
    align-items: end;
    overflow: hidden;
}
.hero__body {
    position: relative;
    padding-block: clamp(2.5rem, 6vw, 5rem);
    color: var(--bg);
}
.hero h1 { font-size: var(--step-5); max-width: 14ch; }
.split {
    display: grid;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
@media (min-width: 56rem) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.ledger { width: 100%; border-collapse: collapse; font-size: var(--step-0); }
.ledger th, .ledger td { text-align: left; padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); }
.ledger th { font-weight: 400; color: var(--ink-soft); }
.ledger td:last-child, .ledger th:last-child { text-align: right; }
.colophon {
    border-top: 1px solid var(--line);
    padding-block: clamp(3rem, 6vw, 5rem) 2rem;
    font-size: var(--step--1);
    color: var(--ink-soft);
}
.colophon__cols {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}
.colophon h4 { font-size: var(--step--1); color: var(--ink); margin-bottom: 0.9rem; letter-spacing: 0; }
.colophon ul { list-style: none; margin: 0; padding: 0; }
.colophon li + li { margin-top: 0.5rem; }
.colophon a:hover { color: var(--ink); }
.colophon__base {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    color: var(--ink-faint);
}
.crumbs { font-size: var(--step--1); color: var(--ink-faint); margin-bottom: 2rem; }
.pdp-top { padding-block: clamp(1rem, 2vw, 1.5rem) 0; }
.pdp-top .crumbs { margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.pdp__calc { margin-top: 0.75rem; }
.pdp__finance {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    font-size: var(--step--1);
}
.pdp__finance-mark { height: 1.05rem; width: auto; display: block; }
.pdp__finance > span { color: var(--ink-faint); }
.pdp__commit { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; }
.pdp__commit-price { margin: 0; font-size: var(--step-1); white-space: nowrap; }
.pdp__commit .chosen-summary { margin: 0; min-width: 0; }
.crumbs a:hover { color: var(--ink); }
.crumbs span + span::before { content: "/"; margin-inline: 0.5rem; color: var(--line); }
.muted { color: var(--ink-soft); }
.center { text-align: center; max-width: none; }
.skip {
    position: absolute;
    left: -9999px;
}
.skip:focus {
    left: var(--gutter);
    top: 0.5rem;
    z-index: 100;
    background: var(--ink);
    color: var(--bg);
    padding: 0.75rem 1.25rem;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.masthead__logo {
    grid-column: 2;
    justify-self: center;
    display: block;
}
.masthead__logo img {
    height: clamp(0.85rem, 1.5vw, 1.1rem);
    width: auto;
}
.burger {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: none;
    border: 0;
    padding: 0.5rem 0;
    margin: 0;
    font: inherit;
    font-size: var(--step--1);
    color: var(--ink);
    cursor: pointer;
}
.burger__rules {
    display: grid;
    gap: 4px;
    width: 1.15rem;
    flex: none;
}
.burger__rules span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform var(--pace) var(--ease), opacity var(--pace) var(--ease);
}
.burger:hover .burger__rules span:first-child { transform: translateX(2px); }
.burger:hover .burger__rules span:last-child { transform: translateX(-2px); }
.icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ink-soft);
    font-size: var(--step--1);
    transition: color var(--pace) var(--ease);
}
.icon-btn:hover { color: var(--ink); }
.icon-btn svg { width: 1.05rem; height: 1.05rem; flex: none; }
.cart-count {
    font-variant-numeric: tabular-nums;
}
.scrim {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--pace) var(--ease), visibility var(--pace) var(--ease);
}
.drawer {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    z-index: 91;
    width: min(31rem, 92vw);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-101%);
    transition: transform var(--pace) var(--ease);
    visibility: hidden;
}
@media (max-width: 40rem) {
    .drawer { width: 100vw; }
}
[data-menu-open="true"] .scrim:not(.scrim--cart) { opacity: 1; visibility: visible; }
[data-menu-open="true"] #menu-drawer { transform: translateX(0); visibility: visible; }
[data-menu-open="true"] { overflow: hidden; }
.drawer__close {
    background: none;
    border: 0;
    padding: 0.5rem;
    margin: 0 0 clamp(2rem, 5vw, 3.5rem) -0.5rem;
    align-self: flex-start;
    cursor: pointer;
    color: var(--ink);
    line-height: 0;
}
.drawer__close svg { width: 1.1rem; height: 1.1rem; }
.drawer__close:focus { outline: none; }
.drawer__primary {
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
}
.drawer__primary a {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    line-height: 1.35;
    display: inline-block;
    position: relative;
}
.drawer__primary a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.22em;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--pace) var(--ease);
}
.drawer__primary a:hover::after,
.drawer__primary a[aria-current="page"]::after { transform: scaleX(1); }
.drawer__primary .drawer__sep { margin-top: clamp(1rem, 2.5vw, 1.75rem); }
.drawer__secondary {
    list-style: none;
    margin: clamp(2rem, 5vw, 3.5rem) 0 0;
    padding: 0;
    font-size: var(--step-0);
    color: var(--ink-soft);
}
.drawer__secondary li + li { margin-top: 0.6rem; }
.drawer__secondary a:hover { color: var(--ink); }
.drawer__foot {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    font-size: var(--step--1);
    color: var(--ink-faint);
}
.drawer__foot a:hover { color: var(--ink); }
.no-js .burger { display: none; }
.colophon__mark img {
    height: 0.95rem;
    width: auto;
    margin-bottom: 1.1rem;
}
[data-add][data-missing="false"] ~ [data-add-hint] { display: none; }
.collection { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem); }
.collection__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 1px solid var(--line);
}
.collection__head h2 { font-size: var(--step-2); }
.collection__more {
    font-size: var(--step--1);
    color: var(--ink-faint);
    white-space: nowrap;
}
.collection__more:hover { color: var(--ink); }
.prose {
    margin-top: clamp(2rem, 4vw, 3rem);
    font-size: var(--step-1);
    line-height: 1.7;
}
.prose > * {
    max-width: 66ch;
    margin-inline: auto;
}
.prose h2 { font-size: var(--step-3); margin: 2.2em 0 0.5em; line-height: 1.2; }
.prose h3 { font-size: var(--step-2); margin: 1.8em 0 0.4em; line-height: 1.25; }
.prose h4 { font-size: var(--step-1); margin: 1.6em 0 0.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin-bottom: 1.35em; }
.prose > :first-child { margin-top: 0; }
.prose > p:first-of-type { font-size: var(--step-2); line-height: 1.55; color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { text-decoration: underline; text-underline-offset: 0.2em; }
.prose a:hover { color: var(--ink); }
.prose img {
    max-width: min(100%, 52rem);
    height: auto;
    margin-block: 2.5rem;
    background: var(--bg-sunk);
}
.prose ul, .prose ol { padding-left: 1.2em; margin-block: 1.2em; }
.prose li + li { margin-top: 0.4em; }
.prose blockquote {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: var(--step-2);
    color: var(--ink);
}
.prose table { width: 100%; border-collapse: collapse; margin-block: 2rem; max-width: none; }
.prose th, .prose td { text-align: left; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line-soft); }
.prose iframe, .prose video { max-width: 100%; }
.icon-btn--bare svg { width: 1.15rem; height: 1.15rem; }
.masthead .lang { font-size: var(--step--1); }
.masthead .lang a { color: var(--ink-faint); }
.masthead .lang a[aria-current="true"] { color: var(--ink); }
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.assurances {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0.5rem;
    font-size: var(--step--1);
    color: var(--ink-soft);
}
.review-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}
@media (max-width: 63.99rem) { .review-grid .review:nth-child(n+7) { display: none; } }
.review {
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.review__stars {
    color: var(--ink);
    font-size: var(--step--1);
    letter-spacing: 0.2em;
    margin-bottom: 0.9rem;
}
.review blockquote {
    margin: 0 0 1rem;
    font-size: var(--step-0);
    color: var(--ink-soft);
}
.review figcaption {
    font-size: var(--step--1);
    color: var(--ink-faint);
}
.guide-grid {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.guide {
    display: block;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.guide h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.guide p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; }
.guide:hover h3 { text-decoration: underline; text-underline-offset: 0.2em; }
.buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem var(--gutter);
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(101%);
    transition: transform var(--pace) var(--ease);
}
.buybar[data-shown="true"] { transform: translateY(0); }
.buybar__meta { min-width: 0; display: flex; align-items: baseline; gap: 0.75rem; }
.buybar__name {
    font-size: var(--step--1);
    color: var(--ink-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.buybar__price {
    font-size: var(--step-1);
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.buybar .btn { width: 100%; min-height: 3rem; }
@media (min-width: 60rem) {
    .buybar { display: none; }
}
@media (max-width: 59.99rem) {
    body:has(.buybar) { padding-bottom: 5rem; }
}
@media (max-width: 47.99rem) {
    .grid-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 0.75rem;
    }
    .collection__head { flex-wrap: wrap; gap: 0.35rem; }
    .burger span:not(.burger__rules):not(.burger__rules span) { display: none; }
    .masthead__inner { min-height: 3.75rem; }
    .cta-row .btn { flex: 1 1 100%; }
    .pill { min-height: 3rem; padding-inline: 1.15rem; }
}
.drawer--cart {
    inset-inline: auto 0;
    transform: translateX(101%);
    width: min(28rem, 92vw);
}
[data-cart-open="true"] .drawer--cart { transform: translateX(0); visibility: visible; }
[data-cart-open="true"] .scrim--cart { opacity: 1; visibility: visible; }
[data-cart-open="true"] { overflow: hidden; }
.drawer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.drawer__title { font-size: var(--step-2); }
.drawer__bar .drawer__close { margin: 0 -0.5rem 0 0; }
.cart-lines { list-style: none; margin: 0; padding: 0; flex: 1; overflow-y: auto; }
.cart-line {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    padding-block: 1.25rem;
    border-top: 1px solid var(--line-soft);
}
.cart-line img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--bg-sunk); }
.cart-line__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}
.cart-line__head a { flex: 1; }
.cart-line__spec { font-size: var(--step--1); color: var(--ink-faint); margin: 0.35rem 0 0.6rem; }
.cart-line__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: var(--step--1);
    color: var(--ink-soft);
}
.cart-line__actions button {
    background: none;
    border: 0;
    padding: 0.35rem 0;
    font: inherit;
    color: var(--ink-faint);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.cart-line__actions button:hover { color: var(--ink); }
.cart-foot {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.cart-foot__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: var(--step--1);
    color: var(--ink-soft);
    margin-bottom: 0.6rem;
}
.cart-foot__row--total {
    font-size: var(--step-1);
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.cart-count {
    font-variant-numeric: tabular-nums;
    font-size: 0.6875rem;
    line-height: 1;
    min-width: 1.05rem;
    height: 1.05rem;
    padding-inline: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    margin-left: -0.4rem;
    align-self: flex-start;
}
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--bg-sunk);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: 60% center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 38%, transparent 68%);
}
.hero__body {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: clamp(2.5rem, 7vw, 6rem);
    color: #fff;
}
.hero h1 { font-size: var(--step-5); max-width: 16ch; }
.hero__lede { color: rgba(255, 255, 255, 0.86); margin-top: 1.25rem; }
.btn--outline-light { --btn-bg: transparent; --btn-ink: #fff; --btn-fill: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn--outline-light:hover { color: var(--ink); border-color: #fff; }
@media (min-width: 48rem) {
}
.section-head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.section-head .lede { margin: 1rem auto 0; max-width: 40rem; }
.card__name {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.card__arrow {
    width: 0.95rem;
    height: 0.95rem;
    flex: none;
    opacity: 0;
    transform: translateX(-0.35rem);
    transition: opacity var(--pace) var(--ease), transform var(--pace) var(--ease);
}
.card:hover .card__arrow { opacity: 1; transform: translateX(0); }
@media (hover: none) {
    .card__arrow { opacity: 0.45; transform: none; }
}
@media (max-width: 47.99rem) {
    .grid-products--rail {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 0.75rem;
    }
}
.masthead {
    position: fixed;
    left: 0;
    right: 0;
}
body:not(.has-hero) main { padding-top: var(--masthead-h, 4.75rem); }
.masthead__logo { position: relative; display: grid; }
.masthead__mark {
    grid-area: 1 / 1;
    transition: opacity var(--pace) var(--ease);
}
.masthead__mark--light { opacity: 0; }
.masthead[data-over-hero="true"] {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    color: #fff;
}
.masthead[data-over-hero="true"] .burger,
.masthead[data-over-hero="true"] .icon-btn,
.masthead[data-over-hero="true"] .lang a[aria-current="true"] { color: #fff; }
.masthead[data-over-hero="true"] .lang a { color: rgba(255, 255, 255, 0.62); }
.masthead[data-over-hero="true"] .masthead__mark--dark { opacity: 0; }
.masthead[data-over-hero="true"] .masthead__mark--light { opacity: 1; }
.masthead[data-over-hero="true"] .cart-count { background: #fff; color: var(--ink); }
body.has-hero .hero { margin-top: 0; }
@media (max-width: 47.99rem) {
    :root { --masthead-h: 3.75rem; }
}
.hero { align-items: center; }
.hero__body { padding-block: clamp(4rem, 12vh, 9rem); }
.hero__title { max-width: 18ch; }
.hero__title em { font-style: italic; }
.hero__lede { max-width: 38rem; margin-top: 1.5rem; }
.hero .cta-row { margin-top: 2.25rem; }
.hero__proof {
    display: inline-block;
    margin-top: 2rem;
    opacity: 0.92;
    transition: opacity var(--pace) var(--ease);
}
.hero__proof:hover { opacity: 1; }
.hero__proof img { width: clamp(9rem, 15vw, 11.5rem); height: auto; }
.hero::after {
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 45%, transparent 72%),
        linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 40%);
}
@media (max-width: 47.99rem) {
    .hero { align-items: end; }
    .hero__body { padding-block: clamp(2rem, 6vh, 4rem) clamp(2.5rem, 8vh, 5rem); }
    .hero::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 78%);
    }
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: var(--step--1);
}
.google-badge__mark { width: 1.15rem; height: 1.15rem; flex: none; }
.google-badge__stars { letter-spacing: 0.14em; color: var(--ink); }
.google-badge__score { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
@media (max-width: 47.99rem) {
}
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 260ms;
    animation-timing-function: var(--ease);
}
::view-transition-group(*) { animation-duration: 420ms; }
@media (prefers-reduced-motion: reduce) {
    @view-transition { navigation: none; }
}
.sheet {
    border: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    max-width: min(34rem, 92vw);
    width: 100%;
    background: var(--bg);
    color: var(--ink);
    margin: auto;
}
.sheet::backdrop {
    background: rgba(17, 17, 17, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.sheet__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.sheet__bar h2 { font-size: var(--step-2); }
.sheet__body p { color: var(--ink-soft); }
.sheet__body a { text-decoration: underline; text-underline-offset: 0.2em; color: var(--ink); }
.link-quiet {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: var(--ink);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
@media (max-width: 47.99rem) {
    .sheet {
        margin: auto auto 0;
        max-width: 100%;
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
}
.shop__title { font-size: var(--step-5); }
.shop__title em { font-style: italic; }
.mark {
    display: block;
    width: clamp(1.5rem, 2.4vw, 2rem);
    height: auto;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(1.25rem, 2.5vw, 2rem);
}
.collection-jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: var(--step-1);
}
.collection-jump a { position: relative; }
.collection-jump a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.collection__split { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }
@media (min-width: 60rem) {
    .collection__split { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); align-items: start; }
    .collection__intro { position: sticky; top: 7rem; }
}
.collection__intro h2 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--step-3);
    margin-bottom: 1rem;
}
.collection__intro p { font-size: var(--step--1); color: var(--ink-soft); }
.grid-products--roomy .card__body { text-align: center; }
.grid-products--roomy .card__frame { background: transparent; }
.grid-products--roomy .card__name { display: inline-flex; justify-content: center; }
.certs { border-top: 1px solid var(--line); }
.certs__marks {
    list-style: none;
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
}
.certs__marks img { height: clamp(2.5rem, 5vw, 3.5rem); width: auto; }
.certs p { margin-inline: auto; max-width: 46rem; }
.certs a { text-decoration: underline; text-underline-offset: 0.2em; color: var(--ink); }
.grid-products--roomy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem) clamp(0.75rem, 1.5vw, 1.5rem);
}
.grid-products--roomy .card__frame { aspect-ratio: 1 / 1; }
@media (min-width: 60rem) {
    .grid-products--roomy { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 80rem) {
    .grid-products--roomy { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-width: 1px;
}
.pill[aria-checked="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
}
.pills { gap: 0.65rem; }
.pill__swatch {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
    flex: none;
}
.pill[aria-checked="true"] .pill__swatch {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.chosen-summary {
    margin: 0 0 0.25rem;
    font-size: var(--step--1);
    color: var(--ink-soft);
    max-width: none;
}
.chosen-summary:empty { display: none; }
input, select, textarea {
    font-size: max(1rem, var(--step-0));
}
.review {
    display: block;
    transition: border-color var(--pace) var(--ease);
}
a.review:hover { border-top-color: var(--ink); }
a.review:hover figcaption { color: var(--ink); }
.review__out {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--step--1);
    color: var(--ink-faint);
    margin-top: 0.6rem;
}
a.review:hover .review__out { color: var(--ink); }
.review__body { margin: 0 0 1rem; font-size: var(--step-0); color: var(--ink-soft); max-width: none; }
.lang {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--pace) var(--ease);
}
.flag {
    width: 1.3rem;
    height: auto;
    display: block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.masthead[data-over-hero="true"] .flag { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35); }
.lang:hover { opacity: 1; }
.lang::after { display: none; }
.form { margin-top: clamp(2rem, 4vw, 3rem); display: grid; gap: 1.25rem; max-width: 34rem; }
.form__pair { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .form__pair { grid-template-columns: 1fr 1fr; } }
.form__row { display: grid; gap: 0.4rem; }
.form__row[hidden], .form__hint[hidden] { display: none; }
.form__row > span { font-size: var(--step--1); color: var(--ink-soft); }
.form input:not([type="radio"]):not([type="checkbox"]),
.form select,
.form textarea,
.field__select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    font-family: inherit;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.form textarea { resize: vertical; }
.form input:not([type="radio"]):not([type="checkbox"]):focus,
.form select:focus,
.form textarea:focus,
.field__select:focus { outline: none; border-color: var(--ink); }
.form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { padding: 1rem 1.25rem; margin: 1.5rem 0 0; font-size: var(--step-0); max-width: 34rem; }
.notice--good { background: var(--bg-sunk); color: var(--ink); }
.notice--bad { background: #fdf3f3; color: #7a2020; list-style: none; padding-left: 1.25rem; }
.notice--bad li + li { margin-top: 0.35rem; }
.reads { list-style: none; margin: 0; padding: 0; }
.reads li { border-top: 1px solid var(--line-soft); }
.reads li:last-child { border-bottom: 1px solid var(--line-soft); }
.reads a { display: block; padding: 1.1rem 0; }
.reads h3 { font-size: var(--step-1); margin-bottom: 0.2rem; }
.reads p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; max-width: 46rem; }
.reads a:hover h3 { text-decoration: underline; text-underline-offset: 0.2em; }
.article-cta {
    border-top: 1px solid var(--line);
    padding-top: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}
.article-cta h2 { font-size: var(--step-2); margin-bottom: 0.75rem; }
.article-cta p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.pdp__learn { margin: 1.5rem 0 0; font-size: var(--step--1); }
.pdp__learn a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 0.2em; }
.pdp__learn a:hover { color: var(--ink); }
.category__intro { margin-top: clamp(1.5rem, 3vw, 2rem); }
.category__intro > * { margin-inline: 0; }
.category__intro > p:first-of-type { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.7; }
.order-meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin: 1.75rem 0 0; }
.order-meta dt { font-size: var(--step--1); color: var(--ink-faint); margin-bottom: 0.2rem; }
.order-meta dd { margin: 0; }
.order-block { margin-top: clamp(2rem, 4vw, 3rem); }
.order-block h2 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.order-block p { color: var(--ink-soft); }
.sizesys { display: inline-flex; gap: 0; border: 1px solid var(--line); margin-bottom: 0.75rem; }
.sizesys__opt {
    appearance: none; background: none; border: 0; cursor: pointer;
    padding: 0.4rem 0.7rem;
    font: inherit; font-size: var(--step--1); color: var(--ink-faint);
    border-right: 1px solid var(--line);
}
.sizesys__opt:last-child { border-right: 0; }
.sizesys__opt:hover { color: var(--ink); }
.sizesys__opt[aria-checked="true"] { background: var(--ink); color: var(--bg); }
.sizesys__note { margin: 0.5rem 0 0; }
.assure { list-style: none; margin: 1.5rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 0.5rem; }
.assure li { position: relative; padding-left: 1.4rem; font-size: var(--step--1); color: var(--ink-soft); }
.assure li::before {
    content: ''; position: absolute; left: 0; top: 0.42em;
    width: 0.5rem; height: 0.28rem;
    border-left: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
    transform: rotate(-45deg);
}
.paylogos--small { margin-top: 0.6rem; gap: 0.35rem; }
.paylogos--small img { height: 1.25rem; }
.certline {
    margin: 0;
    max-width: 46rem;
    font-size: var(--step--1);
    color: var(--ink-soft);
    line-height: 1.7;
}
.certline strong {
    display: block;
    font-weight: 400;
    color: var(--ink);
    font-size: var(--step-0);
    margin-bottom: 0.2rem;
}
.certmarks {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(1rem, 4vw, 2.5rem);
    margin: 0 0 1.1rem;
    max-width: 23rem;
}
.certmarks img {
    width: auto;
    height: auto;
    max-width: calc(50% - clamp(0.5rem, 2vw, 1.25rem));
    opacity: 0.8;
}
.colophon__creed { margin: 1.25rem 0 0; padding: 0; border: 0; max-width: 24rem; }
.colophon__creed p {
    margin: 0;
    font-size: var(--step-0);
    line-height: 1.65;
    color: var(--ink-soft);
    font-style: italic;
}
.colophon__creed cite {
    display: block;
    margin-top: 0.6rem;
    font-style: normal;
    font-size: var(--step--1);
    color: var(--ink-faint);
    letter-spacing: 0.04em;
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.card__badge {
    display: inline-block;
    font-size: var(--step--2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 0.3rem;
}
.steps-list { counter-reset: step; list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; max-width: 44rem; }
.steps-list li { counter-increment: step; position: relative; padding-left: 2.6rem; color: var(--ink-soft); line-height: 1.7; }
.steps-list li::before {
    content: counter(step);
    position: absolute; left: 0; top: 0.1em;
    display: grid; place-items: center;
    width: 1.7rem; height: 1.7rem;
    border: 1px solid var(--line); border-radius: 50%;
    font-size: var(--step--2); color: var(--ink-faint);
}
.pdp__footnote { margin: 0.7rem 0 0; max-width: 34rem; line-height: 1.6; }
.masthead__logo { display: grid; }
.masthead__logo > * { grid-area: 1 / 1; align-self: center; }
.masthead__logo .masthead__icon {
    width: 1.9rem;
    height: 1.9rem;
    opacity: 0;
    transition: opacity var(--pace) var(--ease);
    justify-self: center;
}
.masthead[data-scrolled="true"] .masthead__icon { opacity: 1; }
.masthead[data-scrolled="true"] .masthead__mark--dark { opacity: 0; }
.masthead[data-over-hero="true"] .masthead__icon { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
    .masthead__icon, .masthead__mark { transition: none; }
}
.colophon__atelier {
    font-style: normal;
    font-size: var(--step--1);
    line-height: 1.9;
    color: var(--ink-soft);
}
.colophon__atelier a { text-decoration: underline; text-underline-offset: 0.2em; }
.colophon__atelier a:hover { color: var(--ink); }
.colophon__atelier strong { font-weight: 400; color: var(--ink); }
.colophon__book { margin: 0.9rem 0 0; font-size: var(--step--1); }
.colophon__book a { text-decoration: underline; text-underline-offset: 0.2em; }
html {
    touch-action: manipulation;
}
button,
a,
label,
summary,
input,
select,
.pill,
.pay__method,
.pdp__thumb {
    touch-action: manipulation;
}
@media (max-width: 40rem) {
    .drawer,
    .drawer--cart { width: 100vw; }
}
.drawer__close,
.burger,
.pdp__nav,
.pdp__thumb,
.pill,
.pay__method,
.btn {
    -webkit-tap-highlight-color: transparent;
}
.drawer__close {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: none;
    box-shadow: none;
}
.drawer__close:focus { outline: none; box-shadow: none; }
.drawer__close:focus-visible { outline: 1px solid var(--ink); outline-offset: 2px; }
.cart-cert {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--line-soft);
    font-size: var(--step--1); color: var(--ink-soft);
}
.cart-cert__marks { display: flex; align-items: center; gap: 0.5rem; flex: 0 0 auto; }
.cart-cert__marks img { height: 1.6rem; width: auto; opacity: 0.8; }
.drawer:focus,
.drawer:focus-visible { outline: none; }
.card__frame, .pdp__stage, .pdp__thumb, .cart-line img {
    background: var(--bg-sunk);
}
.hero { background: #2b2622; }
.split__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.split__actions .btn { flex: 1 1 auto; }
@media (max-width: 26rem) { .split__actions .btn { flex: 1 1 100%; } }
.consent {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
    background: rgba(28, 26, 23, 0.45);
}
.consent[hidden] { display: none; }
.consent__inner {
    max-width: 26rem;
    background: var(--bg, #fff);
    border-radius: 4px;
    box-shadow: 0 24px 60px -24px rgba(28, 26, 23, 0.55);
    padding: clamp(1.4rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.consent__text {
    margin: 0;
    font-size: var(--step--1);
    color: var(--ink-soft);
    line-height: 1.5;
}
.consent__text a { color: var(--ink); text-decoration: underline; text-underline-offset: 0.2em; }
.consent__actions { display: flex; gap: 0.6rem; }
.consent__actions .btn { flex: 1 1 0; min-height: 2.8rem; padding: 0.6rem 1rem; }
@media (max-width: 40rem) {
    .consent__actions { flex-direction: column-reverse; }
}
.handoff { display: grid; place-items: center; min-height: 100vh; margin: 0; padding: 1.5rem; text-align: center; }
.handoff__panel { max-width: 26rem; }
.handoff__title { font-size: 1.15rem; margin: 0 0 0.5rem; }
.handoff__hint { opacity: 0.7; margin: 0 0 1.25rem; }
.field__select {
    font-size: var(--step-0);
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 1.15rem) 55%, calc(100% - 0.8rem) 55%;
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
}
@media (min-width: 48rem) {
    .field__select { max-width: 22rem; }
}
