:root {
    --ink: #202722;
    --ink-soft: #536058;
    --forest: #243c32;
    --forest-deep: #162820;
    --cream: #f4f1ea;
    --paper: #fcfbf8;
    --white: #fff;
    --walnut: #a66f46;
    --line: #dedbd3;
    --line-dark: rgba(255, 255, 255, .18);
    --shadow: 0 18px 55px rgba(31, 39, 34, .10);
    --shell: min(90rem, calc(100% - 3rem));
    --sticky-header-height: 5.5rem;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.04;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.6rem); }
h3 { line-height: 1.25; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    left: .75rem;
    padding: .75rem 1rem;
    color: var(--white);
    background: var(--forest-deep);
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #3f8ca0; outline-offset: 3px; }

.announcement { color: #e8eee9; background: var(--forest-deep); font-size: .79rem; letter-spacing: .025em; }
.announcement__inner { min-height: 2.35rem; display: flex; align-items: center; gap: 1.2rem; }
.announcement__item, .announcement__chat { display: inline-flex; align-items: center; gap: .48rem; }
.announcement__item svg, .announcement__chat svg { width: 1rem; height: 1rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.announcement__chat { margin-left: auto; color: var(--white); font-weight: 700; }
.announcement__label--mobile { display: none; }
.announcement__divider { width: 1px; height: .9rem; background: rgba(255,255,255,.35); }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgba(252, 251, 248, .96); backdrop-filter: blur(14px); transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.is-stuck { border-bottom-color: transparent; box-shadow: 0 10px 28px rgba(22, 40, 32, .12); }
.header-main { min-height: 5.5rem; display: grid; grid-template-columns: minmax(13rem, 1fr) auto minmax(11rem, 1fr); align-items: center; gap: 2rem; }
.brand { width: min(19rem, 100%); }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-size: .9rem; font-weight: 650; white-space: nowrap; }
.primary-nav a { position: relative; padding: 2.1rem 0; }
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 1.55rem;
    height: 1px;
    background: var(--walnut);
    transition: right .2s ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { right: 0; }
.primary-nav .nav-design { color: #8a5430; }
.header-actions { justify-self: end; display: flex; gap: 1.35rem; }
.header-actions a { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; font-weight: 700; }
.header-actions svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.55; }
.menu-button { position: relative; width: 2.8rem; height: 2.8rem; display: none; border: 0; color: var(--forest-deep); background: transparent; cursor: pointer; }
.menu-button > span:not(.sr-only) { position: absolute; top: 50%; left: .58rem; width: 1.64rem; height: 1.5px; display: block; background: currentColor; transition: opacity .2s ease, transform .32s cubic-bezier(.22, 1, .36, 1); }
.menu-button > span:nth-child(1) { transform: translateY(-.48rem); }
.menu-button > span:nth-child(3) { transform: translateY(.48rem); }
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }

.eyebrow { margin-bottom: .85rem; color: #805735; font-size: .73rem; font-weight: 800; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }
.eyebrow--light { color: #d8c3ae; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button {
    min-height: 3.25rem;
    padding: .85rem 1.45rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .105em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--forest-deep); background: var(--white); }
.button--light:hover { background: #eee7dc; }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.62); }
.button--outline-light:hover { color: var(--forest-deep); background: var(--white); border-color: var(--white); }
.button--dark { color: var(--white); background: var(--forest-deep); }
.button--dark:hover { background: var(--walnut); }
.button--outline-dark { color: var(--forest-deep); border-color: var(--forest-deep); }
.button--outline-dark:hover { color: var(--white); background: var(--forest-deep); }
.text-link { display: inline-flex; gap: .55rem; align-items: center; color: var(--forest-deep); font-size: .79rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { font-size: 1.15rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.25rem); }
.button--full { width: 100%; }

.hero { position: relative; min-height: clamp(37rem, 72vh, 49rem); display: grid; align-items: center; overflow: hidden; background: var(--forest-deep); }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center 55%; }
.hero__shade { background: linear-gradient(90deg, rgba(15, 29, 23, .91) 0%, rgba(15, 29, 23, .68) 39%, rgba(15, 29, 23, .12) 72%, transparent 100%); }
.hero__content { position: relative; z-index: 1; padding-block: 6.5rem; }
.hero__copy { max-width: 47rem; color: var(--white); }
.hero__copy h1 { max-width: 45rem; margin-bottom: 1.45rem; font-size: clamp(3.6rem, 6.8vw, 7rem); }
.hero__copy > p:not(.eyebrow) { max-width: 38rem; margin-bottom: 2rem; color: #e6e8e5; font-size: clamp(1.05rem, 1.4vw, 1.22rem); }

.confidence-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.confidence-grid > div { padding: 1.65rem 2rem; border-left: 1px solid var(--line); }
.confidence-grid > div:last-child { border-right: 1px solid var(--line); }
.confidence-grid strong, .confidence-grid span { display: block; }
.confidence-grid strong { margin-bottom: .15rem; font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.confidence-grid span { color: var(--ink-soft); font-size: .76rem; }

.section { padding-block: clamp(5rem, 8vw, 9rem); }
.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 7vw, 8rem); align-items: end; }
.section-heading--split > div:last-child { max-width: 33rem; padding-bottom: .35rem; }
.section-heading--split > div:last-child p { color: var(--ink-soft); }

.collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2vw, 2.1rem); }
.collection-card { min-width: 0; background: var(--white); box-shadow: 0 1px 0 var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.collection-card__image { position: relative; aspect-ratio: 1.22 / 1; display: block; overflow: hidden; background: #e8e7e2; }
.collection-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collection-card:hover .collection-card__image img { transform: scale(1.035); }
.collection-card__offer { position: absolute; top: 1rem; right: 1rem; padding: .45rem .65rem; color: var(--white); background: var(--forest-deep); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.collection-card__body { padding: 1.65rem 1.55rem 1.75rem; }
.collection-card__body .eyebrow { margin-bottom: .55rem; font-size: .65rem; }
.collection-card__body h3 { margin-bottom: .65rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.collection-card__body > p { min-height: 3.1rem; margin-bottom: 1.15rem; color: var(--ink-soft); font-size: .86rem; }
.collection-card__meta { min-height: 2rem; margin-bottom: 1.1rem; padding-top: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .71rem; }

.design-feature { padding: clamp(2rem, 4vw, 4rem) 0; color: var(--white); background: var(--forest); }
.design-feature__grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: clamp(3rem, 6vw, 7rem); }
.design-feature__image-wrap { position: relative; min-height: 41rem; overflow: hidden; }
.design-feature__image-wrap > img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.design-feature__badge { position: absolute; right: 0; bottom: 0; width: 11rem; padding: 1.3rem; color: var(--forest-deep); background: var(--cream); }
.design-feature__badge strong, .design-feature__badge span { display: block; }
.design-feature__badge strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.design-feature__badge span { color: var(--ink-soft); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.design-feature__copy { padding: 3rem 0; }
.design-feature__copy h2 { max-width: 34rem; margin-bottom: 1.4rem; }
.design-feature__copy > p:not(.eyebrow) { max-width: 35rem; color: #d9dfdb; }
.process-list { margin: 2.4rem 0 2.5rem; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.process-list li { padding: 1.15rem 0; display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; border-bottom: 1px solid var(--line-dark); }
.process-list li > span { color: #d8c3ae; font-family: var(--serif); font-size: 1.35rem; }
.process-list strong { display: block; margin-bottom: .1rem; font-size: .9rem; }
.process-list p { margin: 0; color: #b9c4bd; font-size: .8rem; }
.design-feature .button--dark { color: var(--forest-deep); background: var(--white); }

.quality-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 8rem); }
.quality-section__intro h2 { max-width: 31rem; }
.quality-section__intro > p:last-child { max-width: 29rem; color: var(--ink-soft); }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.quality-grid article { min-height: 15rem; padding: 1.8rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quality-grid article:nth-child(even) { border-right: 1px solid var(--line); }
.quality-grid article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.quality-grid article > span { color: var(--walnut); font-family: var(--serif); font-size: 1.2rem; }
.quality-grid h3 { margin: 2rem 0 .6rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.quality-grid p { margin: 0; color: var(--ink-soft); font-size: .83rem; }

.project-gallery { display: grid; grid-template-columns: 1.35fr .8fr 1fr; min-height: 32rem; background: var(--forest-deep); }
.project-gallery__item { position: relative; min-height: 32rem; overflow: hidden; border-right: 1px solid rgba(255,255,255,.25); }
.project-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.project-gallery__item:hover img { transform: scale(1.035); }
.project-gallery__item::after { content: ''; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.55)); }
.project-gallery__item span { position: absolute; z-index: 1; left: 1.4rem; bottom: 1.1rem; color: var(--white); font-family: var(--serif); font-size: 1.6rem; }
.closing-cta { padding-block: clamp(4.5rem, 7vw, 7rem); color: var(--white); background: var(--forest-deep); }
.closing-cta__inner { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.closing-cta h2 { margin-bottom: 0; }

.page-intro { padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 6rem); background: var(--cream); }
.page-intro__grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 5rem; }
.page-intro h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.page-intro__grid > p { max-width: 35rem; margin: 0 0 .8rem; color: var(--ink-soft); font-size: 1.08rem; }
.subpage-hero { position: relative; min-height: clamp(17rem, 29vw, 27.5rem); display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--forest-deep); }
.subpage-hero > img, .subpage-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.subpage-hero > img { object-fit: cover; }
.subpage-hero__shade { background: linear-gradient(90deg, rgba(15, 29, 23, .89), rgba(15, 29, 23, .38) 65%, rgba(15, 29, 23, .16)); }
.subpage-hero__content { position: relative; z-index: 1; padding-block: clamp(3.5rem, 6vw, 6rem); }
.subpage-hero .eyebrow { color: #d8c3ae; }
.subpage-hero h1 { margin: 0; font-size: clamp(3rem, 5.5vw, 5.5rem); }
.subpage-hero .page-intro__grid > p { color: #e6e8e5; }
#catalog-browser { scroll-margin-top: 1rem; }
.catalog-toolbar { min-height: 6rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; border-bottom: 1px solid var(--line); }
.filter-pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.filter-pills a { padding: .55rem .9rem; border: 1px solid transparent; color: var(--ink-soft); font-size: .75rem; font-weight: 750; letter-spacing: .045em; }
.filter-pills a:hover, .filter-pills a.is-active { color: var(--forest-deep); border-color: var(--forest-deep); }
.catalog-search { display: flex; min-width: min(24rem, 100%); border-bottom: 1px solid var(--ink); }
.catalog-search input { flex: 1; min-width: 0; padding: .7rem .3rem; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .88rem; }
.catalog-search button { padding: .7rem .25rem .7rem 1rem; border: 0; color: var(--forest-deep); background: transparent; font-size: .71rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.catalog-results { padding-top: 3rem; }
[data-async-results] { transition: opacity .18s ease, transform .18s ease; scroll-margin-top: 1.5rem; }
[data-async-results].is-loading { opacity: .42; transform: translateY(.35rem); pointer-events: none; }
[data-async-results].is-entering { animation: async-results-enter .3s ease both; }
@keyframes async-results-enter {
    from { opacity: .25; transform: translateY(.55rem); }
    to { opacity: 1; transform: translateY(0); }
}
.results-heading { margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.results-heading h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); }
.results-heading > span { color: var(--ink-soft); font-size: .78rem; }
.empty-state { padding: clamp(4rem, 8vw, 8rem) 2rem; text-align: center; background: var(--cream); }
.empty-state h1, .empty-state h2 { margin-bottom: 1rem; }
.empty-state p { color: var(--ink-soft); }
.empty-state--page { margin-block: 5rem; }

.collection-hero { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 43rem; background: var(--cream); }
.collection-hero > img { width: 100%; height: 100%; min-height: 43rem; object-fit: cover; }
.collection-hero__content { padding: clamp(3rem, 7vw, 7.5rem); display: flex; flex-direction: column; justify-content: center; }
.breadcrumbs { margin-bottom: 2.5rem; display: flex; flex-wrap: wrap; gap: .5rem; color: var(--ink-soft); font-size: .72rem; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: .2rem; }
.collection-hero h1 { margin-bottom: 1.5rem; }
.collection-hero__content > p:not(.eyebrow) { max-width: 38rem; color: var(--ink-soft); }
.collection-facts { margin: 2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cbc8c0; }
.collection-facts div { padding: 1rem 1rem 0 0; }
.collection-facts dt { color: var(--ink-soft); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.collection-facts dd { margin: .3rem 0 0; font-family: var(--serif); font-size: 1rem; line-height: 1.3; }
.collection-tools { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .55rem; }
.collection-tools button { min-height: 2.75rem; padding: .55rem .75rem; display: inline-flex; align-items: center; gap: .5rem; border: 1px solid #cbc8c0; color: var(--forest-deep); background: rgba(255,255,255,.45); font-size: .7rem; font-weight: 800; letter-spacing: .035em; cursor: pointer; }
.collection-tools button:hover { border-color: var(--forest-deep); background: var(--white); }
.collection-tools svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.collection-dialog { width: min(72rem, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; overflow: auto; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.32); }
.collection-dialog::backdrop { background: rgba(12, 20, 16, .72); backdrop-filter: blur(3px); }
.dialog-shell { padding: clamp(1.25rem, 4vw, 3rem); }
.dialog-heading { margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.dialog-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); }
.dialog-close { width: 2.8rem; height: 2.8rem; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink); background: var(--white); font-family: var(--serif); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.collection-slideshow__stage { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; background: #ecebe6; }
.collection-slideshow__stage img { width: 100%; height: 100%; object-fit: contain; }
.collection-slideshow__stage img[hidden] { display: none; }
.slideshow-arrow { position: absolute; top: 50%; width: 3rem; height: 3rem; display: grid; place-items: center; border: 0; color: var(--white); background: rgba(22,40,32,.82); font-family: var(--serif); font-size: 2rem; line-height: 1; transform: translateY(-50%); cursor: pointer; }
.slideshow-arrow--previous { left: 1rem; }
.slideshow-arrow--next { right: 1rem; }
.collection-slideshow__thumbs { margin-top: .7rem; display: flex; gap: .55rem; overflow-x: auto; }
.collection-slideshow__thumbs button { width: 7rem; height: 4.6rem; flex: 0 0 auto; padding: .2rem; border: 1px solid transparent; background: #ecebe6; cursor: pointer; }
.collection-slideshow__thumbs button.is-active { border-color: var(--forest-deep); }
.collection-slideshow__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.collection-info-dialog { width: min(58rem, calc(100% - 2rem)); }
.dialog-tabs { margin-bottom: 2rem; display: flex; gap: .4rem; border-bottom: 1px solid var(--line); }
.dialog-tabs button { padding: .75rem 1rem; border: 0; border-bottom: 2px solid transparent; color: var(--ink-soft); background: transparent; font-size: .76rem; font-weight: 800; cursor: pointer; }
.dialog-tabs button.is-active { color: var(--forest-deep); border-bottom-color: var(--walnut); }
.dialog-panel h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.rich-copy { color: var(--ink-soft); }
.rich-copy h3:not(:first-child) { margin-top: 2rem; color: var(--ink); }
.rich-copy li + li { margin-top: .4rem; }
.detail-list { margin: 0; }
.detail-list div { padding: 1rem 0; display: grid; grid-template-columns: minmax(9rem, .4fr) 1fr; gap: 1.25rem; border-top: 1px solid var(--line); }
.detail-list dt { color: var(--ink-soft); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.detail-list dd { margin: 0; }
.collection-shop { padding-block: clamp(4rem, 7vw, 7.5rem); display: grid; grid-template-columns: 17rem minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.collection-shop > *, .product-results, .product-grid, .product-card, .product-card__body, .product-card__cart { min-width: 0; max-width: 100%; }
.category-panel { position: sticky; top: calc(var(--sticky-header-height) + 1.5rem); }
.category-panel__heading { padding-bottom: 1.4rem; border-bottom: 1px solid var(--ink); }
.category-panel__heading h2 { margin: 0; font-size: 1.85rem; }
.category-panel nav a { padding: .8rem 0; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .8rem; }
.category-panel nav a:hover, .category-panel nav a.is-active { color: var(--forest-deep); font-weight: 750; }
.category-panel nav strong { font-size: .7rem; }
.category-select { display: none; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; align-items: start; }
.product-subcategory { grid-column: 1 / -1; margin-top: 1.4rem; padding: .8rem 0 .65rem; border-bottom: 1px solid var(--ink); }
.product-subcategory:first-child { margin-top: 0; }
.product-subcategory span { color: var(--forest-deep); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.15; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); transition: box-shadow .25s ease, transform .25s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card__image { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #f3f3f0; }
.product-card__image img { width: 100%; height: 100%; padding: 1.1rem; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__body { padding: 1.2rem; display: flex; flex-direction: column; }
.product-card__category { margin-bottom: .35rem; overflow: hidden; color: #805735; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-card h3 { min-height: 2.7rem; margin-bottom: .45rem; font-family: var(--serif); font-size: 1.03rem; font-weight: 400; }
.product-card h3, .product-card__sku { overflow-wrap: anywhere; }
.product-card__dimensions { min-height: 1.25rem; margin-bottom: .8rem; color: var(--ink-soft); font-size: .7rem; }
.product-card__footer { padding-top: .8rem; display: flex; justify-content: space-between; align-items: end; gap: .6rem; border-top: 1px solid var(--line); }
.price { display: flex; flex-wrap: wrap; gap: .35rem; align-items: baseline; }
.price strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.price__old { color: #8b8e8b; font-size: .69rem; text-decoration: line-through; }
.product-card__sku { color: var(--ink-soft); font-size: .61rem; }
.product-card__cart { margin-top: .8rem; padding-top: 0; display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: .55rem; align-items: end; }
.product-card__cart label { display: grid; gap: .22rem; }
.product-card__cart label > span { color: var(--ink-soft); font-size: .62rem; font-weight: 750; }
.product-card__cart input { width: 100%; min-height: 2.65rem; padding: .5rem; border: 1px solid var(--line); color: var(--ink); background: var(--paper); }
.product-card__cart .button { min-height: 2.65rem; padding: .65rem .5rem; font-size: .68rem; }
.product-card__cart .button:disabled { opacity: .68; cursor: wait; }
.product-card__cart-status { min-height: 1rem; grid-column: 1 / -1; color: var(--ink-soft); font-size: .65rem; line-height: 1.2; }
.infinite-scroll { min-height: 6rem; margin-top: 2.2rem; display: grid; justify-items: center; align-content: center; gap: .75rem; color: var(--ink-soft); }
.infinite-scroll__status { font-size: .75rem; }
.infinite-scroll.is-loading::before { content: ''; width: 1.5rem; height: 1.5rem; border: 2px solid var(--line); border-top-color: var(--forest-deep); border-radius: 50%; animation: loading-spin .75s linear infinite; }
.has-infinite-scroll .infinite-scroll:not(.is-failed) .infinite-scroll__fallback { display: none; }
@keyframes loading-spin { to { transform: rotate(360deg); } }
.pagination { margin-top: 3rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; }
.pagination a { width: 2.55rem; height: 2.55rem; display: grid; place-items: center; border: 1px solid var(--line); font-size: .76rem; }
.pagination a:hover, .pagination a.is-active { color: var(--white); background: var(--forest-deep); border-color: var(--forest-deep); }

.product-page { padding-block: 2rem clamp(5rem, 8vw, 8rem); }
.product-page > .breadcrumbs { margin-bottom: 2rem; }
.product-page__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.product-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.product-gallery figure { margin: 0; aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; background: #f0f0ed; }
.product-gallery__primary { grid-column: 1 / -1; }
.product-gallery img { width: 100%; height: 100%; padding: clamp(1rem, 3vw, 2.5rem); object-fit: contain; mix-blend-mode: multiply; }
.product-summary { position: sticky; top: calc(var(--sticky-header-height) + 1.5rem); padding-top: 1.5rem; }
.product-summary h1 { margin-bottom: .8rem; font-size: clamp(2.7rem, 4.5vw, 4.8rem); }
.product-summary__sku { margin-bottom: 1.4rem; color: var(--ink-soft); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.product-summary__price { margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: .55rem; align-items: baseline; }
.product-summary__price span { color: #8b8e8b; text-decoration: line-through; }
.product-summary__price strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.product-summary__price em { padding: .25rem .5rem; color: var(--white); background: var(--walnut); font-size: .63rem; font-style: normal; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-summary__description { padding-bottom: 1.5rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.dimension-grid { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.dimension-grid div { padding: 1rem 0; }
.dimension-grid dt { color: var(--ink-soft); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dimension-grid dd { margin: .2rem 0 0; font-family: var(--serif); font-size: 1.1rem; }
.product-specs { margin: 1rem 0 1.6rem; }
.product-specs > div { padding: .65rem 0; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); font-size: .76rem; }
.product-specs span { color: var(--ink-soft); }
.product-specs strong { max-width: 60%; text-align: right; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.product-help { margin: 1.25rem 0 0; color: var(--ink-soft); font-size: .76rem; }
.product-help a { color: var(--forest-deep); font-weight: 750; text-decoration: underline; }
.product-assurance { padding-block: 4rem; background: var(--cream); }
.quality-grid--compact { grid-template-columns: repeat(3, 1fr); }
.quality-grid--compact article { min-height: 11rem; border-bottom: 1px solid var(--line); }
.quality-grid--compact article:last-child { border-right: 1px solid var(--line); }

.site-footer { padding-top: 5rem; color: #d9e0db; background: #111f19; }
.footer-grid { padding-bottom: 4rem; display: grid; grid-template-columns: 2.2fr repeat(3, 1fr); gap: clamp(2.5rem, 6vw, 6rem); }
.footer-brand img { max-width: 19rem; margin-bottom: 1.4rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { max-width: 28rem; color: #aebbb3; font-size: .86rem; }
.footer-grid h2 { margin-bottom: 1.2rem; color: var(--white); font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 0 0 .55rem; color: #aebbb3; font-size: .79rem; }
.footer-grid a:hover { color: var(--white) !important; }
.footer-bottom { min-height: 4.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,.12); color: #87958c; font-size: .68rem; }
.footer-bottom p { margin: 0; }

.page-intro--compact { padding-block: clamp(3rem, 5vw, 5rem); }
.page-intro--compact h1 { font-size: clamp(3rem, 5.5vw, 5.5rem); }
.flash-stack { position: relative; z-index: 10; padding-top: 1rem; }
.flash { margin: 0 0 .6rem; padding: .9rem 1rem; border: 1px solid #bfc9c2; background: #eef5f0; font-size: .88rem; }
.flash--error { border-color: #d5aaa3; background: #fff0ed; }
.cart-notice { position: fixed; z-index: 120; top: calc(var(--sticky-header-height) + .8rem); left: 50%; min-width: min(24rem, calc(100% - 2rem)); max-width: calc(100% - 2rem); margin: 0; padding: .85rem 1.1rem; color: var(--forest-deep); background: #eef5f0; border: 1px solid #bfc9c2; box-shadow: 0 12px 35px rgba(22,40,32,.18); font-size: .82rem; font-weight: 700; text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, -1rem); transition: opacity .2s ease, transform .25s ease; }
.cart-notice.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cart-notice--error { color: #6f2c24; background: #fff0ed; border-color: #d5aaa3; }
.transaction-layout { padding-block: clamp(3rem, 6vw, 6rem); display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(18rem, .65fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.cart-list { border-top: 1px solid var(--line); }
.cart-line { padding-block: 1.5rem; display: grid; grid-template-columns: 9rem minmax(0, 1fr) auto; gap: 1.4rem; border-bottom: 1px solid var(--line); }
.cart-line__image { aspect-ratio: 1; background: var(--white); }
.cart-line__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__body h2 { margin-bottom: .35rem; font-size: 1.45rem; }
.cart-line__body p:not(.eyebrow) { margin-bottom: .5rem; color: var(--ink-soft); font-size: .78rem; }
.cart-line__actions { min-width: 8.5rem; display: flex; flex-direction: column; align-items: flex-end; gap: .45rem; }
.cart-line__actions form { display: flex; gap: .55rem; align-items: end; }
.cart-line__actions label span { display: block; color: var(--ink-soft); font-size: .69rem; }
.cart-line__actions input { width: 4rem; padding: .45rem; border: 1px solid var(--line); background: var(--white); }
.cart-line__total { margin-top: auto; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.cart-line.is-updating { opacity: .55; pointer-events: none; transition: opacity .2s ease; }
.text-button { padding: .25rem 0; border: 0; color: #6d472b; background: transparent; font-size: .75rem; font-weight: 750; text-decoration: underline; cursor: pointer; }
.text-button--muted { color: var(--ink-soft); }
.order-summary, .form-card { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--line); background: var(--white); }
.order-summary h2, .form-card h2 { margin-bottom: 1.35rem; font-size: clamp(1.8rem, 2.5vw, 2.5rem); }
.order-summary dl { margin: 0 0 1.5rem; }
.order-summary dl > div { padding: .7rem 0; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); font-size: .84rem; }
.order-summary dd { margin: 0; text-align: right; }
.summary-total { font-size: 1rem !important; font-weight: 800; }
.project-code-box { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.project-code-box h3 { margin-bottom: .4rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.project-code-box p { color: var(--ink-soft); font-size: .78rem; }
.project-code { color: var(--forest-deep) !important; font-family: ui-monospace, monospace; font-size: 1.05rem !important; font-weight: 800; letter-spacing: .06em; }
.stack-form { display: grid; gap: 1rem; }
.project-code-box .stack-form { margin-top: 1.6rem; }
.stack-form label, .form-grid label, .add-cart-form label { display: grid; gap: .35rem; }
.stack-form label > span, .form-grid label > span, .add-cart-form label > span { color: var(--ink-soft); font-size: .72rem; font-weight: 700; }
.stack-form input, .stack-form textarea, .form-grid input, .form-grid textarea, .add-cart-form input { width: 100%; padding: .78rem .85rem; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--paper); font: inherit; }
.password-field { position: relative; display: block; color: var(--ink); font-size: 1rem; font-weight: 400; }
.password-field input { padding-right: 3rem; }
.password-field button { position: absolute; top: 50%; right: .45rem; width: 2.2rem; height: 2.2rem; padding: .45rem; display: grid; place-items: center; border: 0; color: var(--ink-soft); background: transparent; transform: translateY(-50%); cursor: pointer; }
.password-field button:hover, .password-field.is-visible button { color: var(--forest-deep); }
.password-field svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.form-note { margin: .55rem 0 0; color: var(--ink-soft); font-size: .75rem; }
.account-entry { padding-block: clamp(3rem, 6vw, 6rem); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.form-card--tint { background: var(--cream); }
.form-card--center { max-width: 38rem; grid-column: 1 / -1; justify-self: center; width: 100%; }
.account-dashboard { padding-block: clamp(3rem, 6vw, 6rem); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); gap: 1.5rem; align-items: start; }
.account-dashboard__main, .account-dashboard__side { display: grid; gap: 1.5rem; }
.card-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field-wide { grid-column: 1 / -1; }
.form-section { margin-top: 2.5rem; }
.record-row { padding: .75rem 0; display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.record-row span { color: var(--ink-soft); font-size: .76rem; }
.add-cart-form { display: grid; grid-template-columns: 5rem 1fr; gap: .65rem; align-items: end; }
.add-cart-form .button { width: 100%; }
.order-summary--sticky { position: sticky; top: calc(var(--sticky-header-height) + 1.5rem); }
.checkout-form { padding: clamp(1.5rem, 4vw, 3rem); }
.payment-card { min-height: 25rem; }
#payment-element { margin-bottom: 1.5rem; }
.payment-message { color: #8b2b20; font-size: .84rem; }
#payment-submit:disabled { opacity: .55; cursor: wait; }
.completion { min-height: 32rem; padding-block: clamp(5rem, 10vw, 10rem); display: grid; align-items: center; background: var(--cream); }
.completion__inner { max-width: 54rem; text-align: center; }
.completion h1 { margin-bottom: 1.3rem; font-size: clamp(3.2rem, 7vw, 6.5rem); }
.completion__inner > p:not(.eyebrow) { max-width: 44rem; margin: 0 auto 2rem; color: var(--ink-soft); }
.completion__total { margin: 0 auto 2rem; padding: 1.2rem; max-width: 24rem; display: flex; justify-content: space-between; border-block: 1px solid var(--line); }
.hero--design { min-height: clamp(32rem, 62vh, 43rem); }
.design-process .section-heading--split > p { color: var(--ink-soft); }
.design-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.design-steps article { position: relative; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.design-steps img { width: 100%; aspect-ratio: 1.3 / 1; margin-bottom: 1.2rem; object-fit: cover; }
.design-steps article > span { color: var(--walnut); font-family: var(--serif); font-size: 1.15rem; }
.design-steps h3 { margin: .5rem 0; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.design-steps p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.design-request-section { padding-block: clamp(4rem, 7vw, 7rem); background: var(--cream); scroll-margin-top: 2rem; }
.design-request-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 7vw, 8rem); align-items: start; }
.design-request-grid h2 { max-width: 34rem; }
.design-request-grid > div > p:not(.eyebrow) { color: var(--ink-soft); }
.design-checklist { padding-left: 1.1rem; color: var(--ink-soft); }
.design-request-form { box-shadow: var(--shadow); }
.design-request-form label em { font-weight: 400; }

@media (max-width: 74rem) {
    .header-main { grid-template-columns: 15rem 1fr auto; gap: 1rem; }
    .primary-nav { gap: 1rem; font-size: .78rem; }
    .header-actions span { display: none; }
    .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quality-section { grid-template-columns: 1fr; }
    .quality-section__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; }
}

@media (max-width: 58rem) {
    :root { --shell: min(100% - 2rem, 48rem); --sticky-header-height: 4.7rem; }
    .announcement__divider { display: none; }
    .announcement__inner { justify-content: space-between; gap: .65rem; font-size: .7rem; }
    .announcement__chat { margin-left: 0; }
    .announcement__label--desktop { display: none; }
    .announcement__label--mobile { display: inline; }
    .header-main { min-height: 4.7rem; grid-template-columns: 1fr auto auto; }
    .brand { width: min(15rem, 62vw); }
    .menu-button { display: block; order: 2; }
    .header-actions { order: 3; }
    .header-actions a:first-child { display: none; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        padding: 0 1rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        visibility: hidden;
        opacity: 0;
        background: var(--paper);
        border-bottom: 1px solid transparent;
        box-shadow: none;
        pointer-events: none;
        transform: translateY(-.65rem);
        transform-origin: top;
        transition: max-height .4s cubic-bezier(.22, 1, .36, 1), padding .4s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, transform .4s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .4s, border-color .3s ease, box-shadow .3s ease;
    }
    .primary-nav.is-open { max-height: 28rem; padding: 1rem 1rem 1.5rem; visibility: visible; opacity: 1; border-bottom-color: var(--line); box-shadow: var(--shadow); pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
    .primary-nav a { padding: .9rem .5rem; border-bottom: 1px solid var(--line); font-size: .9rem; }
    .primary-nav a::after { display: none; }
    .hero { min-height: 43rem; align-items: end; }
    .hero__shade { background: linear-gradient(0deg, rgba(15, 29, 23, .96), rgba(15, 29, 23, .58) 65%, rgba(15,29,23,.18)); }
    .hero__content { padding-block: 8rem 4rem; }
    .hero__copy h1 { font-size: clamp(2.65rem, 9.5vw, 4rem); }
    .confidence-grid { grid-template-columns: repeat(2, 1fr); }
    .confidence-grid > div:nth-child(odd) { border-left: 0; }
    .confidence-grid > div:last-child { border-right: 0; }
    .confidence-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .section-heading--split, .page-intro__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .design-feature__grid { grid-template-columns: 1fr; gap: 1rem; }
    .design-feature__image-wrap { min-height: 29rem; }
    .project-gallery { grid-template-columns: 1fr 1fr; }
    .project-gallery__item--wide { grid-column: 1 / -1; }
    .project-gallery__item { min-height: 24rem; }
    .closing-cta__inner { align-items: start; flex-direction: column; }
    .catalog-toolbar { padding-block: 1.2rem; align-items: stretch; flex-direction: column; }
    .collection-hero { grid-template-columns: 1fr; }
    .collection-hero > img { min-height: 27rem; max-height: 37rem; }
    .collection-shop { grid-template-columns: 1fr; }
    .category-panel { position: sticky; z-index: 18; top: calc(var(--sticky-header-height) + .55rem); min-width: 0; max-width: 100%; padding: .7rem; overflow: visible; background: rgba(252, 251, 248, .96); border: 1px solid var(--line); box-shadow: 0 9px 25px rgba(31, 39, 34, .09); backdrop-filter: blur(12px); }
    .category-panel__heading, .category-panel nav { display: none; }
    .category-select { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: .8rem; }
    .category-select > span:first-child { color: var(--ink-soft); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
    .category-select__control { position: relative; min-width: 0; }
    .category-select select { width: 100%; min-height: 2.85rem; padding: .55rem 2.5rem .55rem .8rem; appearance: none; border: 1px solid #c9c6bd; border-radius: 0; color: var(--forest-deep); background: var(--white); font: 750 .82rem/1.2 var(--sans); cursor: pointer; }
    .category-select select:focus-visible { outline: 2px solid var(--walnut); outline-offset: 2px; }
    .category-select svg { position: absolute; top: 50%; right: .8rem; width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; pointer-events: none; transform: translateY(-50%); }
    .product-page__grid { grid-template-columns: 1fr; }
    .product-summary { position: static; }
    .transaction-layout, .account-dashboard { grid-template-columns: 1fr; }
    .design-request-grid { grid-template-columns: 1fr; }
    .order-summary--sticky { position: static; }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 39rem) {
    :root { --shell: calc(100% - 1.25rem); }
    body { font-size: 1rem; }
    .header-actions { gap: .7rem; }
    .hero__content { padding-bottom: 2.5rem; }
    .hero__copy h1 { font-size: clamp(2.35rem, 10.5vw, 3.15rem); }
    .button-row, .button-row .button { width: 100%; }
    .confidence-grid { grid-template-columns: 1fr; }
    .confidence-grid > div { padding: 1rem .4rem; border-left: 0; border-bottom: 1px solid var(--line); }
    .collection-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; gap: .7rem; }
    .product-card { display: grid; grid-template-columns: clamp(7.5rem, 34vw, 10rem) minmax(0, 1fr); align-items: start; }
    .product-card__image { width: 100%; aspect-ratio: 1 / 1; }
    .product-card__image img { padding: .55rem; }
    .product-card__body { padding: .8rem; }
    .product-card h3 { min-height: 0; margin-bottom: .25rem; font-size: .98rem; }
    .product-card__dimensions { min-height: 0; margin-bottom: .5rem; font-size: .65rem; }
    .product-card__footer { padding-top: .55rem; flex-wrap: wrap; align-items: center; }
    .product-card__cart { margin-top: .6rem; grid-template-columns: 3.75rem minmax(0, 1fr); gap: .4rem; }
    .product-card__cart label, .product-card__cart .button { min-width: 0; }
    .product-card__cart input, .product-card__cart .button { min-height: 2.45rem; }
    .product-card__cart .button { padding-inline: .35rem; font-size: .62rem; letter-spacing: .07em; }
    .product-card__cart-status { font-size: .6rem; }
    .collection-card__body > p { min-height: 0; }
    .quality-section__intro { display: block; }
    .quality-grid, .quality-grid--compact { grid-template-columns: 1fr; }
    .quality-grid article { min-height: 12rem; border-right: 1px solid var(--line); border-bottom: 0; }
    .quality-grid article:last-child { border-bottom: 1px solid var(--line); }
    .project-gallery { display: block; }
    .project-gallery__item { min-height: 23rem; }
    .catalog-search { min-width: 0; }
    .collection-hero__content { padding-inline: 1.25rem; }
    .collection-facts { grid-template-columns: 1fr; }
    .collection-facts div { padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
    .product-gallery { grid-template-columns: 1fr; }
    .product-gallery__primary { grid-column: auto; }
    .product-actions { grid-template-columns: 1fr; }
    .account-entry, .form-grid { grid-template-columns: 1fr; }
    .field-wide { grid-column: auto; }
    .cart-line { grid-template-columns: 6.5rem 1fr; }
    .cart-line__actions { grid-column: 1 / -1; flex-direction: row; align-items: end; }
    .cart-line__total { margin-left: auto; }
    .add-cart-form { grid-template-columns: 1fr; }
    .design-steps { grid-template-columns: 1fr; }
    .detail-list div { grid-template-columns: 1fr; gap: .3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { padding-block: 1rem; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
