:root {
    --ink: #1c1c1c;
    --muted: #5f5f5b;
    --paper: #ffffff;
    --paper-2: #f4f3ef;
    --white: #ffffff;
    --sage: #4a5c52;
    --sage-d: #3d4d44;
    --sand: #e4e3b0;
    --mist: #ece6d4;
    --brass: #6d756f;
    --brass-d: #4a5c52;
    --line: rgba(28, 28, 28, .1);
    --shadow: 0 8px 24px rgba(28, 28, 28, .08);
    --shadow-sm: 0 2px 10px rgba(28, 28, 28, .05);
    --sans: "DM Sans", system-ui, sans-serif;
    --serif: "DM Sans", system-ui, sans-serif;
    --pad: 6vw;
    --edge: var(--pad);
    --radius: 10px;
    --pill: 999px;
    --space-section: 2.6rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--sans); font-weight: 700; line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.03em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.1rem); }
h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h3 { font-size: 1.12rem; font-weight: 650; letter-spacing: -.02em; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 4.1rem); }
.page-hero h1,
.product-info h1 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.22;
    letter-spacing: -.025em;
    margin: 0 0 .5rem;
    font-weight: 700;
}
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 8px; background: #000; color: #fff; padding: .5rem 1rem; z-index: 80; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn:focus-visible, .search button:focus-visible { outline-offset: 2px; }

.site-header {
    position: sticky; top: 0; z-index: 70;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.site-header .nav { background: var(--white); }
.bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: .6rem 1rem;
    background: var(--sage); color: #fff;
    font-size: .84rem; letter-spacing: 0; text-transform: none; font-weight: 500;
    padding: .5rem var(--edge);
}
.bar p { margin: 0; text-align: center; }
.bar-links {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: .2rem .95rem;
}
.bar-links a {
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
}
.bar-partner { font-weight: 500; opacity: .92; }
.bar-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.nav-drawer-foot { display: none; }
.masthead {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1.05rem var(--edge);
}
.masthead-aside {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    justify-self: start;
    min-width: 0;
    padding: .28rem .9rem .28rem .28rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-2);
    color: var(--ink);
    font-size: .8rem;
    font-weight: 500;
    line-height: 1;
    transition: border-color .15s ease, background .15s ease;
}
.masthead-count {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--sage);
    color: var(--sand);
    display: grid;
    place-items: center;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: -.03em;
    flex-shrink: 0;
}
.masthead-aside:hover {
    background: #fff;
    border-color: rgba(28, 28, 28, .18);
}
.logo { display: flex; align-items: center; justify-self: center; color: inherit; flex-shrink: 0; }
.logo-mark {
    --logo: "Outfit", var(--sans);
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    color: inherit;
    line-height: 1;
    font-family: var(--logo);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.logo-thin,
.logo-heavy {
    font-family: inherit;
    font-size: 1.62rem;
    line-height: .72;
    text-transform: uppercase;
}
.logo-thin {
    display: flex;
    justify-content: space-between;
    font-weight: 200;
    letter-spacing: 0;
    position: relative;
    z-index: 0;
}
.logo-thin span { display: block; }
.logo-heavy {
    display: block;
    font-weight: 800;
    letter-spacing: -.045em;
    margin-top: -.14em;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.masthead-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    justify-self: end;
    min-width: 0;
}
.search-wrap {
    position: relative;
    width: min(100%, 28rem);
}
.search {
    display: flex; border: 1px solid var(--line); background: var(--white);
    border-radius: 999px; overflow: hidden; width: 100%;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.search:focus-within { border-color: rgba(26, 23, 20, .28); box-shadow: var(--shadow-sm); }
.search-suggest {
    position: absolute; left: auto; right: 0; top: calc(100% + .45rem);
    width: min(34rem, calc(100vw - 2.4rem));
    min-width: 100%;
    background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
    border-radius: 14px; z-index: 90; overflow: hidden; max-height: min(70vh, 440px); overflow-y: auto;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest a, .search-suggest .search-empty {
    display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: .85rem; align-items: center;
    padding: .62rem .9rem; border-bottom: 1px solid var(--line);
}
.search-suggest a:last-child, .search-suggest .search-empty { border-bottom: 0; }
.search-suggest a:hover, .search-suggest a.is-active { background: var(--paper); }
.search-suggest img {
    width: 48px; height: 48px; object-fit: contain; background: #fff;
    border: 1px solid var(--line); border-radius: 8px;
}
.search-hit-copy { min-width: 0; display: grid; gap: .08rem; }
.search-suggest strong {
    display: block; font-size: .9rem; font-weight: 600; line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-suggest small {
    color: var(--muted); font-size: .78rem; line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-suggest .price {
    font-family: var(--sans); font-size: .88rem; font-weight: 600;
    white-space: nowrap; color: var(--ink); letter-spacing: -.01em;
}
.search-suggest .search-empty { grid-template-columns: 1fr; color: var(--muted); }
.search-suggest .search-more {
    grid-template-columns: 1fr; font-size: .84rem; font-weight: 600;
    letter-spacing: 0; color: var(--sage-d);
}
.search input { border: 0; background: transparent; padding: .6rem 1rem; width: 100%; font: inherit; outline: none; min-width: 0; }
.search button { border: 0; background: transparent; padding: 0 .95rem; cursor: pointer; color: var(--ink); display: grid; place-items: center; }
.nav-search { display: none; }
.nav .search-wrap { display: none; }
.menu-btn {
    display: none; align-items: center; gap: .55rem;
    border: 1px solid var(--ink); background: transparent;
    padding: .45rem .75rem; font: inherit; cursor: pointer; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem;
}
.menu-btn-lines { width: 16px; height: 12px; display: grid; align-content: space-between; }
.menu-btn-lines i { display: block; height: 1.5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
body.nav-open .menu-btn-lines i:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
body.nav-open .menu-btn-lines i:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn-lines i:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0; background: rgba(28, 25, 22, .46); z-index: 60;
}
.nav-overlay[hidden] { display: none !important; }
.nav { border-top: 1px solid var(--line); position: relative; z-index: 50; }
.nav-drawer-head { display: none; }
.nav-groups {
    display: flex; align-items: stretch; justify-content: space-between;
    gap: 2rem 4rem; padding: 0 calc(var(--pad) + 3.6rem);
}
.nav-kicker { display: none; }
.nav-links { display: flex; flex-wrap: wrap; align-items: stretch; }
.nav-links > a,
.nav-item > .nav-parent {
    position: relative; padding: 1.12rem 1.28rem; font-size: .86rem;
    letter-spacing: .04em; color: var(--muted); white-space: nowrap;
    transition: color .18s ease;
}
.nav-links > a:hover,
.nav-item > .nav-parent:hover { color: var(--ink); }
.nav-links > a.is-active,
.nav-item.is-current > .nav-parent,
.nav-item > .nav-parent.is-active { color: var(--ink); }
.nav-links > a.is-active::after,
.nav-item.is-current > .nav-parent::after {
    content: ""; position: absolute; left: 1.15rem; right: 1.15rem; bottom: 0;
    height: 2px; background: var(--ink);
}
.nav-item.has-sub {
    position: relative;
    display: flex;
    align-items: stretch;
}
.nav-item.has-sub > .nav-parent { padding-right: .35rem; }
.nav-item.is-current > .nav-parent::after { right: .2rem; }
.nav-sub-toggle {
    display: grid; place-items: center;
    border: 0; background: none; color: var(--muted);
    padding: 0 1rem 0 .15rem; cursor: pointer; font: inherit;
    transition: color .18s ease, transform .18s ease;
}
.nav-sub-toggle svg { display: block; transition: transform .18s ease; }
.nav-item:hover > .nav-sub-toggle,
.nav-item:focus-within > .nav-sub-toggle,
.nav-item.is-current > .nav-sub-toggle { color: var(--ink); }
.nav-sub {
    position: absolute; top: calc(100% - 1px); left: 0; right: auto; min-width: 15.5rem;
    padding: 0; background: var(--white);
    border: 1px solid var(--line); border-radius: 22px;
    box-shadow: 0 22px 50px rgba(28, 28, 28, .14);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(.45rem);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 90;
    overflow: hidden;
}
.nav-sub::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 14px;
}
.nav-item:hover > .nav-sub,
.nav-item:focus-within > .nav-sub,
.nav-item.is-open > .nav-sub {
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.nav-mega {
    display: grid;
    grid-template-columns: 14.8rem max-content;
    width: max-content;
    max-width: min(42rem, calc(100vw - 2.4rem));
}
.nav-mega-cta {
    background: var(--sage-d);
    color: #f3f1ea;
    padding: 1.35rem 1.3rem 1.45rem;
    display: grid;
    align-content: start;
    gap: .4rem;
}
.nav-mega-kicker {
    margin: 0;
    font-size: .72rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(243, 241, 234, .62);
}
.nav-mega-cta strong {
    font-size: 1.28rem;
    letter-spacing: -.03em;
    line-height: 1.15;
}
.nav-mega-cta p:not(.nav-mega-kicker) {
    margin: 0;
    font-size: .88rem;
    line-height: 1.45;
    color: rgba(243, 241, 234, .78);
}
.nav-mega-btn {
    margin-top: .55rem;
    justify-self: start;
    min-height: 2.35rem;
    padding: .45rem 1rem;
    font-size: .84rem;
}
.nav-sub a.nav-mega-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    white-space: nowrap;
    padding: .45rem 1rem;
}
.nav-sub a.nav-mega-btn:hover,
.nav-sub a.nav-mega-btn:focus-visible {
    background: #fff;
    color: var(--sage-d);
}
.nav-mega-links {
    background: #f3f1ea;
    padding: 1.2rem 1.15rem 1.3rem;
}
.nav-mega-heading {
    margin: 0 0 .7rem;
    font-size: .72rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.nav-mega-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    max-width: 24rem;
}
.nav-mega-chip {
    display: flex !important;
    align-items: center;
    gap: .55rem;
    flex: 0 1 auto;
    min-width: 9.6rem;
    min-height: 2.7rem;
    padding: .55rem .9rem !important;
    border-radius: var(--pill);
    background: rgba(255, 255, 255, .78);
    color: var(--ink);
    font-size: .9rem !important;
    font-weight: 550;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background .16s ease, color .16s ease;
}
.nav-mega-chip .nav-ico { flex-shrink: 0; color: var(--sage); }
.nav-mega-chip:hover,
.nav-mega-chip:focus-visible { background: #fff; }
.nav-mega-chip.is-active { background: var(--ink); color: #fff; }
.nav-mega-chip.is-active .nav-ico { color: var(--sand); }
.nav-sub a {
    display: block; padding: .72rem 1.15rem; font-size: .92rem; color: var(--ink);
    letter-spacing: 0; white-space: nowrap;
}
.nav-sub a:hover,
.nav-sub a:focus-visible { background: var(--paper-2); }
.nav-sub a.is-active { font-weight: 650; }
.nav-sub .nav-mega-chip:hover,
.nav-sub .nav-mega-chip:focus-visible { background: #fff; }
.nav-sub .nav-mega-chip.is-active { background: var(--ink); color: #fff; font-weight: 550; }
@media (min-width: 1081px) {
    .nav-mega-all { display: none !important; }
}
.nav-group-end .nav-links a { font-weight: 500; }
.subcat-nav {
    display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.15rem 0 0;
}
.subcat-nav a {
    display: inline-flex; align-items: center; min-height: 2.35rem;
    padding: .4rem 1rem; border: 1px solid var(--line); border-radius: var(--pill);
    background: var(--white); color: var(--muted); font-size: .88rem; font-weight: 550;
    transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.subcat-nav a:hover { color: var(--ink); border-color: rgba(28, 28, 28, .22); }
.subcat-nav a.is-active {
    background: var(--ink); color: #fff; border-color: var(--ink);
}

main { min-height: 60vh; }
.hero { padding: 0; display: block; }
.eyebrow { display: none; }
.card-brand, .product-brand {
    margin: 0 0 .35rem; font-size: .82rem; color: var(--muted); letter-spacing: .02em;
}
.lead { font-size: 1.08rem; color: var(--muted); max-width: 40rem; line-height: 1.55; }
.hero-actions { display: flex; gap: .7rem; margin-top: 1.6rem; flex-wrap: wrap; justify-content: center; }
.hero-visual {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}
.hero-visual img { width: 100%; height: 64vh; min-height: 420px; object-fit: cover; }
.hero-visual::after {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(28, 36, 32, .28) 0%, rgba(28, 36, 32, .5) 100%);
}
.hero-copy {
    position: absolute; inset: 0; z-index: 1;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 4.5rem var(--edge) 4rem; color: #fff;
}
.hero-copy h1 { color: #fff; max-width: 18ch; }
.hero-copy .lead { color: rgba(255, 255, 255, .92); max-width: 36rem; }
.hero-float { display: none; }
.hero-extra { color: rgba(255, 255, 255, .82); max-width: 34rem; margin: .2rem 0 0; font-size: .98rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .85rem 1.55rem; border-radius: var(--pill); font-size: .92rem; font-weight: 600;
    letter-spacing: 0; border: 1px solid transparent; cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-sand { background: var(--sand); color: var(--ink); }
.btn-sand:hover { background: #eeeebd; }
.btn-mist { background: var(--mist); color: var(--ink); }
.btn-mist:hover { background: #f4f0e4; }
.btn-ghost { border-color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.85); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--sage-d); }
.btn-xl { width: 100%; max-width: 360px; padding: 1.05rem 1.5rem; font-size: 1rem; }

.section { padding: var(--space-section) var(--edge); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.5rem; }
.section-head a { font-size: .9rem; border-bottom: 1px solid var(--ink); padding-bottom: .08rem; }

.trust {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem;
    margin: 0 var(--edge); padding: var(--space-section) 0;
    border-bottom: 1px solid var(--line);
}
.trust div { padding: 0; border: 0; text-align: center; }
.trust-icon {
    display: grid; place-items: center; margin: 0 auto .85rem;
    width: 2.2rem; height: 2.2rem; color: var(--ink);
}
.trust-icon svg { width: 100%; height: 100%; }
.trust strong { display: block; font-family: var(--sans); font-size: 1.02rem; font-weight: 700; letter-spacing: -.02em; }
.trust span { color: var(--muted); font-size: .88rem; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.cat-tile {
    background: var(--white); padding: 1.4rem 1.2rem; border: 1px solid var(--line);
    display: flex; flex-direction: column; min-height: 120px; justify-content: space-between;
    transition: none;
}
.cat-tile:hover { transform: none; box-shadow: none; }
.cat-grid.visual { gap: .9rem; }
.cat-tile.visual {
    padding: 0; min-height: 0; overflow: hidden; position: relative;
    border-radius: var(--radius); box-shadow: none;
}
.cat-tile.visual::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(28, 25, 22, 0);
    transition: background .45s ease;
    pointer-events: none;
}
.cat-tile.visual img {
    width: 100%; height: 230px; object-fit: cover;
    transform: scale(1.001);
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.cat-label {
    position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem;
    background: linear-gradient(transparent, rgba(20, 16, 12, .72)); color: #fff;
    z-index: 1;
}
.cat-label small { color: rgba(255, 255, 255, .85); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card {
    background: var(--white); display: flex; flex-direction: column;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
}
.card:hover { box-shadow: none; transform: none; }
.card-media { position: relative; background: var(--paper-2); aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.card-media img {
    width: 100%; height: 100%; max-width: none; object-fit: cover;
    transform: scale(1.001);
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.badge { position: absolute; top: .85rem; left: .85rem; background: var(--sand); color: var(--ink); font-size: .72rem; font-weight: 600; letter-spacing: 0; text-transform: none; padding: .28rem .65rem; border-radius: var(--pill); }
.badge-quiet { background: var(--white); color: var(--ink); }
.card-body { padding: 1rem 0 1.15rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.card-body h3 { font-size: 1.05rem; font-weight: 650; }
.card-body h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.price-row { display: flex; gap: .6rem; align-items: baseline; margin: .2rem 0 .6rem; }
.price-row s { color: var(--muted); font-weight: 400; }
.price-row.large strong { font-size: 1.55rem; font-family: var(--sans); font-weight: 700; }
.card .btn { margin-top: auto; }

.how {
    margin: 0;
    padding: 0 0 var(--space-section);
    background: transparent; color: inherit;
    border-radius: 0;
    box-shadow: none;
}
.split-promo {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 0; margin-bottom: 2.8rem;
}
.split-promo-copy {
    background: var(--sage); color: #fff;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 3.2rem 10%; text-align: center; gap: .85rem;
}
.split-kicker { margin: 0; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.78); }
.split-promo-copy h2 { color: #fff; max-width: 16ch; margin: 0 auto; line-height: 1.2; }
.split-promo-copy p { color: rgba(255,255,255,.88); margin: 0 auto; max-width: 34rem; line-height: 1.65; }
.split-promo-copy .btn { align-self: center; margin-top: .35rem; }
.split-promo-visual { overflow: hidden; background: var(--paper-2); min-height: 100%; }
.split-promo-visual img { width: 100%; height: 100%; min-height: 22rem; object-fit: cover; }
.how-head { display: none; }
.how-grid {
    list-style: none; margin: 0 var(--edge); padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.how-grid li {
    background: transparent;
    border: 0;
    padding: .4rem 0 0;
    text-align: center;
}
.how-num {
    display: grid; place-items: center; margin: 0 auto .7rem;
    width: 1.85rem; height: 1.85rem; border: 1.5px solid var(--ink);
    border-radius: 50%; font-family: var(--sans); font-size: .82rem; font-weight: 650; color: var(--ink);
}
.how-grid h3 { margin: 0 0 .4rem; }
.how-grid p { margin: 0; color: var(--muted); }
.how-bar { display: none; }
.how-cta { display: none; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.room-grid a {
    position: relative; overflow: hidden; min-height: 240px; background: var(--paper-2);
    border-radius: var(--radius); box-shadow: none;
}
.room-grid img {
    width: 100%; height: 280px; object-fit: cover;
    transform: scale(1.001);
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.room-grid span {
    position: absolute; left: 1rem; bottom: 1rem;
    background: var(--white); padding: .5rem .9rem;
    font-family: var(--sans); font-size: .95rem; font-weight: 650;
    border-radius: var(--pill); box-shadow: none;
}

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.faq-grid article {
    background: transparent; padding: 0 0 .4rem;
    border: 0; border-radius: 0; box-shadow: none;
}
.faq-grid p { color: var(--muted); margin: 0; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.2rem; }
.post-card { background: transparent; overflow: visible; border: 0; box-shadow: none; }
.post-card > a { display: flex; flex-direction: column; height: 100%; color: inherit; }
.post-media {
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 3 / 2;
    background: var(--paper-2);
}
.post-media img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.001);
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.post-body { padding: .85rem 0 0; display: flex; flex-direction: column; flex: 1; }
.post-card time { font-size: .78rem; color: var(--muted); letter-spacing: .02em; }
.post-card h2, .post-card h3 { font-size: 1.12rem; margin: .25rem 0 .35rem; }
.post-card p {
    color: var(--muted); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    font-size: .92rem; line-height: 1.5;
}
.post-more {
    margin-top: .75rem;
    font-size: .88rem; font-weight: 600;
    border-bottom: 1px solid var(--ink);
    align-self: flex-start;
}

.post-feature { margin: 0 0 2.4rem; }
.post-feature > a {
    display: grid;
    grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
    gap: 0 2rem;
    align-items: center;
}
.post-feature .post-media { aspect-ratio: 4 / 3; }
.post-feature .post-body { padding: .2rem 0 0; }
.post-feature h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    margin: .35rem 0 .55rem;
    letter-spacing: -.03em;
}
.post-feature p {
    -webkit-line-clamp: 4;
    font-size: 1.02rem;
    line-height: 1.55;
}

.section.catalog { padding-top: 1.05rem; }
.blog-page { padding: var(--space-section) var(--edge); }
.blog-intro { max-width: 40rem; margin: 0 0 2.2rem; }
.blog-intro h1 { font-size: clamp(2rem, 4vw, 3.05rem); margin-bottom: .45rem; }
.blog-intro .lead { margin: 0 0 .55rem; }
.blog-intro .muted { margin: 0; }

.page-hero { padding: var(--space-section) var(--edge) 1.25rem; }
.page-hero.wide { max-width: none; }
.catalog-hero {
    text-align: left;
    padding: 2.5rem var(--edge) 1.1rem;
}
.catalog-hero-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}
.catalog-hero h1 {
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -.03em;
    margin: 0 0 .45rem;
    font-weight: 700;
}
.catalog-hero .lead {
    max-width: none;
    margin: 0 0 .7rem;
    font-size: clamp(.98rem, 1.2vw, 1.08rem);
    line-height: 1.5;
    color: var(--ink);
}
.catalog-hero-seo {
    display: grid;
    gap: .7rem;
    margin: 0;
    max-width: none;
    text-align: left;
}
.catalog-hero-seo p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.5;
    max-width: none;
}
.catalog-hero .subcat-nav {
    justify-content: center;
    margin-top: 1.25rem;
}
.catalog-hero.is-search {
    text-align: left;
    padding: 1.55rem var(--edge) 1.2rem;
}
.catalog-hero.is-search .catalog-hero-inner {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .28rem;
}
.catalog-search-kicker {
    margin: 0;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.catalog-hero.is-search h1 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    letter-spacing: -.02em;
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-seo { padding-top: 0; }
.blog-note {
    max-width: none;
    padding: 1.6rem 1.7rem;
    background: var(--paper-2);
    border-radius: var(--radius);
}
.blog-note h2 { font-size: 1.2rem; margin: 0 0 .55rem; }
.blog-note p { color: var(--muted); margin: 0 0 .7rem; max-width: 52rem; }
.blog-note p:last-child { margin: 0; }
.blog-note a { text-decoration: underline; text-underline-offset: 3px; }
.muted { color: var(--muted); }
.empty { padding: 3rem 0; color: var(--muted); }
.pager { display: flex; gap: .4rem; margin-top: 2rem; }
.pager a { min-width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); border-radius: var(--pill); }
.pager a.is-active { background: var(--ink); color: #fff; }
.catalog-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    margin-top: 2.1rem;
}
.catalog-more[hidden] { display: none; }
.catalog-more-btn { min-width: 14rem; }
.js .catalog-more-btn { display: none; }
.js .catalog-more.has-error .catalog-more-btn { display: inline-flex; }
.js .catalog-pager { display: none; }
.catalog-more-status {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}
.catalog-more-status[hidden] { display: none; }
.catalog-more-status::before {
    content: '';
    width: .85rem;
    height: .85rem;
    border: 2px solid var(--line);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: catalog-spin .7s linear infinite;
}
.catalog-more-sentinel { width: 100%; height: 1px; }
.js .catalog-pager { display: none; }
@keyframes catalog-spin { to { transform: rotate(360deg); } }

.crumbs { display: flex; gap: .6rem; flex-wrap: wrap; font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs a { border-bottom: 1px solid transparent; }
.crumbs a:hover { border-color: currentColor; }

.product-page { padding: 1.8rem var(--edge) 0; }
.article { padding: var(--space-section) var(--edge) var(--space-section); max-width: none; }
.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 1.6rem 2.4rem;
    align-items: start;
}
.product-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "stage";
    align-items: start;
    min-height: 0;
    min-width: 0;
}
.product-gallery.has-thumbs {
    grid-template-columns: 4.6rem minmax(0, 1fr);
    grid-template-areas: "thumbs stage";
    gap: .65rem .85rem;
}
.gallery-stage {
    grid-area: stage;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-height: min(34rem, 72vh);
    min-height: 0;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    background: #fff;
}
.gallery-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    display: block;
    cursor: zoom-in;
    background: #fff;
}
.gallery-nav,
.gallery-zoom-btn {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    transition: opacity .2s ease, background .18s ease;
}
.gallery-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    opacity: 0;
}
.gallery-nav-prev { left: .75rem; }
.gallery-nav-next { right: .75rem; }
.gallery-zoom-btn {
    right: .75rem;
    bottom: .75rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    opacity: 0;
}
.gallery-count {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    z-index: 2;
    margin: 0;
    padding: .28rem .55rem;
    border-radius: var(--pill);
    background: rgba(20, 16, 12, .62);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}
.gallery-stage:hover .gallery-nav,
.gallery-stage:hover .gallery-zoom-btn,
.gallery-stage:hover .gallery-count,
.gallery-nav:focus-visible,
.gallery-zoom-btn:focus-visible {
    opacity: 1;
}
.gallery-nav:hover,
.gallery-zoom-btn:hover { background: #fff; }
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(18, 16, 14, .9);
    padding: 3.2rem 4.2rem;
}
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox-frame {
    position: relative;
    max-width: min(96vw, 1120px);
    max-height: 88vh;
    overflow: hidden;
    cursor: zoom-in;
}
.gallery-lightbox.is-zoomed .gallery-lightbox-frame { cursor: zoom-out; overflow: auto; }
.gallery-lightbox img {
    display: block;
    max-width: min(96vw, 1120px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
}
.gallery-lightbox.is-zoomed img {
    max-width: none;
    max-height: none;
    width: min(1800px, 170vw);
    height: auto;
}
.gallery-lightbox .gallery-nav { opacity: 1; }
.gallery-lightbox .gallery-nav-prev { left: 1rem; }
.gallery-lightbox .gallery-nav-next { right: 1rem; }
.gallery-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 2.6rem;
    height: 2.6rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
}
.gallery-lightbox-hint {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
}
.product-info { display: flex; flex-direction: column; min-height: 0; }
.product-info .lead { max-width: none; }
.meta-list { display: grid; gap: .5rem; margin: 1.4rem 0 1.8rem; }
.meta-list div { display: grid; grid-template-columns: 120px 1fr; gap: .5rem; border-bottom: 1px solid var(--line); padding-bottom: .5rem; }
.meta-list dt { color: var(--muted); font-size: .85rem; }
.fineprint { font-size: .82rem; color: var(--muted); max-width: none; margin-top: .9rem; }
.fineprint a { text-decoration: underline; text-underline-offset: 3px; }
.gallery-thumbs {
    grid-area: thumbs;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    max-height: min(34rem, 72vh);
    scroll-snap-type: y proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.gallery-thumbs button {
    flex: 0 0 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    scroll-snap-align: start;
    overflow: hidden;
}
.gallery-thumbs button:hover,
.gallery-thumbs button:focus-visible { border-color: #c8bfb4; }
.gallery-thumbs button.is-active { border-color: var(--ink); }
.gallery-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 6px;
    background: #fff;
}

.product-story { margin-top: var(--space-section); width: 100%; }
.product-story-head { margin-bottom: 1rem; }
.product-story-head h2 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
@media (min-width: 721px) {
    .product-story {
        margin-top: 4.8rem;
        padding-top: .2rem;
    }
}
.prose { margin-top: 0; font-size: 1.05rem; color: #3d3d39; }
.prose.wide, .product-page .prose { max-width: none; width: 100%; }
.prose p { margin: 0 0 1rem; }
.prose h2, .prose h3 { margin: 1.6rem 0 .6rem; }
.product-seo {
    margin-top: .15rem;
    padding-top: 0;
    border-top: 0;
}
.product-seo h3 {
    font-size: clamp(1.08rem, 1.5vw, 1.22rem);
    letter-spacing: -.02em;
    margin: 0 0 .55rem;
}
.product-seo h3:not(:first-child) { margin-top: 1.35rem; }
.product-seo p {
    margin: 0 0 .9rem;
    color: #3d3d39;
    font-size: 1.02rem;
    line-height: 1.65;
}
.product-seo ul {
    margin: 0 0 1.15rem;
    padding-left: 1.15rem;
    color: #3d3d39;
}
.product-seo li { margin: 0 0 .42rem; line-height: 1.5; }
.buy-band {
    display: flex; justify-content: space-between; align-items: center; gap: 2rem;
    margin-top: 2.4rem; padding: 1.7rem 2rem; background: var(--paper-2);
    border: 0; border-radius: var(--radius); box-shadow: none;
}
.buy-band p { color: var(--muted); margin: 0; max-width: 46rem; }

.article-hero { margin-bottom: 1.4rem; max-width: 42rem; }
.article-hero .crumbs { margin-bottom: .7rem; }
.article-hero time { color: var(--muted); font-size: .88rem; }
.article-hero h1 { font-size: clamp(2rem, 4vw, 3.05rem); }
.article-cover {
    width: 100%; height: min(38vh, 340px); object-fit: cover; margin-bottom: 2rem;
    border-radius: var(--radius); box-shadow: none;
}
.article-body {
    max-width: none;
    width: 100%;
    font-size: 1.08rem;
    line-height: 1.7;
}
.article-body a { text-decoration: underline; text-underline-offset: 3px; }
.article-body ul { padding-left: 1.15rem; color: #3b352f; }
.article-body li { margin: 0 0 .4rem; }
.related-posts { padding-top: 0; }

.page-banner { position: relative; color: #fff; min-height: 58vh; overflow: hidden; }
.page-banner img { width: 100%; height: 58vh; object-fit: cover; }
.page-banner::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 12, .15) 10%, rgba(20, 16, 12, .72) 100%);
}
.page-banner-copy { position: absolute; left: var(--edge); right: var(--edge); bottom: 12%; z-index: 1; max-width: 46rem; }
.page-banner-copy p { margin: .5rem 0 0; color: rgba(255, 255, 255, .88); max-width: 38rem; font-size: 1.08rem; }
.page-banner.compact { min-height: 38vh; }
.page-banner.compact img { height: 38vh; }

.about-intro, .contact-layout, .legal-layout {
    display: grid; grid-template-columns: 1.45fr .7fr; gap: 3.5rem;
    padding: 3.5rem var(--edge) 2rem; align-items: start;
}
.about-stats, .contact-aside, .legal-aside {
    background: var(--white); border: 1px solid var(--line); padding: 1.6rem 1.5rem;
    display: grid; gap: 1.1rem;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.about-stats strong, .contact-aside h2, .legal-aside h2 { font-family: var(--sans); font-size: 1.85rem; font-weight: 700; display: block; }
.about-stats span, .contact-aside p, .legal-aside p { color: var(--muted); }
.legal-aside { align-content: start; }
.legal-aside .btn { width: 100%; }

.partner-page { padding-bottom: 1.5rem; }
.partner-page .page-banner.compact { min-height: 34vh; }
.partner-page .page-banner.compact img { height: 34vh; }
.partner-points { padding-top: 2.2rem; padding-bottom: 1.6rem; }
.partner-points-title { margin: 0 0 1.25rem; font-size: 1.35rem; }
.partner-points .icon-grid { grid-template-columns: repeat(4, 1fr); }
.partner-points h3 { font-size: 1.05rem; margin: 0 0 .35rem; }
.partner-ico {
    width: 2.15rem; height: 2.15rem; margin-bottom: .85rem;
    display: grid; place-items: center; color: var(--ink);
}
.partner-ico svg { width: 100%; height: 100%; }
.partner-apply {
    background: var(--paper-2);
    scroll-margin-top: 5.5rem;
    padding-top: 2.2rem;
    padding-bottom: 2.6rem;
}
.partner-kicker {
    margin: 0 0 .35rem;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.partner-apply h2 { margin: 0 0 .4rem; }
.partner-apply .lead { margin: 0 0 1.2rem; }
.partner-step-status {
    margin: 0 0 .75rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
}
.partner-progress {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .4rem;
}
.partner-progress button {
    width: 100%;
    font: inherit;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--line);
    padding: .2rem 0 .55rem;
    cursor: pointer;
    text-align: left;
}
.partner-progress button.is-on { color: var(--ink); border-bottom-color: var(--ink); }
.partner-progress button.is-done { color: var(--ink); border-bottom-color: var(--sage); }
.partner-form {
    display: grid;
    gap: 1.1rem;
    position: relative;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.3rem 1.35rem;
    box-shadow: var(--shadow-sm);
}
.partner-form fieldset {
    margin: 0;
    padding: 1.1rem 1.05rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}
.partner-form.is-wizard fieldset {
    padding: 0;
    border: 0;
    background: transparent;
}
.partner-form.is-wizard .partner-step:not(.is-on) { display: none; }
.partner-form legend {
    padding: 0 .4rem;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.01em;
}
.partner-form.is-wizard legend { padding: 0; margin-bottom: .7rem; }
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem .9rem;
}
.partner-grid .span-2 { grid-column: 1 / -1; }
.partner-form label {
    display: grid;
    gap: .28rem;
    font-size: .86rem;
    font-weight: 600;
}
.partner-form .hint { font-weight: 400; color: var(--muted); font-size: .8rem; }
.partner-cat-label {
    margin: 0 0 .35rem;
    font-size: .86rem;
    font-weight: 600;
}
.partner-form input[type="text"],
.partner-form input[type="email"],
.partner-form input[type="tel"],
.partner-form input[type="url"],
.partner-form select,
.partner-form textarea {
    width: 100%;
    font: inherit;
    font-weight: 400;
    min-height: 44px;
    padding: .65rem .8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
}
.partner-form textarea { min-height: 7.2rem; resize: vertical; line-height: 1.5; }
.partner-form input:focus-visible,
.partner-form select:focus-visible,
.partner-form textarea:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}
.partner-checks { display: grid; gap: .7rem; margin: .15rem 0 .2rem; }
.partner-checks label {
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    gap: .7rem;
    align-items: start;
    font-weight: 400;
    font-size: .9rem;
    line-height: 1.45;
}
.partner-checks input { margin-top: .2rem; }
.partner-cats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .4rem .85rem;
    margin-top: .15rem;
}
.partner-cats label {
    display: grid;
    grid-template-columns: 1.05rem 1fr;
    gap: .5rem;
    align-items: center;
    font-weight: 500;
    font-size: .9rem;
}
.partner-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: .55rem;
    border-top: 1px solid var(--line);
}
.partner-nav [data-wizard-back]:not([hidden]) { margin-right: auto; }
.partner-hp {
    position: absolute !important;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.partner-errors {
    margin: 0 0 1rem;
    padding: .9rem 1rem;
    border-radius: var(--radius);
    background: #f8ecec;
    border: 1px solid #efd0d0;
    color: #7a2424;
}
.partner-errors ul { margin: .35rem 0 0; padding-left: 1.15rem; }
.partner-ok {
    margin: 0 0 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    background: #eef5f0;
    border: 1px solid #cfe4d7;
    color: #1a4f35;
}
.partner-story-copy p { color: var(--muted); margin: 0 0 1rem; }
.partner-story-copy .btn { margin-top: .4rem; }
@media (max-width: 860px) {
    .partner-grid, .partner-cats { grid-template-columns: 1fr; }
    .partner-progress { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-points .icon-grid { grid-template-columns: 1fr 1fr; }
    .partner-page .page-banner.compact { min-height: 0; }
    .partner-page .page-banner.compact img { height: 28vh; }
}

.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.icon-grid article, .contact-card {
    background: var(--white); border: 1px solid var(--line); padding: 1.35rem 1.2rem 1.5rem;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.icon-grid p, .contact-card span { color: var(--muted); margin: 0; }
.icon-mark {
    width: 1.65rem; height: 1.65rem; border: 1.5px solid var(--ink);
    display: block; margin-bottom: .9rem; color: transparent;
    font-size: 0; border-radius: 50%;
}

.split-story {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; align-items: center;
    padding: 1rem var(--edge) 4rem;
}
.split-story-visual img {
    width: 100%; height: 520px; object-fit: cover;
    border-radius: var(--radius); box-shadow: none;
}
.check-list { margin: 1.2rem 0 1.6rem; padding: 0; list-style: none; display: grid; gap: .55rem; }
.check-list li { padding-left: 1.4rem; position: relative; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55rem; width: .7rem; height: 1px; background: var(--ink); }

.material-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.material-grid figure {
    margin: 0; background: var(--white);
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.material-grid img { width: 100%; height: 280px; object-fit: cover; }
.material-grid figcaption { padding: 1.1rem 1.15rem 1.3rem; display: grid; gap: .3rem; }
.material-grid span { color: var(--muted); font-size: .92rem; }

.cta-band {
    margin: 0 var(--edge) 4.4rem; padding: 2.8rem 3rem;
    background: var(--sage); color: #fff;
    display: flex; justify-content: space-between; align-items: center; gap: 2rem;
    border-radius: var(--radius); box-shadow: none;
}
.cta-band p { color: rgba(255,255,255,.82); margin: .4rem 0 0; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-band .btn-dark { background: var(--sand); color: var(--ink); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.8); color: #fff; }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-top: 1.6rem; }
.contact-card { display: grid; align-content: start; color: inherit; }
.contact-card strong { font-family: var(--sans); font-size: 1.15rem; font-weight: 700; }
.contact-card .is-multiline { white-space: pre-line; }

.legal-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2rem; }
.legal-blocks article {
    background: var(--white); border: 1px solid var(--line); padding: 1.2rem 1.15rem 1.3rem;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.legal-blocks p { margin: 0; color: var(--muted); }

.site-footer { background: var(--sage-d); color: #f3f1ea; padding: 2.8rem var(--edge) 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.15fr .95fr 1fr; gap: 2.4rem 2.6rem; align-items: start; }
.site-footer .footer-heading { font-size: .78rem; color: #fff; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a:hover { text-decoration: none; }
.footer-brand .muted { max-width: 22rem; margin: 0 0 1.15rem; }
.footer-cta {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    background: transparent;
    min-height: 2.45rem;
    padding: .5rem 1.15rem;
}
.footer-cta:hover { background: #fff; color: var(--sage-d); }
.footer-cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: .55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-cat-list a {
    display: inline-block;
    color: rgba(243, 241, 234, .88);
    font-size: .95rem;
    line-height: 1.4;
}
.footer-cat-list a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-links { gap: .7rem; }
.footer-links a { color: rgba(243, 241, 234, .88); }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact li {
    display: grid;
    gap: .12rem;
}
.footer-contact span {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(243, 241, 234, .5);
}
.footer-contact .footer-value {
    white-space: pre-line;
    text-transform: none;
    letter-spacing: 0;
    font-size: .95rem;
    color: rgba(243, 241, 234, .88);
    line-height: 1.45;
}
.footer-bottom {
    margin-top: 2.6rem; border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1rem; color: rgba(243, 241, 234, .7); font-size: .85rem;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .nav-links > a, .nav-item > .nav-parent { padding: .85rem .5rem; font-size: .8rem; }
    .nav-sub-toggle { padding: 0 .45rem 0 0; }
    .nav-links > a.is-active::after,
    .nav-item.is-current > .nav-parent::after { left: .4rem; right: .4rem; }
    .icon-grid, .cat-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
    .bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: .48rem var(--edge);
        font-size: .8rem;
    }
    .bar-side,
    .bar-links { display: none; }
    .bar p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        text-align: center;
        line-height: 1.3;
    }
    .masthead {
        grid-template-columns: auto 1fr;
        padding: .9rem 1.2rem;
    }
    .masthead-aside { display: none; }
    .logo { justify-self: start; }
    .logo-thin,
    .logo-heavy { font-size: 1.42rem; }
    .masthead-tools { width: min(420px, 100%); }
    .search { max-width: none; justify-self: stretch; }
    .search-wrap { width: 100%; max-width: none; }
    .menu-btn { display: inline-flex; }
    .nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100dvh;
        width: 100%; border-top: 0; background: var(--white);
        transform: translateX(110%); transition: transform .28s ease;
        z-index: 80; overflow-y: auto; overscroll-behavior: contain;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }
    .nav.is-open { transform: translateX(0); }
    .nav-drawer {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 1.15rem var(--pad) 1.5rem;
        box-sizing: border-box;
    }
    .nav-drawer-head {
        display: flex; justify-content: space-between; align-items: center;
        font-family: var(--sans); font-size: 1.15rem; font-weight: 700; margin-bottom: 1.2rem;
    }
    .nav-close { border: 0; background: none; font: inherit; cursor: pointer; letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; }
    .nav-search { display: flex; max-width: none; margin-bottom: 0; }
    .nav .search-wrap { display: block; max-width: none; margin-bottom: 1rem; }
    .nav .search-suggest { left: 0; right: 0; width: auto; }
    .nav-kicker {
        display: block; margin: 1.25rem 0 .4rem;
        font-size: .82rem; color: var(--muted); font-weight: 500;
    }
    .nav-groups { display: block; padding: 0; flex: 1 1 auto; }
    .nav-drawer-foot {
        display: grid;
        gap: .55rem;
        margin-top: 1.6rem;
        padding-top: 1.15rem;
        border-top: 1px solid var(--line);
    }
    .nav-foot-link,
    .nav-foot-login {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.85rem;
        padding: .65rem 1rem;
        border-radius: 10px;
        font-size: .95rem;
        font-weight: 650;
        letter-spacing: 0;
        text-align: center;
    }
    .nav-foot-link {
        border: 1px solid var(--line);
        background: var(--paper-2);
        color: var(--ink);
    }
    .nav-foot-link.is-active,
    .nav-foot-link:hover { background: #fff; border-color: rgba(28, 28, 28, .2); }
    .nav-foot-login {
        background: var(--ink);
        color: #fff;
    }
    .nav-foot-login:hover { background: #2a2a2a; }
    .nav-links { display: grid; }
    .nav-links > a,
    .nav-item > .nav-parent {
        padding: .85rem 0; font-size: 1.12rem; font-family: var(--sans); font-weight: 650;
        letter-spacing: 0; color: var(--ink); border-bottom: 1px solid var(--line); white-space: normal;
    }
    .nav-links > a.is-active::after,
    .nav-item.is-current > .nav-parent::after { display: none; }
    .nav-item.has-sub {
        display: grid; grid-template-columns: 1fr auto; align-items: center;
        border-bottom: 1px solid var(--line);
    }
    .nav-item.has-sub > .nav-parent { border-bottom: 0; padding-right: .6rem; }
    .nav-sub-toggle {
        width: 2.7rem; height: 2.7rem; padding: 0; border-radius: 10px; color: var(--ink);
    }
    .nav-item.is-open > .nav-sub-toggle svg { transform: rotate(180deg); }
    .nav-sub {
        display: none; position: static; grid-column: 1 / -1;
        min-width: 0; width: auto; margin: 0 -.2rem .55rem; padding: 0;
        border: 0; border-radius: 16px; background: var(--paper-2);
        box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto;
        transform: none; transition: none; overflow: hidden;
        grid-template-columns: 1fr;
    }
    .nav-sub::before { display: none; }
    .nav-item.is-open > .nav-sub { display: grid; }
    .nav-mega-cta { display: none; }
    .nav-mega-links { padding: .75rem .7rem .85rem; }
    .nav-mega-heading { margin-bottom: .55rem; }
    .nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; max-width: none; }
    .nav-mega-chip {
        white-space: nowrap;
        font-size: .92rem !important;
        min-height: 2.65rem;
        padding: .5rem .75rem !important;
    }
    .nav-sub a {
        padding: .78rem 1rem; font-size: 1.02rem; font-weight: 550; color: var(--muted);
        white-space: normal;
    }
    .nav-sub a.is-active { color: var(--ink); background: transparent; }
    .nav-sub a:hover, .nav-sub a:focus-visible { background: rgba(28, 28, 28, .04); }
    .nav-mega-chip.is-active { background: var(--ink); color: #fff; }
    .product-layout, .footer-grid, .split-story, .about-intro, .contact-layout, .legal-layout, .partner-layout,
    .room-grid, .faq-grid, .material-grid, .cta-band, .buy-band, .split-promo {
        grid-template-columns: 1fr 1fr;
    }
    .trust {
        display: flex;
        gap: .65rem;
        margin: 0;
        padding: .85rem var(--edge) 1rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--edge);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-bottom: 1px solid var(--line);
    }
    .trust::-webkit-scrollbar { display: none; }
    .trust > div {
        flex: 0 0 min(78vw, 17.5rem);
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        gap: .7rem;
        text-align: left;
        padding: .7rem .85rem;
        background: var(--paper-2);
        border: 1px solid var(--line);
        border-radius: 12px;
    }
    .trust-icon {
        margin: 0;
        width: 1.65rem;
        height: 1.65rem;
        flex-shrink: 0;
    }
    .trust strong { font-size: .92rem; line-height: 1.2; }
    .trust > div > span { font-size: .78rem; line-height: 1.3; }
    .cta-band, .buy-band { display: grid; }
    .hero { display: block; }
    .hero-visual img { height: 54vh; min-height: 340px; }
    .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .post-feature > a { grid-template-columns: minmax(0, 18rem) minmax(0, 1fr); gap: 0 1.4rem; }
    .post-feature h2 { font-size: 1.55rem; }
}

@media (max-width: 720px) {
    :root { --pad: 1.15rem; }
    .masthead { grid-template-columns: auto auto; }
    .masthead-tools { width: auto; }
    .masthead .search-wrap { display: none; }
    .logo-thin,
    .logo-heavy { font-size: 1.32rem; }
    .hero, .cat-grid, .product-grid, .post-grid, .icon-grid, .footer-grid, .product-layout,
    .room-grid, .faq-grid, .how-grid, .how-bar, .split-story, .about-intro,
    .contact-layout, .legal-layout, .partner-layout, .material-grid, .contact-cards, .legal-blocks, .cta-band, .buy-band, .split-promo {
        grid-template-columns: 1fr;
    }
    .hero { display: block; }
    .hero-visual img { height: 48vh; min-height: 300px; }
    .hero-copy { padding: 3rem 1.3rem 2.6rem; }
    .hero-copy h1 { font-size: clamp(2rem, 8vw, 2.7rem); }
    .how { padding: 0 0 var(--space-section); margin-bottom: 0; }
    .split-promo { min-height: 0; }
    .split-promo-copy { padding: 3.2rem 1.5rem; gap: 1rem; }
    .split-promo-visual img { min-height: 42vh; height: 42vh; }
    .page-banner, .page-banner.compact { min-height: 0; }
    .page-banner img { height: 42vh; }
    .page-banner.compact img { height: 32vh; }
    .split-story-visual img, .material-grid img { height: 240px; }
    .cat-tile.visual img { height: 190px; }
    .post-feature > a { grid-template-columns: 1fr; gap: .2rem; }
    .post-feature { margin-bottom: 1.8rem; }
    .post-feature .post-media,
    .post-media { aspect-ratio: 16 / 9; }
    .post-feature h2 { font-size: 1.45rem; }
    .article-cover { height: 210px; }
    .blog-page { padding: 1.5rem var(--pad) 1.8rem; }
    .blog-intro { margin-bottom: 1.6rem; }
    .blog-note { padding: 1.25rem 1.2rem; }
    .catalog-hero { padding: 1.25rem var(--pad) 1rem; text-align: left; }
    .catalog-hero.is-search { padding: 1.15rem var(--pad) 1rem; }
    .catalog-hero h1 { font-size: clamp(1.4rem, 6vw, 1.85rem); margin-bottom: .4rem; }
    .catalog-hero.is-search h1 { font-size: 1.28rem; margin: 0; }
    .catalog-hero .lead {
        font-size: .98rem;
        margin-bottom: .6rem;
        line-height: 1.5;
        max-width: none;
    }
    .catalog-hero-seo {
        gap: .6rem;
        margin-bottom: 0;
        text-align: left;
    }
    .catalog-hero-seo p { font-size: .95rem; line-height: 1.5; }
    .catalog-hero .subcat-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: .4rem;
        margin-top: 1rem;
    }
    .catalog-hero .subcat-nav a {
        min-height: 2.2rem;
        padding: .35rem .9rem;
        font-size: .84rem;
    }
}

.seo-guide {
    padding: var(--space-section) var(--edge);
    display: grid;
    gap: 1.8rem;
}
.seo-guide-intro .lead { max-width: none; }
.seo-block h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.seo-quote {
    margin: 0;
    padding: 1.8rem 2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: none;
}
.seo-quote p {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.35;
    margin: 0 0 .8rem;
}
.seo-quote cite { color: var(--muted); font-style: normal; font-size: .88rem; letter-spacing: .06em; }
.seo-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: .95rem;
}
.seo-table caption {
    text-align: left;
    font-family: var(--serif);
    font-size: 1.35rem;
    margin-bottom: .8rem;
}
.seo-table th, .seo-table td {
    border-bottom: 1px solid var(--line);
    padding: .85rem 1rem;
    text-align: left;
    vertical-align: top;
}
.seo-table th { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.seo-table td:first-child { font-weight: 500; }
.seo-faq h3 { margin-bottom: 1rem; }
.seo-faq h4 { font-family: var(--serif); font-size: 1.15rem; margin: 0 0 .4rem; }
.intent .section-head h2 { max-width: 28rem; }

.pager a { transition: background .18s ease, color .18s ease; }
.contact-card:hover { border-color: rgba(26, 23, 20, .22); }
.icon-grid article { transition: none; }
.icon-grid article:hover { box-shadow: none; transform: none; }
.buy-band { border-radius: var(--radius); }
.product-page { padding-top: 1.8rem; }
.footer-brand .logo-mark { margin: 0 0 1rem; color: #fff; }
.footer-brand .logo-thin,
.footer-brand .logo-heavy { font-size: 1.85rem; }
.footer-brand .logo-thin { font-weight: 300; }
.site-footer .muted { color: rgba(243, 241, 234, .72); }
.how-cta:hover { background: var(--paper); color: var(--ink); }

.card { position: relative; }
.site-footer .muted { color: rgba(243, 241, 234, .72); }
.how-cta:hover { background: #fff; color: var(--sage-d); }

.site-footer .footer-heading { color: #fff; }
.legal-blocks { grid-template-columns: 1fr 1fr; }
.prose a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.live-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.live-columns[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.live-block { margin: 0 0 1.6rem; }
.live-block-image img { width: 100%; border-radius: var(--radius); display: block; }
.live-block-heading { margin: 0 0 .4rem; }
h1.live-block-heading { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; }
h2.live-block-heading { font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.18; }
h3.live-block-heading { font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.25; }
h4.live-block-heading { font-size: 1.12rem; font-family: inherit; font-weight: 600; }
.icon-mark svg { width: 1.15rem; height: 1.15rem; }
.live-icons { grid-template-columns: repeat(3, 1fr); }
.live-quote {
    margin: 0;
    padding: .2rem 0 .2rem 1.35rem;
    border-left: 2px solid var(--ink);
}
.live-quote p {
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 0 0 .55rem;
}
.live-quote cite {
    color: var(--muted);
    font-style: normal;
    font-size: .92rem;
}
.live-divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: .4rem 0;
}
.live-btn-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.live-spacer { position: relative; }

@media (hover: hover) {
    .cat-tile.visual:hover::after,
    .cat-dir-hero:hover::after { background: rgba(28, 25, 22, .14); }
    .cat-tile.visual:hover img,
    .cat-dir-hero:hover img,
    .room-grid a:hover img { transform: scale(1.05); }
    .card:hover .card-media img,
    .post-card:hover .post-media img { transform: scale(1.045); }
}

@media (prefers-reduced-motion: reduce) {
    .cat-tile.visual img,
    .cat-dir-hero img,
    .card-media img,
    .room-grid img,
    .post-media img {
        transition: none;
        transform: none;
    }
    .cat-tile.visual::after { transition: none; }
    .cat-tile.visual:hover img,
    .cat-dir-hero:hover img,
    .card:hover .card-media img,
    .room-grid a:hover img,
    .post-card:hover .post-media img { transform: none; }
}

@media (max-width: 720px) {
    .product-gallery,
    .product-gallery.has-thumbs {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: "stage" "thumbs";
        gap: .7rem;
        max-width: none;
    }
    .gallery-stage {
        min-height: 0;
        height: auto;
        aspect-ratio: 1;
        max-height: 22rem;
    }
    .gallery-stage img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }
    .gallery-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
    }
    .gallery-nav,
    .gallery-zoom-btn,
    .gallery-count { opacity: 1; }
    .gallery-lightbox { padding: 3.4rem .7rem 2.4rem; }
    .gallery-lightbox .gallery-nav-prev { left: .35rem; }
    .gallery-lightbox .gallery-nav-next { right: .35rem; }
    .product-info { min-height: 0; }
    .how-grid li:nth-child(2) { transform: none; }
    .live-columns,
    .live-columns[data-cols="3"] { grid-template-columns: 1fr; }
    .live-icons { grid-template-columns: 1fr; }
}

.cat-dir { display: grid; gap: 4.4rem; }
.cat-dir-section { display: grid; gap: 1.55rem; }
.cat-dir-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem 3rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--line);
}
.cat-dir-head h2 {
    margin: 0 0 .35rem;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    letter-spacing: -.03em;
}
.cat-dir-head h2 a { color: inherit; text-decoration: none; }
.cat-dir-head h2 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.cat-dir-meta {
    margin: 0;
    font-size: .88rem;
    color: var(--muted);
    letter-spacing: .04em;
}
.cat-dir-copy {
    margin: .55rem 0 0;
    max-width: 38rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}
.cat-dir-more {
    flex-shrink: 0;
    font-size: .9rem;
    border-bottom: 1px solid var(--ink);
    padding-bottom: .08rem;
    white-space: nowrap;
    margin-bottom: .2rem;
}
.cat-dir-grid { gap: 1.2rem; grid-template-columns: repeat(3, 1fr); }
.cat-dir-grid .cat-tile.visual img { height: 280px; }
.cat-tile.visual.cat-dir-wide img { height: 390px; }

@media (max-width: 1200px) {
    .cat-dir-grid,
    .cat-dir-grid.visual { grid-template-columns: repeat(3, 1fr); }
    .cat-dir-grid .cat-tile.visual img { height: 240px; }
    .cat-tile.visual.cat-dir-wide img { height: 320px; }
}

@media (max-width: 900px) {
    .cat-dir { gap: 3.4rem; }
    .cat-dir-head { flex-direction: column; align-items: flex-start; gap: .85rem; }
    .cat-dir-grid,
    .cat-dir-grid.visual { grid-template-columns: repeat(2, 1fr); }
    .cat-dir-grid .cat-tile.visual img { height: 220px; }
    .cat-tile.visual.cat-dir-wide img { height: 260px; }
}

@media (max-width: 720px) {
    .cat-dir { gap: 2.8rem; }
    .cat-dir-copy { font-size: .98rem; }
    .cat-dir-grid,
    .cat-dir-grid.visual { grid-template-columns: repeat(2, 1fr); }
    .cat-dir-grid .cat-tile.visual img { height: 170px; }
    .cat-tile.visual.cat-dir-wide img { height: 220px; }
}

@media (max-width: 420px) {
    .cat-dir-grid,
    .cat-dir-grid.visual { grid-template-columns: 1fr; }
    .cat-dir-grid .cat-tile.visual img,
    .cat-tile.visual.cat-dir-wide img { height: 230px; }
}




