:root {
    color-scheme: light;
    --paper: #f8f4ed;
    --paper-deep: #eee5d9;
    --surface: #fffdf9;
    --ink: #292522;
    --muted: #6d635d;
    --line: #d9cec2;
    --plum: #7f3f57;
    --plum-dark: #5d293c;
    --plum-soft: #f2e4e8;
    --sage: #667d6b;
    --sage-dark: #405545;
    --sage-soft: #e8eee7;
    --gold: #b38a51;
    --danger: #8f2f36;
    --shadow: 0 18px 50px rgba(48, 38, 31, 0.09);
    --shadow-small: 0 8px 24px rgba(48, 38, 31, 0.08);
    --radius-small: 4px;
    --radius: 12px;
    --radius-large: 24px;
    --content: 1240px;
    --reading: 760px;
    --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--paper);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}

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

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

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

a {
    color: var(--plum-dark);
    font-weight: 700;
    text-decoration-color: rgba(127, 63, 87, 0.45);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--plum);
    text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(127, 63, 87, 0.42);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 0.65em;
    color: var(--ink);
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

h1 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 10vw, 5.75rem);
}

h2 {
    max-width: 18ch;
    font-size: clamp(2rem, 7vw, 3.8rem);
}

h3 {
    font-size: clamp(1.28rem, 4vw, 1.65rem);
}

h4 {
    font-size: 1.05rem;
}

p,
li,
dd,
address {
    color: var(--muted);
}

address {
    font-style: normal;
}

hr {
    height: 1px;
    margin: 2rem 0;
    border: 0;
    background: var(--line);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    transform: translateY(-180%);
    border-radius: var(--radius-small);
    background: var(--ink);
    color: #fff;
    padding: 0.7rem 1rem;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 0.8rem;
    color: var(--plum);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    line-height: 1.35;
    text-transform: uppercase;
}

.reassurance-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--sage-dark);
    color: #fff;
}

.reassurance-bar__inner {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 0.52rem 1rem;
    text-align: center;
}

.reassurance-bar__inner span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.reassurance-bar__inner span:not(:first-child) {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(217, 206, 194, 0.86);
    background: rgba(248, 244, 237, 0.94);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.55rem;
    align-items: center;
    width: min(100%, var(--content));
    min-height: 66px;
    margin: 0 auto;
    padding: 0.6rem 0.85rem;
}

.site-brand {
    display: inline-flex;
    min-width: 0;
    gap: 0.65rem;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.site-brand > span:last-child {
    min-width: 0;
}

.site-brand:hover {
    color: var(--ink);
}

.site-brand__mark,
.empty-cart__mark {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--plum);
    border-radius: 50%;
    color: var(--plum-dark);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-brand__name,
.site-brand__tagline {
    display: block;
}

.site-brand__name {
    overflow: visible;
    font-family: var(--font-serif);
    font-size: clamp(1.02rem, 4vw, 1.35rem);
    font-weight: 700;
    line-height: 1.05;
    text-overflow: clip;
    text-wrap: balance;
    white-space: normal;
}

.site-brand__name i {
    color: var(--plum);
    font-weight: 500;
}

.site-brand__tagline {
    display: none;
    margin-top: 0.22rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.15;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.site-nav--desktop {
    display: none;
}

.site-nav a,
.site-nav__button,
.site-menu summary {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav__button:hover,
.site-menu summary:hover {
    color: var(--plum);
}

.site-basket {
    display: inline-flex;
    min-height: 44px;
    gap: 0.38rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
}

.site-basket:hover {
    border-color: var(--plum);
    color: var(--plum-dark);
}

.site-basket svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.site-basket__count {
    display: grid;
    min-width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border-radius: 50%;
    background: var(--plum);
    color: #fff;
    font-size: 0.7rem;
}

.site-menu {
    position: relative;
}

.site-menu summary {
    display: grid;
    min-height: 44px;
    place-items: center;
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.5rem 0.7rem;
}

.site-menu summary::-webkit-details-marker {
    display: none;
}

.site-menu__panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: grid;
    width: min(84vw, 290px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 0.7rem;
}

.site-menu__panel a,
.site-menu__panel .site-nav__button {
    display: block;
    width: 100%;
    min-height: 44px;
    border: 0;
    border-bottom: 1px solid var(--paper-deep);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    padding: 0.72rem 0.65rem;
    text-align: left;
    text-decoration: none;
}

.site-menu__panel a:hover,
.site-menu__panel .site-nav__button:hover {
    background: var(--paper);
    color: var(--plum);
}

.site-nav__form {
    margin: 0;
}

.message-region {
    width: min(calc(100% - 2rem), var(--content));
    margin: 1rem auto 0;
}

.message {
    border-left: 4px solid var(--sage);
    border-radius: var(--radius-small);
    background: var(--sage-soft);
    color: var(--ink);
    padding: 0.85rem 1rem;
}

.message--error {
    border-color: var(--danger);
    background: #f8e8e8;
}

.site-main {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 4.5rem) 1rem;
}

.site-main--flush {
    width: 100%;
    max-width: none;
    padding: 0;
}

.button,
button,
input[type="submit"] {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum);
    border-radius: var(--radius-small);
    background: var(--plum);
    color: #fff;
    padding: 0.78rem 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    border-color: var(--plum-dark);
    background: var(--plum-dark);
    color: #fff;
}

.button:active,
button:active,
input[type="submit"]:active {
    transform: translateY(1px);
}

.button--secondary {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.button--secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.button--light {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
}

.button--light:hover {
    border-color: var(--paper-deep);
    background: var(--paper-deep);
    color: var(--ink);
}

.button--small {
    min-height: 42px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
}

.button--full {
    width: 100%;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
    align-items: center;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    gap: 0.45rem;
    align-items: center;
    color: var(--plum-dark);
}

.text-button {
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--plum-dark);
    padding: 0.4rem 0;
    text-decoration: underline;
}

.text-button:hover {
    border: 0;
    background: transparent;
    color: var(--plum);
}

.text-button--danger,
.text-button--danger:hover {
    color: var(--danger);
}

.media-placeholder {
    display: grid;
    width: 100%;
    min-height: 240px;
    place-items: center;
    background: var(--paper-deep);
    color: var(--muted);
    padding: 2rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    text-align: center;
}

.image-caption,
figcaption {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.home-hero,
.proof-strip,
.section,
.final-cta {
    width: min(100%, var(--content));
    margin-right: auto;
    margin-left: auto;
}

.home-hero {
    display: grid;
    padding: clamp(2rem, 7vw, 5.5rem) 1rem 0;
}

.home-hero__copy {
    grid-row: 2;
    align-self: center;
    padding: 2rem 0;
}

.home-hero h1 {
    max-width: 10ch;
}

.home-hero__lead {
    max-width: 560px;
    margin-bottom: 1.65rem;
    color: #534b46;
    font-size: clamp(1.08rem, 2.5vw, 1.28rem);
}

.hero-note {
    margin: 1.2rem 0 0;
    font-size: 0.9rem;
}

.home-hero__media {
    position: relative;
    grid-row: 1;
    min-width: 0;
    margin: 0 -1rem;
}

.home-hero__media::before {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 72%;
    height: 58%;
    border: 1px solid var(--gold);
    content: "";
}

.home-hero__media img,
.home-hero__media .media-placeholder {
    position: relative;
    width: 100%;
    height: clamp(260px, 75vw, 360px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 70%;
}

.home-hero__media .image-caption {
    display: none;
}

.proof-strip {
    display: grid;
    gap: 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0 1rem;
}

.proof-strip > div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.65rem;
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding: 1.1rem 0;
}

.proof-strip > div:last-child {
    border-bottom: 0;
}

.proof-strip__number {
    color: var(--plum);
    font-family: var(--font-serif);
    font-size: 0.78rem;
    font-weight: 700;
}

.proof-strip p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
}

.proof-strip strong {
    color: var(--ink);
}

.proof-strip p span {
    color: var(--muted);
}

.section {
    padding: clamp(4rem, 10vw, 7.5rem) 1rem;
}

.section-heading {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p,
.section-heading--split > p {
    max-width: 520px;
}

.section--process {
    margin-top: clamp(3rem, 8vw, 6rem);
    border-radius: var(--radius-large);
    background: var(--sage-dark);
    color: #fff;
}

.section--process h2,
.section--process h3,
.section--process p,
.section--process a {
    color: #fff;
}

.section--process .eyebrow,
.section--process .process-list > li > span {
    color: #dfcda9;
}

.section--process .section-heading--split > p,
.section--process .process-list p {
    color: rgba(255, 255, 255, 0.75);
}

.process-list {
    display: grid;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.process-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
}

.process-list li > span {
    display: block;
    margin-bottom: 1.6rem;
    font-family: var(--font-serif);
    font-size: 0.8rem;
}

.process-list h3 {
    margin-bottom: 0.4rem;
}

.process-list p {
    margin: 0;
}

.product-grid {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

.product-card {
    align-self: start;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.product-card__card-link {
    display: block;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.product-card__card-link:focus-visible {
    outline: 3px solid var(--plum);
    outline-offset: -3px;
}

.product-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--paper-deep);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.product-card__image-link .media-placeholder {
    height: 100%;
    min-height: 0;
}

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

.product-card__body {
    padding: 1.35rem;
}

.product-card__body > :last-child {
    margin-bottom: 0;
}

.product-card__body h3 {
    margin-bottom: 0.35rem;
}

.product-card__body h3 a {
    color: var(--ink);
    text-decoration: none;
}

.product-card__price {
    color: var(--ink);
}

.product-card__body > p:not(.eyebrow):not(.product-card__price) {
    font-size: 0.92rem;
}

.section-action {
    margin: 2rem 0 0;
    text-align: center;
}

.section--gallery {
    border-top: 1px solid var(--line);
}

.editorial-gallery {
    display: grid;
    gap: 1rem;
}

.editorial-gallery figure {
    margin: 0;
}

.editorial-gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.editorial-gallery figcaption {
    padding-top: 0.55rem;
}

.trust-story {
    display: grid;
    gap: 2.5rem;
    border-top: 1px solid var(--line);
}

.trust-story__content {
    display: grid;
    gap: 1.6rem;
}

.trust-story__content > div {
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
}

.line-icon {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    place-items: center;
    border: 1px solid var(--plum);
    border-radius: 50%;
    color: var(--plum);
    font-size: 0.68rem;
    font-weight: 800;
}

.help-panel {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: clamp(3rem, 8vw, 6rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: var(--plum-soft);
    padding: clamp(1.5rem, 5vw, 3rem);
}

.help-panel h2,
.help-panel p:last-child {
    margin-bottom: 0;
}

.faq-preview {
    border-top: 1px solid var(--line);
}

.faq-list details,
.detail-accordions details {
    border-top: 1px solid var(--line);
}

.faq-list details:last-child,
.detail-accordions details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary,
.detail-accordions summary {
    position: relative;
    min-height: 58px;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    padding: 1.15rem 2.6rem 1.15rem 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 650;
}

.faq-list summary::after,
.detail-accordions summary::after {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    transform: translateY(-50%);
    color: var(--plum);
    content: "+";
    font-family: var(--font-sans);
    font-size: 1.4rem;
}

.faq-list details[open] summary::after,
.detail-accordions details[open] summary::after {
    content: "−";
}

.faq-list summary::-webkit-details-marker,
.detail-accordions summary::-webkit-details-marker {
    display: none;
}

.faq-list details p,
.detail-accordions details > div {
    max-width: 680px;
    padding: 0 2rem 1.2rem 0;
}

.final-cta {
    display: grid;
    overflow: hidden;
    margin-bottom: clamp(3rem, 8vw, 6rem);
    background: var(--ink);
}

.final-cta__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.final-cta__copy {
    align-self: center;
    padding: clamp(2rem, 7vw, 4.5rem);
}

.final-cta__copy h2,
.final-cta__copy p,
.final-cta__copy a {
    color: #fff;
}

.final-cta__copy .eyebrow {
    color: #d9bd87;
}

.final-cta__copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.page-intro {
    max-width: 900px;
    margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.page-intro h1 {
    max-width: 11ch;
}

.page-intro > p:not(.eyebrow) {
    max-width: 680px;
    font-size: 1.1rem;
}

.page-intro--compact {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.page-intro--compact h1 {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.inline-assurances {
    display: grid;
    gap: 0.55rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.inline-assurances li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
}

.inline-assurances li::before {
    position: absolute;
    left: 0;
    color: var(--sage);
    content: "✓";
    font-weight: 900;
}

.shop-list {
    margin-bottom: clamp(4rem, 9vw, 7rem);
}

.extras-list,
.extra-compatible-products {
    margin-bottom: clamp(4rem, 9vw, 7rem);
}

.extras-grid {
    display: grid;
    gap: 1.35rem;
}

.public-extra-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.public-extra-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--paper-deep);
    text-decoration: none;
}

.public-extra-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.public-extra-card__image-link .media-placeholder {
    height: 100%;
    min-height: 0;
}

.public-extra-card:hover .public-extra-card__image {
    transform: scale(1.025);
}

.public-extra-card__body {
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem;
}

.public-extra-card__body > :last-child {
    margin-bottom: 0;
}

.public-extra-card__heading {
    display: flex;
    gap: 1rem;
    align-items: start;
    justify-content: space-between;
}

.public-extra-card__heading h3 {
    margin-bottom: 0;
}

.public-extra-card__heading a {
    color: var(--ink);
    text-decoration: none;
}

.public-extra-card__price,
.extra-detail-price {
    color: var(--plum-dark);
    font-weight: 800;
}

.public-extra-card__price {
    flex: 0 0 auto;
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
}

.compatible-keepsakes {
    display: grid;
    gap: 0.45rem;
    border-top: 1px solid var(--line);
    padding-top: 0.85rem;
}

.compatible-keepsakes > span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compatible-keepsakes ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compatible-keepsakes a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    padding: 0.3rem 0.7rem;
    font-size: 0.82rem;
    text-decoration: none;
}

.public-extra-card__link {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--ink);
    padding-top: 0.85rem;
    text-decoration: none;
}

.extra-detail-layout {
    display: grid;
    gap: clamp(2rem, 6vw, 4rem);
    margin-bottom: clamp(4rem, 9vw, 7rem);
}

.extra-detail-media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--paper-deep);
}

.extra-detail-media img,
.extra-detail-media .media-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extra-detail-copy {
    align-self: center;
}

.extra-detail-copy h1 {
    max-width: 12ch;
}

.extra-detail-copy > p:not(.eyebrow):not(.extra-detail-price) {
    max-width: 620px;
    font-size: 1.05rem;
}

.help-panel--shop {
    width: 100%;
    margin-bottom: 0;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 2rem;
    text-align: center;
}

.empty-state h3,
.empty-state p {
    margin-right: auto;
    margin-left: auto;
}

.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    display: inline-flex;
    gap: 0.4rem;
    min-height: 44px;
    align-items: center;
    font-size: 0.85rem;
}

.pdp-mobile-intro h1,
.pdp-desktop-intro h1 {
    max-width: 12ch;
    margin-bottom: 0.35rem;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.pdp-desktop-intro {
    display: none;
}

.pdp-price {
    margin-bottom: 0.1rem;
    color: var(--ink);
    font-size: 1.05rem;
}

.pdp-price strong {
    font-family: var(--font-serif);
    font-size: 1.7rem;
}

.delivery-note {
    font-size: 0.82rem;
}

.pdp-layout {
    display: grid;
    gap: 2rem;
}

.product-gallery {
    min-width: 0;
}

.product-gallery__stage {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
}

.product-gallery__stage > a {
    display: block;
    color: var(--ink);
}

.product-gallery__stage img,
.product-gallery__stage .media-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.product-gallery__zoom {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.94);
    box-shadow: var(--shadow-small);
    color: var(--ink);
    padding: 0.55rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.product-gallery__thumbs {
    display: flex;
    overflow-x: auto;
    gap: 0.6rem;
    padding: 0.75rem 0 0.35rem;
    scrollbar-width: thin;
}

.product-gallery__thumb {
    flex: 0 0 68px;
    width: 68px;
    min-height: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    background: transparent;
    padding: 0;
}

.product-gallery__thumb:hover,
.product-gallery__thumb[aria-current="true"] {
    border-color: var(--plum);
    background: transparent;
}

.product-gallery__thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-gallery .image-caption {
    padding-top: 0.45rem;
}

.pdp-panel {
    min-width: 0;
}

.pdp-description {
    color: #524944;
    font-size: 1.05rem;
}

.decision-facts,
.post-cta-assurances,
.order-summary__assurances {
    display: grid;
    gap: 0.65rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.decision-facts li,
.post-cta-assurances li,
.order-summary__assurances li {
    position: relative;
    color: var(--ink);
    padding-left: 1.45rem;
    font-size: 0.86rem;
}

.decision-facts li::before,
.post-cta-assurances li::before,
.order-summary__assurances li::before {
    position: absolute;
    left: 0;
    color: var(--sage);
    content: "✓";
    font-weight: 900;
}

.suitability-panel {
    margin: 1.75rem 0;
    border: 1px solid #c8d2c8;
    border-radius: var(--radius);
    background: var(--sage-soft);
    padding: 1.25rem;
}

.suitability-panel h2,
.product-configurator h2 {
    font-size: 1.65rem;
}

.suitability-panel p:not(.eyebrow) {
    font-size: 0.9rem;
}

.product-configurator {
    margin: 1.75rem 0;
    border-top: 1px solid var(--line);
    padding-top: 1.75rem;
}

.configurator-heading > p:last-child {
    font-size: 0.9rem;
}

.extra-options,
.cart-extra-options {
    display: grid;
    gap: 0.7rem;
    margin: 0 0 1.25rem;
    border: 0;
    padding: 0;
}

.extra-card {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface);
}

.extra-card:has(input:checked) {
    border-color: var(--sage);
    box-shadow: 0 0 0 1px var(--sage);
    background: var(--sage-soft);
}

.extra-card > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.extra-card__control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem;
}

.extra-card input,
.cart-extra-options input,
.checkout-acknowledgement input {
    width: 20px;
    height: 20px;
    margin: 0.12rem 0 0;
    accent-color: var(--plum);
}

.extra-card small,
.cart-extra-options small {
    display: block;
    color: var(--muted);
    font-weight: 500;
}

.extra-card b {
    color: var(--ink);
    font-size: 0.85rem;
    white-space: nowrap;
}

.no-extras {
    border: 1px dashed var(--line);
    padding: 1rem;
    font-size: 0.9rem;
}

.price-summary {
    margin: 1.25rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
}

.price-summary > div,
.order-summary__prices > div {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.34rem 0;
    color: var(--muted);
}

.price-summary > div[hidden] {
    display: none;
}

.price-summary__total,
.order-summary__total {
    margin-top: 0.55rem;
    border-top: 1px solid var(--line);
    color: var(--ink) !important;
    padding-top: 0.9rem !important;
    font-size: 1.08rem;
}

.form-reassurance {
    margin: 0.75rem 0 0;
    font-size: 0.76rem;
    text-align: center;
}

.post-cta-assurances {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
}

.product-details,
.related-products {
    margin-top: clamp(4rem, 9vw, 7rem);
    border-top: 1px solid var(--line);
    padding-top: clamp(3rem, 7vw, 5rem);
}

.product-details__intro {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.journey-list {
    display: grid;
    gap: 0;
    margin: 0 0 3rem;
    padding: 0;
    list-style: none;
}

.journey-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding: 1.25rem 0;
}

.journey-list li > span {
    color: var(--plum);
    font-family: var(--font-serif);
    font-size: 0.8rem;
}

.journey-list h3,
.journey-list p {
    margin-bottom: 0.35rem;
}

.detail-accordions {
    max-width: 860px;
}

.cart-layout {
    display: grid;
    gap: 1.5rem;
}

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.cart-item__top {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
}

.cart-item__image {
    overflow: hidden;
    border-radius: var(--radius-small);
    background: var(--paper-deep);
}

.cart-item__image img,
.cart-item__image .media-placeholder {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    padding: 0;
    font-size: 0.75rem;
}

.cart-item__heading h2 {
    margin-bottom: 0.35rem;
    font-size: 1.45rem;
}

.cart-item__heading h2 a {
    color: var(--ink);
    text-decoration: none;
}

.cart-item__price {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}

.cart-item__summary {
    border-top: 1px solid var(--paper-deep);
    padding: 0.8rem 1rem;
}

.cart-item__summary > div {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.3rem 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.cart-item__summary small {
    display: block;
}

.cart-item__saved-note {
    display: grid !important;
    border-top: 1px solid var(--paper-deep);
    margin-top: 0.5rem;
    padding-top: 0.75rem !important;
}

.cart-item__editor {
    border-top: 1px solid var(--paper-deep);
}

.cart-item__editor summary {
    min-height: 52px;
    cursor: pointer;
    color: var(--plum-dark);
    padding: 0.85rem 1rem;
    font-weight: 800;
}

.cart-item__editor-content {
    display: grid;
    gap: 1.5rem;
    border-top: 1px solid var(--paper-deep);
    background: var(--paper);
    padding: 1rem;
}

.cart-item__editor-content form {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.cart-extra-options legend {
    margin-bottom: 0.6rem;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-extra-options label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface);
    padding: 0.8rem;
}

.cart-item__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--paper-deep);
    padding: 0.65rem 1rem;
}

.cart-item__actions form {
    margin: 0;
}

.order-summary,
.checkout-summary,
.confirmation-summary,
.order-address {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
    padding: 1.35rem;
}

.order-summary h2,
.checkout-summary h2,
.confirmation-summary h2,
.order-address h2 {
    font-size: 1.7rem;
}

.order-summary__note,
.confirmation-summary__note {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    text-align: center;
}

.order-summary__assurances {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.cart-clothing-check {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
    border-left: 4px solid var(--sage);
    background: var(--sage-soft);
    padding: 1.5rem;
}

.cart-clothing-check h2,
.cart-clothing-check p {
    margin-bottom: 0;
}

.empty-cart {
    max-width: 620px;
    margin: clamp(2rem, 8vw, 7rem) auto;
    text-align: center;
}

.empty-cart__mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
}

.empty-cart h1,
.empty-cart h2,
.empty-cart p {
    margin-right: auto;
    margin-left: auto;
}

.checkout-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 620px;
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
}

.checkout-progress li {
    position: relative;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
}

.checkout-progress li:not(:last-child)::after {
    position: absolute;
    top: 14px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 1px;
    background: var(--line);
    content: "";
}

.checkout-progress span {
    display: grid;
    z-index: 1;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    font-weight: 800;
}

.checkout-progress li[aria-current="step"],
.checkout-progress li.is-done {
    color: var(--ink);
    font-weight: 800;
}

.checkout-progress li[aria-current="step"] span,
.checkout-progress li.is-done span {
    border-color: var(--plum);
    background: var(--plum);
    color: #fff;
}

.checkout-layout {
    display: grid;
    gap: 1.5rem;
}

.checkout-form {
    display: grid;
    gap: 1rem;
}

.form-section {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 1.25rem;
}

.form-section__number {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--plum);
    font-family: var(--font-serif);
    font-size: 0.78rem;
    font-weight: 800;
}

.form-section__heading {
    margin-bottom: 1.25rem;
}

.form-section__heading h2 {
    margin-bottom: 0.35rem;
    font-size: 1.6rem;
}

.form-section__heading p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field:last-child {
    margin-bottom: 0;
}

label {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.optional {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #bfb3a8;
    border-radius: var(--radius-small);
    background: #fff;
    padding: 0.72rem 0.8rem;
}

textarea {
    min-height: 128px;
    resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--muted);
}

.field-help {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.form-field--error input,
.form-field--error select,
.form-field--error textarea,
.checkout-acknowledgement.form-field--error {
    border-color: var(--danger);
}

.field-error .errorlist,
.form-error-summary .errorlist {
    margin: 0.4rem 0 0;
    padding-left: 1.25rem;
}

.field-error li,
.form-error-summary li {
    color: var(--danger);
    font-size: 0.8rem;
}

.form-error-summary {
    max-width: 780px;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--danger);
    background: #f8e8e8;
    padding: 1rem 1.25rem;
}

.form-error-summary h2 {
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
}

.form-error-summary p {
    margin-bottom: 0;
}

.checkout-acknowledgement {
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    padding: 1rem;
}

.checkout-acknowledgement label {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.7rem;
    align-items: start;
    margin: 0;
    cursor: pointer;
}

.legal-links {
    margin: 0.8rem 0 0;
    font-size: 0.78rem;
}

.checkout-submit {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-deep);
    padding: 1.25rem;
}

.checkout-submit p {
    font-size: 0.82rem;
}

.checkout-summary__items article {
    border-top: 1px solid var(--line);
    padding: 0.9rem 0;
}

.checkout-summary__items article > div,
.confirmation-item > div:first-child {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.checkout-summary__items h3,
.confirmation-item h3 {
    margin: 0;
    font-size: 1.05rem;
}

.checkout-summary__items p,
.confirmation-item p {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
}

.success-hero {
    max-width: 800px;
    margin: 1rem 0 clamp(3rem, 7vw, 5rem);
}

.success-hero__mark {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-size: 1.4rem;
}

.success-hero h1 {
    font-size: clamp(2.7rem, 8vw, 5rem);
}

.success-hero__lead {
    max-width: 670px;
    color: #514842;
    font-size: 1.1rem;
}

.success-layout {
    display: grid;
    gap: 1.5rem;
}

.next-steps {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

.next-steps > h2 {
    font-size: 2rem;
}

.next-steps ol {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.next-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.85rem;
    border-top: 1px solid var(--line);
    padding: 1.15rem 0;
}

.next-steps li > span {
    color: var(--plum);
    font-family: var(--font-serif);
    font-size: 0.78rem;
}

.next-steps h3,
.next-steps p {
    margin-bottom: 0.35rem;
}

.status-notice,
.posting-address,
.tracking-callout {
    border-left: 4px solid var(--sage);
    background: var(--sage-soft);
    color: var(--ink);
    padding: 1rem;
}

.status-notice--cancelled {
    border-color: var(--danger);
    background: #f8e8e8;
}

.order-meta {
    margin: 1rem 0;
}

.order-meta > div {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 0.7rem 0;
}

.order-meta dt,
.order-meta dd {
    margin: 0;
    font-size: 0.85rem;
}

.order-meta dd {
    color: var(--ink);
    font-weight: 800;
    text-align: right;
}

.confirmation-details {
    margin: clamp(4rem, 9vw, 7rem) 0;
    border-top: 1px solid var(--line);
    padding-top: clamp(3rem, 7vw, 5rem);
}

.confirmation-details__grid {
    display: grid;
    gap: 1.5rem;
}

.confirmation-item,
.delivery-address {
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 1.25rem;
}

.confirmation-item + .confirmation-item {
    border-top: 0;
}

.delivery-address h3 {
    font-size: 1.3rem;
}

.account-orders {
    display: grid;
    gap: 1rem;
}

.account-order-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 1.25rem;
}

.account-order-card__heading {
    display: flex;
    gap: 1rem;
    align-items: start;
    justify-content: space-between;
}

.account-order-card__heading h2 {
    font-size: 1.6rem;
}

.status-pill {
    display: inline-flex;
    border-radius: 999px;
    background: var(--sage-soft);
    color: var(--sage-dark);
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 850;
    white-space: nowrap;
}

.status-pill--cancelled {
    background: #f8e8e8;
    color: var(--danger);
}

.account-order-card__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.account-order-card__body > div {
    padding: 0.8rem 0.4rem;
}

.account-order-card__body span,
.account-order-card__body strong {
    display: block;
}

.account-order-card__body span {
    color: var(--muted);
    font-size: 0.68rem;
}

.account-order-card__body strong {
    color: var(--ink);
    font-size: 0.84rem;
}

.order-detail-hero {
    display: flex;
    gap: 1.5rem;
    align-items: end;
    justify-content: space-between;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.order-detail-hero h1 {
    font-size: clamp(2.7rem, 8vw, 5rem);
}

.order-detail-total {
    text-align: right;
}

.order-detail-total span,
.order-detail-total strong {
    display: block;
}

.order-detail-total span {
    color: var(--muted);
    font-size: 0.75rem;
}

.order-detail-total strong {
    font-family: var(--font-serif);
    font-size: 1.7rem;
}

.order-progress {
    margin-bottom: clamp(4rem, 8vw, 6rem);
    border-top: 1px solid var(--line);
    padding-top: 2.5rem;
}

.status-timeline {
    display: grid;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.status-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.8rem;
    min-height: 82px;
}

.status-timeline li:not(:last-child)::before {
    position: absolute;
    top: 34px;
    bottom: 0;
    left: 16px;
    width: 1px;
    background: var(--line);
    content: "";
}

.status-timeline__marker {
    display: grid;
    z-index: 1;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
}

.status-timeline__done .status-timeline__marker,
.status-timeline__current .status-timeline__marker {
    border-color: var(--sage);
    background: var(--sage);
    color: #fff;
}

.status-timeline__current h3 {
    color: var(--plum-dark);
}

.status-timeline h3,
.status-timeline p {
    margin-bottom: 0.2rem;
}

.status-timeline p {
    font-size: 0.78rem;
}

.order-detail-layout {
    display: grid;
    gap: 1.5rem;
}

.order-keepsakes {
    display: grid;
    gap: 1rem;
}

.order-keepsakes article {
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 1.25rem;
}

.order-keepsake__heading,
.order-keepsake__prices p {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.order-keepsake__heading h3 {
    margin-bottom: 0;
}

.order-keepsake__prices {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
}

.order-keepsake__prices p {
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
}

.saved-instructions {
    margin-top: 1rem;
    border-left: 3px solid var(--sage);
    background: var(--sage-soft);
    padding: 0.8rem;
}

.saved-instructions h4,
.saved-instructions p {
    margin-bottom: 0.25rem;
}

.site-main > article,
.site-main > form:not(.checkout-form) {
    width: min(100%, 840px);
    margin-right: auto;
    margin-left: auto;
}

.site-main > article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: clamp(1.25rem, 5vw, 3rem);
}

.site-main > article h1 {
    font-size: clamp(2.4rem, 7vw, 4.3rem);
}

.site-main > article section {
    margin-top: 2.25rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
}

.site-main > article section h2 {
    font-size: 1.55rem;
}

.site-main > form:not(.checkout-form) {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
    padding: clamp(1.25rem, 5vw, 2rem);
}

.site-main > form p {
    margin-bottom: 1rem;
}

.trust-panel {
    border: 1px solid #c8d2c8;
    border-radius: var(--radius);
    background: var(--sage-soft);
    padding: 1.25rem;
}

.trust-panel h2 {
    font-size: 1.45rem;
}

.trust-list {
    padding-left: 1.25rem;
}

.cookie-consent-banner {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 1rem;
}

.cookie-consent-inner,
.cookie-consent-actions {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}

.cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-consent-copy {
    margin: 0;
    color: var(--ink);
    font-size: 0.85rem;
}

.site-footer .cookie-consent-copy {
    color: var(--ink);
}

.site-footer .cookie-consent-banner button {
    color: var(--ink);
}

.cookie-consent-actions form {
    min-width: 0;
    width: 100%;
    margin: 0;
}

.cookie-consent-button {
    width: 100%;
    min-height: 42px;
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

@media (max-width: 359px) {
    .cookie-consent-actions {
        grid-template-columns: 1fr;
    }
}

.cookie-settings {
    margin: 0;
    border: 0;
    padding: 0;
}

.cookie-settings summary {
    min-height: 0;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.25;
}

.cookie-settings summary::-webkit-details-marker {
    display: none;
}

.site-footer {
    margin-top: clamp(1.75rem, 5vw, 3.5rem);
    background: #282421;
    color: #fff;
}

.page-home .site-footer {
    margin-top: 0;
}

.site-footer__inner {
    display: flex;
    gap: 0.5rem 1.4rem;
    flex-wrap: wrap;
    align-items: baseline;
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 0.65rem 1rem 0.55rem;
}

.site-footer h2,
.site-footer p,
.site-footer a,
.site-footer summary {
    color: #fff;
}

.site-footer__brand {
    display: flex;
    gap: 0.2rem 0.75rem;
    flex-wrap: wrap;
    align-items: baseline;
    flex: 0 1 auto;
}

.site-footer__brand-name {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
}

.site-footer__brand-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.2;
}

.site-footer__nav {
    display: flex;
    gap: 0.45rem 1.4rem;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: baseline;
}

.site-footer__nav > div {
    display: flex;
    gap: 0.25rem 0.7rem;
    flex-wrap: wrap;
    align-items: baseline;
}

.site-footer__nav h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    line-height: 1.25;
    text-decoration-color: rgba(255, 255, 255, 0.25);
}

.site-footer .cookie-settings {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer .cookie-settings[open] {
    flex-basis: 100%;
    max-width: 28rem;
}

.site-footer .cookie-settings summary {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.25);
    text-underline-offset: 0.18em;
}

.site-footer .cookie-settings p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    line-height: 1.35;
}

.site-footer .cookie-settings .cookie-consent-actions {
    max-width: 21rem;
    margin-top: 0.45rem;
    gap: 0.45rem;
}

.social-link {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    line-height: 1.25;
}

.social-link svg,
.facebook-action svg {
    display: block;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
    vertical-align: middle;
}

.site-footer__fineprint {
    display: flex;
    gap: 0.35rem 1rem;
    flex: 0 0 100%;
    flex-wrap: wrap;
    margin-top: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.35rem;
}

.site-footer__fineprint p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    line-height: 1.25;
}

@media (min-width: 540px) {
    .site-brand__tagline {
        display: block;
    }

    .reassurance-bar__inner {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }

    .reassurance-bar__inner span:not(:first-child) {
        display: inline;
    }

    .reassurance-bar__inner span + span::before {
        margin-right: 1.5rem;
        color: rgba(255, 255, 255, 0.4);
        content: "•";
    }

    .product-grid,
    .extras-grid,
    .editorial-gallery,
    .account-orders {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-panel {
        grid-template-columns: 1fr auto;
    }

    .inline-assurances {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1.4rem;
    }

    .site-footer__nav {
        gap: 0.45rem 1.6rem;
    }

    .site-footer__fineprint {
        flex-direction: row;
    }
}

@media (min-width: 760px) {
    .site-header__inner {
        min-height: 76px;
        padding: 0.7rem 1.25rem;
    }

    .site-main {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .home-hero,
    .proof-strip,
    .section,
    .final-cta {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .home-hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(2rem, 6vw, 5rem);
        align-items: center;
        padding-bottom: clamp(3rem, 7vw, 5rem);
    }

    .home-hero__copy {
        grid-column: 1;
        grid-row: 1;
        padding-bottom: 0;
    }

    .home-hero__media {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }

    .home-hero__media img,
    .home-hero__media .media-placeholder {
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 720px;
        object-position: center;
    }

    .home-hero__media .image-caption {
        display: block;
    }

    .cookie-consent-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: min(100%, 980px);
        margin: 0 auto;
    }

    .cookie-consent-actions {
        display: flex;
        flex: 0 0 auto;
        flex-direction: row;
    }

    .cookie-consent-button {
        width: auto;
    }

    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .proof-strip > div:nth-child(odd) {
        border-right: 1px solid var(--line);
        padding-right: 1.25rem;
    }

    .proof-strip > div:nth-child(even) {
        padding-left: 1.25rem;
    }

    .proof-strip > div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .section-heading--split {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
        gap: 2.5rem;
        align-items: end;
    }

    .section-heading--split > p {
        margin-bottom: 0;
    }

    .extra-detail-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
        align-items: center;
    }

    .process-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-list li {
        min-height: 240px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
    }

    .process-list li:first-child {
        padding-left: 0;
    }

    .process-list li:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .trust-story {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        gap: 4rem;
    }

    .trust-story__heading {
        position: sticky;
        top: 120px;
        align-self: start;
    }

    .faq-preview {
        display: grid;
        grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
        gap: 4rem;
    }

    .final-cta {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .final-cta__image img {
        height: 100%;
        min-height: 520px;
        aspect-ratio: auto;
    }

    .pdp-mobile-intro {
        display: none;
    }

    .pdp-desktop-intro {
        display: block;
    }

    .pdp-layout {
        grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
        gap: clamp(2rem, 5vw, 4.5rem);
        align-items: start;
    }

    .pdp-panel {
        position: sticky;
        top: 105px;
        align-self: start;
    }

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

    .journey-list li:nth-child(odd) {
        border-right: 1px solid var(--line);
        padding-right: 1.5rem;
    }

    .journey-list li:nth-child(even) {
        padding-left: 1.5rem;
    }

    .cart-clothing-check,
    .confirmation-details__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .success-layout,
    .order-detail-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
        gap: 2.5rem;
        align-items: start;
    }

    .confirmation-summary,
    .order-address {
        position: sticky;
        top: 105px;
    }

    .status-timeline {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .status-timeline li {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        min-height: auto;
        padding-right: 1rem;
    }

    .status-timeline li:not(:last-child)::before {
        top: 16px;
        right: 0;
        bottom: auto;
        left: 34px;
        width: calc(100% - 34px);
        height: 1px;
    }
}

@media (min-width: 960px) {
    .site-header__inner {
        grid-template-columns: minmax(260px, 1fr) auto auto;
        gap: 1.5rem;
    }

    .site-nav--desktop {
        display: flex;
    }

    .site-menu {
        display: none;
    }

    .proof-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .proof-strip > div,
    .proof-strip > div:nth-child(odd),
    .proof-strip > div:nth-child(even) {
        border-right: 1px solid var(--line);
        border-bottom: 0;
        padding: 1.4rem;
    }

    .proof-strip > div:first-child {
        padding-left: 0;
    }

    .proof-strip > div:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-grid:not(.product-grid--shop) .product-card:first-child:nth-last-child(1) {
        max-width: 390px;
    }

    .editorial-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .editorial-gallery figure:nth-child(2) {
        transform: translateY(2.5rem);
    }

    .cart-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
        gap: 2rem;
        align-items: start;
    }

    .order-summary,
    .checkout-summary {
        position: sticky;
        top: 105px;
    }

    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
        gap: 2.5rem;
        align-items: start;
    }

    .form-section {
        display: grid;
        grid-template-columns: 50px 1fr;
        column-gap: 1rem;
        padding: 1.75rem;
    }

    .form-section__number {
        grid-row: 1 / 20;
    }

    .form-section__heading,
    .form-field,
    .checkout-acknowledgement,
    .legal-links {
        grid-column: 2;
    }

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

@media (max-width: 420px) {
    .site-header__inner {
        gap: 0.35rem;
        padding-right: 0.55rem;
        padding-left: 0.55rem;
    }

    .site-brand {
        gap: 0.4rem;
    }

    .site-brand__mark {
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
    }

    .site-brand__name {
        font-size: clamp(0.86rem, 4.25vw, 1rem);
    }

    .site-basket > span:not(.site-basket__count) {
        display: none;
    }

    .site-basket {
        min-width: 44px;
    }

    .order-detail-hero {
        align-items: start;
        flex-direction: column;
    }

    .order-detail-total {
        text-align: left;
    }
}

@media print {
    .reassurance-bar,
    .site-header,
    .site-footer,
    .cookie-consent-banner,
    .breadcrumb,
    .button,
    button {
        display: none !important;
    }

    body,
    .site-main {
        background: #fff;
    }

    .site-main {
        width: 100%;
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Premium editorial storefront ------------------------------------------ */

.button span,
button span {
    color: inherit;
}

.button.button--light,
.button.button--light:visited,
.help-panel .button--light,
.final-cta__copy .button--light,
.site-footer .button--light {
    color: var(--ink);
}

.site-header {
    transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(248, 244, 237, 0.985);
    box-shadow: 0 12px 35px rgba(41, 37, 34, 0.07);
}

.site-menu summary {
    position: relative;
    z-index: 305;
    display: flex;
    gap: 0.55rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
}

.site-menu summary i,
.site-menu summary i::before,
.site-menu summary i::after {
    display: block;
    width: 14px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
}

.site-menu summary i {
    position: relative;
}

.site-menu summary i::before,
.site-menu summary i::after {
    position: absolute;
    left: 0;
}

.site-menu summary i::before {
    top: -4px;
}

.site-menu summary i::after {
    top: 4px;
}

.site-menu__close-label {
    display: none;
}

.site-menu[open] .site-menu__open-label {
    display: none;
}

.site-menu[open] .site-menu__close-label {
    display: inline;
}

.site-menu[open] summary {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.site-menu[open] summary i {
    background: transparent;
}

.site-menu[open] summary i::before,
.site-menu[open] summary i::after {
    top: 0;
}

.site-menu[open] summary i::before {
    transform: rotate(45deg);
}

.site-menu[open] summary i::after {
    transform: rotate(-45deg);
}

.site-menu__backdrop {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    cursor: default;
    border: 0;
    border-radius: 0;
    background: rgba(20, 18, 16, 0.48);
    padding: 0;
    backdrop-filter: blur(3px);
}

.site-menu__backdrop:hover {
    border: 0;
    background: rgba(20, 18, 16, 0.48);
}

.site-menu[open] .site-menu__backdrop {
    display: block;
}

.site-menu__panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 301;
    display: flex;
    width: min(90vw, 410px);
    height: 100dvh;
    overflow-y: auto;
    gap: 0;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    background: #302b28;
    box-shadow: -24px 0 70px rgba(18, 15, 14, 0.2);
    padding: clamp(6.5rem, 16vh, 9rem) clamp(1.5rem, 7vw, 3.25rem) 2rem;
}

.site-menu__eyebrow {
    margin-bottom: 1.5rem;
    color: #d9bd87;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-menu__panel a,
.site-menu__panel .site-nav__button {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    min-height: 58px;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: transparent;
    color: #fff;
    padding: 0.75rem 0;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 5vw, 1.65rem);
    font-weight: 600;
}

.site-menu__panel a > span {
    color: #d9bd87;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.site-menu__panel a:hover,
.site-menu__panel .site-nav__button:hover {
    background: transparent;
    color: #f2d7de;
}

.site-menu__panel .site-nav__button {
    grid-template-columns: 1fr;
    justify-content: start;
    text-align: left;
}

.site-menu__note {
    margin: auto 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.56);
    padding-top: 1.25rem;
    font-family: var(--font-serif);
    font-size: 0.9rem;
}

.menu-open {
    overflow: hidden;
}

.home-hero {
    position: relative;
    max-width: 1440px;
    padding-top: clamp(1.4rem, 5vw, 4.25rem);
}

.home-hero__copy {
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.1rem, 12vw, 7.5rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.home-hero__frame {
    position: relative;
    overflow: hidden;
    background: #ddd1c3;
}

.home-hero__frame::after {
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(22, 18, 15, 0.18));
    content: "";
    pointer-events: none;
}

.home-hero__media::before {
    top: -1.2rem;
    right: -1.2rem;
    width: 55%;
    height: 43%;
}

.home-hero__maker-note {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 2;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(36, 31, 28, 0.7);
    color: #fff;
    padding: 0.65rem 0.8rem;
    backdrop-filter: blur(8px);
    font-size: 0.65rem;
    letter-spacing: 0.07em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-hero__maker-note span,
.home-hero__maker-note strong {
    display: block;
    color: inherit;
}

.home-hero__maker-note strong {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.home-hero__scroll {
    display: none;
}

.proof-strip {
    background: rgba(255, 253, 249, 0.48);
}

.section--bleed {
    width: 100%;
    max-width: none;
}

.section--process {
    margin-top: clamp(4rem, 10vw, 8rem);
    border-radius: 0;
    padding: 0;
}

.process-editorial {
    display: grid;
    width: min(100%, 1440px);
    margin: 0 auto;
}

.process-editorial__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.process-editorial__visual img,
.process-editorial__visual .media-placeholder {
    width: 100%;
    height: clamp(340px, 112vw, 560px);
    object-fit: cover;
}

.process-editorial__visual > span {
    position: absolute;
    right: -0.1em;
    bottom: -0.08em;
    color: rgba(255, 255, 255, 0.17);
    font-family: var(--font-serif);
    font-size: clamp(3.4rem, 16vw, 8rem);
    line-height: 0.72;
    letter-spacing: -0.06em;
    pointer-events: none;
    text-align: right;
}

.process-editorial__content {
    padding: clamp(3rem, 9vw, 6.5rem) clamp(1rem, 7vw, 5.5rem);
}

.process-editorial__content .section-heading {
    margin-bottom: 2.5rem;
}

.section--process .process-list {
    margin-bottom: 2rem;
}

.section--process .process-list li {
    display: grid;
    grid-template-columns: 2.3rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1.2rem 0;
}

.section--process .process-list li > span {
    margin: 0.15rem 0 0;
}

.section--products .section-heading {
    max-width: 1080px;
}

.section--products .product-grid--featured {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.65rem;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.section--products .product-grid--featured .product-card {
    flex: 0 0 min(82vw, 22rem);
    scroll-snap-align: start;
}

.product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-card__image-link {
    position: relative;
}

.product-card__image-link::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(41, 37, 34, 0.08);
    content: "";
    pointer-events: none;
}

.product-card__body {
    padding: 1.25rem 0 0;
}

.product-card__heading {
    display: flex;
    gap: 1rem;
    align-items: start;
    justify-content: space-between;
}

.product-card__heading h3 {
    margin-bottom: 0;
}

.product-card__price {
    flex: 0 0 auto;
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
}

.product-card__description {
    max-width: 39ch;
}

.product-card__link {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--ink);
    padding-top: 0.8rem;
    text-decoration: none;
}

.product-card__link span:last-child {
    transition: transform 180ms ease;
}

.product-card__card-link:hover .product-card__link span:last-child,
.product-card__card-link:focus-visible .product-card__link span:last-child {
    transform: translate(3px, -3px);
}

.section--gallery {
    border: 0;
    background: #e8dfd3;
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.gallery-editorial {
    width: min(100%, 1440px);
    margin: 0 auto;
}

.gallery-editorial > .section-heading {
    padding: 0 1rem;
}

.gallery-editorial > .section-heading p:last-child {
    max-width: 560px;
}

.gallery-editorial .editorial-gallery {
    gap: 0.7rem;
}

.gallery-editorial .editorial-gallery figure {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.gallery-editorial .editorial-gallery img {
    height: 100%;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-editorial .editorial-gallery figure:hover img {
    transform: scale(1.025);
}

.trust-story__content > div {
    position: relative;
    padding-top: 1.6rem;
}

.trust-story .line-icon {
    border: 0;
    border-radius: 0;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.15rem;
}

.help-panel--editorial {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--plum-dark);
    color: #fff;
    padding: clamp(2rem, 7vw, 5rem);
}

.help-panel--editorial::after {
    position: absolute;
    right: -2rem;
    bottom: -5rem;
    color: rgba(255, 255, 255, 0.06);
    content: "?";
    font-family: var(--font-serif);
    font-size: 18rem;
    line-height: 1;
    pointer-events: none;
}

.help-panel--editorial > * {
    position: relative;
    z-index: 1;
}

.help-panel--editorial h2,
.help-panel--editorial p {
    color: #fff;
}

.help-panel--editorial .eyebrow {
    color: #e0bf87;
}

.help-panel--editorial p:last-child {
    max-width: 630px;
    color: rgba(255, 255, 255, 0.72);
}

.faq-list details[open] {
    background: rgba(255, 253, 249, 0.45);
}

.faq-list details[open] summary,
.faq-list details[open] p {
    padding-left: 1rem;
}

.final-cta {
    width: min(calc(100% - 2rem), 1440px);
    margin-bottom: clamp(4rem, 9vw, 8rem);
}

.final-cta__image {
    overflow: hidden;
}

.final-cta__image img {
    transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.final-cta:hover .final-cta__image img {
    transform: scale(1.02);
}

/* Product photography and configurator */

.product-gallery__viewport {
    overflow: hidden;
    background: var(--paper-deep);
    touch-action: pan-y pinch-zoom;
}

.product-gallery__track {
    display: flex;
}

.product-gallery__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    margin: 0;
}

.product-gallery__image-button {
    position: relative;
    display: block;
    height: 100%;
    color: var(--ink);
}

.product-gallery__slide img,
.product-gallery__slide .media-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}

.product-gallery__zoom {
    display: inline-flex;
    min-height: 42px;
    gap: 0.45rem;
    align-items: center;
    border: 1px solid rgba(41, 37, 34, 0.12);
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(8px);
}

.product-gallery__zoom svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.product-gallery__controls {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.8rem;
}

.product-gallery__controls button {
    width: 44px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    padding: 0;
}

.product-gallery__controls button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.product-gallery__controls p {
    margin: 0;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
}

.product-gallery__thumbs {
    gap: 0.7rem;
    padding-top: 0.9rem;
}

.product-gallery__thumb {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 0;
    opacity: 0.56;
    padding: 0 0 0.35rem;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}

.product-gallery__thumb:hover,
.product-gallery__thumb[aria-current="true"] {
    border-color: var(--plum);
    background: transparent;
    box-shadow: inset 0 -2px var(--plum);
    opacity: 1;
}

.gallery-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border: 0;
    background: #211e1c;
    color: #fff;
    padding: 0;
}

.gallery-dialog::backdrop {
    background: rgba(24, 21, 19, 0.94);
}

.gallery-dialog__inner {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    height: 100%;
    padding: 0.75rem;
}

.gallery-dialog__close {
    z-index: 1;
    justify-self: end;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    padding: 0.5rem 0.85rem;
}

.gallery-dialog__close:hover,
.gallery-dialog__controls button:hover {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
}

.gallery-dialog__stage {
    display: grid;
    min-height: 0;
    place-items: center;
    overflow: hidden;
}

.gallery-dialog__stage img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.gallery-dialog__controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    padding-top: 0.75rem;
}

.gallery-dialog__controls button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    padding: 0.55rem 0.75rem;
}

.gallery-dialog__controls button:last-child {
    justify-self: end;
}

.gallery-dialog__controls p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

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

.extra-card {
    position: relative;
    border-radius: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.extra-card:hover {
    border-color: #a99489;
    transform: translateY(-2px);
}

.extra-card:has(input:checked),
.extra-card[data-selected] {
    border-color: var(--plum);
    box-shadow: 0 0 0 1px var(--plum);
    background: #fbf2f4;
}

.extra-card__control {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    padding: 0.9rem;
}

.extra-card__control i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--plum);
    color: #fff;
    font-size: 0.7rem;
    font-style: normal;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 160ms ease, transform 160ms ease;
}

.extra-card:has(input:checked) .extra-card__control i,
.extra-card[data-selected] .extra-card__control i {
    opacity: 1;
    transform: scale(1);
}

.mobile-product-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 190;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(41, 37, 34, 0.13);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 -8px 18px rgba(41, 37, 34, 0.08);
    padding: 0.45rem max(0.75rem, env(safe-area-inset-right)) calc(0.45rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, visibility 220ms ease;
}

.mobile-product-bar.is-hidden {
    visibility: hidden;
    transform: translateY(110%);
}

.mobile-product-bar button {
    width: min(100%, 420px);
    min-height: 46px;
    flex-wrap: nowrap;
    border-radius: var(--radius-small);
    padding: 0.55rem 1rem;
    line-height: 1.1;
    white-space: nowrap;
}

/* Finishing and overflow resilience */

.site-footer__inner,
.site-footer__nav,
.site-footer__nav > div,
.site-footer__fineprint,
.cart-item,
.cart-item__top,
.cart-item__heading {
    min-width: 0;
}

.site-footer a,
.site-footer p,
.cart-item a,
.cart-item p,
.cart-item span {
    overflow-wrap: anywhere;
}

.cart-item__editor summary {
    position: relative;
    list-style: none;
    padding-right: 3rem;
}

.cart-item__image {
    align-self: start;
    aspect-ratio: 4 / 5;
}

.cart-item__image img,
.cart-item__image .media-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}

.final-cta__image {
    aspect-ratio: 4 / 3;
}

.final-cta__image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
}

.cart-item__editor summary::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    content: "+";
    font-size: 1.25rem;
}

.cart-item__editor[open] summary::after {
    content: "−";
}

.cart-item__editor summary::-webkit-details-marker {
    display: none;
}

.has-js [data-reveal],
.has-js .reveal-child {
    opacity: 1;
    transform: none;
}

.has-js [data-reveal="image"] {
    transform: none;
}

.has-js [data-reveal].is-revealed {
    animation: storefront-reveal 550ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.has-js [data-reveal].is-revealed .reveal-child {
    animation: storefront-reveal 550ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
    transition-delay: var(--reveal-delay, 0ms);
}

@keyframes storefront-reveal {
    from {
        opacity: 0.35;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 539px) {
    .home-hero__media {
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .home-hero__media::before {
        display: none;
    }

    .home-hero__maker-note {
        right: 0.75rem;
    }

    .gallery-editorial .editorial-gallery {
        display: flex;
        overflow-x: auto;
        padding: 0 1rem 0.65rem;
        scroll-padding: 1rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .gallery-editorial .editorial-gallery figure {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }

    .gallery-editorial .editorial-gallery figure:nth-child(even) {
        flex-basis: 70vw;
    }

    .cart-item__top {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .cart-item__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-item__actions form,
    .cart-item__actions .text-button {
        width: 100%;
    }

    .cart-item__actions .text-button {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (min-width: 540px) {
    .gallery-editorial > .section-heading {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .gallery-editorial .editorial-gallery {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        padding: 0 1.25rem;
    }

    .gallery-editorial .editorial-gallery figure:first-child {
        grid-row: span 2;
        aspect-ratio: 4 / 5;
    }

    .gallery-editorial .editorial-gallery figure:first-child img {
        aspect-ratio: 4 / 5;
    }

    .gallery-editorial .editorial-gallery figure:not(:first-child) img {
        aspect-ratio: 3 / 2;
    }

    .gallery-editorial .editorial-gallery figure:not(:first-child) {
        aspect-ratio: 3 / 2;
    }
}

@media (min-width: 760px) {
    .home-hero {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
        min-height: min(780px, calc(100vh - 110px));
        padding-top: clamp(2.5rem, 5vw, 5rem);
    }

    .home-hero__copy {
        align-self: center;
        padding: 1rem 0 4rem;
    }

    .home-hero h1 {
        margin-left: -0.04em;
        font-size: clamp(4.4rem, 7.5vw, 7.5rem);
    }

    .home-hero__media {
        align-self: stretch;
        padding-bottom: clamp(2.5rem, 6vw, 6rem);
    }

    .home-hero__frame,
    .home-hero__media img,
    .home-hero__media .media-placeholder {
        height: 100%;
        min-height: 560px;
        max-height: none;
    }

    .home-hero__media img,
    .home-hero__media .media-placeholder {
        aspect-ratio: auto;
    }

    .home-hero__maker-note {
        right: -1rem;
        bottom: 4rem;
        padding: 0.85rem 1rem;
    }

    .home-hero__scroll {
        position: absolute;
        bottom: 2.2rem;
        left: 1.25rem;
        display: inline-flex;
        gap: 0.7rem;
        align-items: center;
        color: var(--ink);
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .home-hero__scroll i {
        position: relative;
        display: block;
        width: 42px;
        height: 1px;
        background: var(--ink);
    }

    .home-hero__scroll i::after {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 7px;
        height: 7px;
        transform: rotate(45deg);
        border-right: 1px solid var(--ink);
        border-bottom: 1px solid var(--ink);
        content: "";
    }

    .process-editorial {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        align-items: stretch;
    }

    .process-editorial__visual img,
    .process-editorial__visual .media-placeholder {
        height: 100%;
        min-height: 780px;
    }

    .process-editorial__content {
        align-self: center;
    }

    .section--process .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section--process .process-list li,
    .section--process .process-list li:first-child,
    .section--process .process-list li:last-child {
        min-height: 0;
        border-right: 0;
        padding: 1.35rem 1rem 1.35rem 0;
    }

    .section--process .process-list li:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-left: 1.5rem;
    }

    .gallery-editorial .editorial-gallery {
        gap: 1rem;
    }

    .final-cta {
        width: min(calc(100% - 2.5rem), 1440px);
    }

    .final-cta__image {
        aspect-ratio: auto;
    }

    .final-cta__image img {
        min-height: 520px;
    }

    .gallery-dialog__inner {
        padding: 1.25rem 2rem;
    }

    .mobile-product-bar {
        display: none;
    }
}

@media (min-width: 960px) {
    .extras-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section--products .product-grid:not(.product-grid--shop) {
        display: grid;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: clamp(1.25rem, 2.2vw, 2.2rem);
    }

    .section--products .product-grid:not(.product-grid--shop) .product-card {
        flex: initial;
        grid-column: span 4;
        scroll-snap-align: none;
    }

    .section--products .product-grid:not(.product-grid--shop) .product-card:nth-child(3n + 2) {
        margin-top: 3rem;
    }

    .gallery-editorial {
        display: grid;
        grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
        gap: clamp(2rem, 5vw, 6rem);
        align-items: start;
        padding: 0 clamp(1.25rem, 4vw, 4.5rem);
    }

    .gallery-editorial > .section-heading {
        position: sticky;
        top: 120px;
        padding: 0;
    }

    .gallery-editorial .editorial-gallery {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        padding: 0;
    }

    .gallery-editorial .editorial-gallery figure:nth-child(2) {
        transform: translateY(4.5rem);
    }

    .gallery-editorial .editorial-gallery figure:nth-child(3) {
        margin-top: 4.5rem;
    }

    .pdp-layout {
        grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
    }

    .product-gallery__controls {
        grid-template-columns: 48px 1fr 48px;
    }

    .product-gallery__controls button {
        width: 48px;
        min-height: 48px;
    }

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

@media (min-width: 1200px) {
    .home-hero {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .home-hero__scroll {
        left: 2rem;
    }

    .process-editorial {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    .process-editorial__content {
        padding-right: clamp(4rem, 7vw, 8rem);
        padding-left: clamp(4rem, 7vw, 8rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .has-js [data-reveal],
    .has-js .reveal-child {
        opacity: 1 !important;
        transform: none !important;
    }
}
