:root {
  --ink: #202124;
  --muted: #6c7077;
  --soft: #f7f5f1;
  --cream: #fff8e9;
  --gold: #d79a36;
  --brick: #a84f3c;
  --forest: #31493c;
  --blue: #547587;
  --line: rgba(32, 33, 36, .13);
  --shadow: 0 18px 48px rgba(32, 33, 36, .1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.55;
}

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

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

input,
select,
button {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 900;
}

.sale-bar {
  background: #0f0f10;
  color: #fff;
  padding: 9px 18px;
  text-align: center;
  font-size: .9rem;
  border-bottom: 1px solid rgba(215, 154, 54, .38);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #111;
  color: #f5f2ea;
  border-bottom: 1px solid rgba(215, 154, 54, .35);
}

.header-shell {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 16px 38px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, #8d6328, var(--gold));
  box-shadow: none;
  font-weight: 950;
  font-size: 1.12rem;
}

.brand-word {
  color: #fff;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.header-search input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-right: 0;
  border-radius: 0;
  padding: 14px 20px;
  background: #f8f8f8;
  color: #1f1f1f;
  font-size: 1.05rem;
}

.header-search button {
  min-width: 62px;
  border: 0;
  border-radius: 0;
  background: #f8f8f8;
  color: #111;
  padding: 12px 18px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  cursor: pointer;
}

.utility-nav,
.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.utility-nav {
  justify-content: flex-end;
  gap: 24px;
}

.utility-nav a {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #e7e1d7;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.1;
}

.utility-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  color: #f8f5ef;
}

.utility-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  justify-content: center;
  gap: 0;
  min-height: 66px;
  background: #333;
  border-top: 1px solid rgba(215, 154, 54, .45);
  position: relative;
}

.nav-item {
  position: static;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 66px;
  padding: 0 18px;
  color: #ddd;
  font-weight: 850;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.nav-link span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: .68em;
  transform: translateY(.03em);
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  background: #111;
  color: #fff;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(180px, .8fr));
  gap: 54px;
  padding: 42px max(38px, calc((100vw - 1240px) / 2));
  background: #111;
  color: #d6d1ca;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.mega-menu.compact {
  grid-template-columns: repeat(2, minmax(220px, 320px));
  justify-content: center;
}

.mega-menu.color-menu {
  grid-template-columns: minmax(360px, 520px) minmax(260px, 420px);
  justify-content: center;
}

.mega-menu.four-col {
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(180px, .8fr));
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-feature {
  max-width: 360px;
}

.mega-feature strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.mega-feature p {
  margin: 0 0 18px;
  color: #bdb7ad;
  font-size: 1rem;
}

.mega-feature a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  font-style: italic;
}

.mega-column h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.1;
}

.mega-column a {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  color: #c5c0b9;
  font-size: 1.02rem;
  font-weight: 700;
}

.mega-column a.menu-circle-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: auto;
  margin-bottom: 22px;
}

.menu-circle {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .68), transparent 0 20%, rgba(255, 255, 255, 0) 21%),
    linear-gradient(135deg, #d8c6a6, #756350);
  border: 2px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28), inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.menu-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-circle.has-menu-image {
  background: #2b2b2b;
}

.circle-landscape {
  background:
    linear-gradient(180deg, rgba(129, 172, 186, .95) 0 42%, rgba(234, 224, 184, .92) 43% 55%, rgba(77, 112, 74, .95) 56%),
    linear-gradient(135deg, #8bacc0, #3f6b4d);
}

.circle-botanical {
  background:
    radial-gradient(circle at 62% 30%, #f4e8c4 0 11%, transparent 12%),
    radial-gradient(circle at 36% 62%, #78915d 0 16%, transparent 17%),
    linear-gradient(135deg, #d8cdb1, #405f3f);
}

.circle-animals {
  background:
    radial-gradient(circle at 50% 44%, #d79a36 0 18%, transparent 19%),
    radial-gradient(circle at 38% 28%, #f0d8a8 0 8%, transparent 9%),
    linear-gradient(135deg, #4d392a, #b86b3f);
}

.circle-still {
  background:
    radial-gradient(circle at 45% 48%, #c8a35c 0 20%, transparent 21%),
    radial-gradient(circle at 62% 58%, #6d7a48 0 14%, transparent 15%),
    linear-gradient(135deg, #2c2c28, #8b7051);
}

.circle-classic {
  background:
    radial-gradient(circle at 42% 42%, #f4e3bd 0 22%, transparent 23%),
    linear-gradient(135deg, #27384f, #d7b36a);
}

.circle-vintage {
  background:
    linear-gradient(135deg, rgba(168, 79, 60, .95), rgba(237, 208, 151, .92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .18) 0 5px, transparent 5px 10px);
}

.circle-abstract {
  background:
    radial-gradient(circle at 30% 40%, #88a7b8 0 17%, transparent 18%),
    radial-gradient(circle at 68% 62%, #d79a36 0 19%, transparent 20%),
    linear-gradient(135deg, #a84f3c, #31493c);
}

.circle-drawing {
  background:
    repeating-linear-gradient(115deg, rgba(55, 55, 55, .5) 0 2px, transparent 2px 10px),
    linear-gradient(135deg, #f3ead8, #b9ab93);
}

.mega-column a:hover,
.mega-feature a:hover,
.utility-nav a:hover {
  color: #fff;
}

.menu-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 14px;
}

.menu-swatches a {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: auto;
  margin: 0;
  text-align: center;
  font-size: .86rem;
}

.menu-swatches a::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--swatch);
  border: 1px solid rgba(255, 255, 255, .32);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}

.section-head a:hover,
.product-link {
  color: var(--brick);
}

.flash {
  max-width: 1180px;
  margin: 16px auto;
  padding: 12px 16px;
  border-radius: 8px;
}

.success {
  background: #e7f1e4;
}

.error {
  background: #f9e5df;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(430px, 540px) minmax(420px, 600px);
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  padding: 64px max(28px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(215, 154, 54, .18), transparent 31%),
    linear-gradient(135deg, #fff7e8 0%, #f4ede4 46%, #e9f1ed 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 530px;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #4d4d4d;
  font-size: 1.12rem;
}

.hero-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--brick);
  font-size: .82rem;
  font-weight: 800;
}

.actions,
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
}

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

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

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

.header-search button {
  border-radius: 0;
}

.header-search button:hover {
  border-color: transparent;
  background: #f8f8f8;
  color: #111;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  margin-top: 28px;
}

.hero-stats span {
  display: grid;
  gap: 2px;
}

.hero-stats strong {
  font-size: 1.5rem;
  font-weight: 950;
}

.hero-stats em {
  color: var(--muted);
  font-size: .86rem;
  font-style: normal;
}

.room-scene {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 590px);
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, #e6dfd5 0 62%, #c8b8a8 62% 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
}

.room-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(135deg, #b99874, #8d6a52);
}

.floating-print {
  position: absolute;
  display: block;
  background: #fff;
  padding: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.floating-print img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--soft);
}

.print-1 {
  left: 13%;
  top: 15%;
  width: 240px;
  height: 170px;
  transform: rotate(-1deg);
}

.print-2 {
  right: 15%;
  top: 18%;
  width: 150px;
  height: 190px;
  transform: rotate(2deg);
}

.print-3 {
  left: 51%;
  top: 24%;
  width: 130px;
  height: 120px;
  transform: rotate(1deg);
}

.sofa {
  position: absolute;
  left: 11%;
  right: 8%;
  bottom: 11%;
  height: 105px;
  border-radius: 36px 36px 18px 18px;
  background: #eef2ed;
  box-shadow: 0 18px 35px rgba(50, 50, 50, .12);
}

.sofa::before,
.sofa::after {
  content: "";
  position: absolute;
  top: 25px;
  width: 95px;
  height: 95px;
  border-radius: 24px;
  background: #dde5df;
}

.sofa::before {
  left: -28px;
}

.sofa::after {
  right: -28px;
}

.hero.hero-room-banner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 560px;
  aspect-ratio: 2048 / 1117;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #14110e;
}

.hero.hero-room-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, .68) 0%, rgba(13, 12, 10, .48) 28%, rgba(13, 12, 10, .14) 56%, rgba(13, 12, 10, .04) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, 0) 44%);
  pointer-events: none;
}

.hero-room-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-room-banner .hero-copy {
  position: absolute;
  z-index: 4;
  left: 8.5%;
  top: 25%;
  width: min(36rem, 38vw);
  max-width: none;
}

.hero-room-banner .hero-copy h1 {
  max-width: 36rem;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4vw, 5.25rem);
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .42);
}

.hero-room-banner .hero-copy p {
  max-width: 34rem;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 3px 14px rgba(0, 0, 0, .38);
}

.hero-room-banner .hero-kicker {
  width: max-content;
  max-width: 100%;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .13);
  color: #f3d9a4;
  backdrop-filter: blur(8px);
}

.hero-room-banner .button {
  border-color: #c5a15d;
  border-radius: 4px;
  background: linear-gradient(135deg, #c5a15d, #aa8138);
  box-shadow: 0 15px 32px rgba(0, 0, 0, .26);
}

.hero-room-banner .button.secondary {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-art-slot {
  position: absolute;
  z-index: 3;
  display: block;
  color: #fff;
}

.hero-art-slot img {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity .38s ease;
}

.hero-art-slot.is-changing img {
  opacity: .18;
}

.hero-art-slot-large {
  left: 43.7%;
  top: 9.65%;
  width: 25.9%;
  height: 50.5%;
  background: #eee7d9;
  box-shadow: 0 18px 28px rgba(0, 0, 0, .2), inset 0 0 0 4px rgba(245, 241, 231, .45);
}

.hero-art-slot-large img {
  object-fit: cover;
  border: 4px solid rgba(238, 233, 222, .5);
}

.hero-art-slot-small {
  left: 72%;
  top: 13.55%;
  width: 14.85%;
  height: 38.35%;
  padding: 1.15%;
  background: #d8d3c9;
  border: 2px solid rgba(115, 110, 101, .62);
  box-shadow: 0 16px 24px rgba(0, 0, 0, .2), inset 0 0 0 5px rgba(255, 255, 255, .25);
}

.hero-art-slot-small img {
  object-fit: contain;
  background: #f7f2e8;
  border: 1px solid rgba(110, 104, 92, .35);
}

.hero-art-caption {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 135%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  font-size: clamp(.8rem, 1vw, 1.05rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: pre-line;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .52);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-item {
  min-height: 120px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.feature-item span,
.section-subtitle {
  color: var(--muted);
}

.section,
.dashboard,
.narrow,
.catalog-hero,
.catalog-layout,
.product-detail,
.checkout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 28px;
}

.soft-section {
  max-width: none;
  background: var(--soft);
  padding-left: max(28px, calc((100vw - 1240px) / 2));
  padding-right: max(28px, calc((100vw - 1240px) / 2));
}

.band {
  max-width: none;
  background: var(--soft);
  padding-left: max(28px, calc((100vw - 1240px) / 2));
  padding-right: max(28px, calc((100vw - 1240px) / 2));
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head .button {
  flex: 0 0 auto;
}

.small-caps {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-grid,
.category-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.category-tile,
.category-card {
  min-height: 240px;
  position: relative;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 24px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .14);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .58));
}

.category-card strong,
.category-card em,
.category-card .small-caps {
  position: relative;
  z-index: 1;
}

.category-card strong {
  font-size: 1.35rem;
}

.category-card em {
  font-style: normal;
  color: rgba(255, 255, 255, .82);
}

.category-card .small-caps {
  color: rgba(255, 255, 255, .78);
}

.cat-bg-1 {
  background: linear-gradient(135deg, #d7b789, #536f52);
}

.cat-bg-2 {
  background: linear-gradient(135deg, #202a44, #88a7b8);
}

.cat-bg-3 {
  background: linear-gradient(135deg, #f3d9d0, #a84f3c);
}

.cat-bg-4 {
  background: linear-gradient(135deg, #f3e4c3, #d79a36);
}

.cat-bg-5 {
  background: linear-gradient(135deg, #3c4f65, #d9d2c1);
}

.cat-bg-6 {
  background: linear-gradient(135deg, #202124, #88705a);
}

.category-card.has-image {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .64)), var(--category-image);
  background-position: center;
  background-size: cover;
}

.category-card.has-image .category-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .28));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}

.product-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card a {
  display: grid;
  height: 100%;
}

.product-art-wrap {
  min-height: 285px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .08)),
    var(--soft);
}

.product-art-wrap img {
  max-width: 84%;
  max-height: 245px;
  object-fit: contain;
  background: #fff;
  padding: 9px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .16);
}

.product-info {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 16px;
}

.badge-sale {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  border: 1px solid rgba(128, 96, 0, .15);
  border-radius: 999px;
  background: #fff3cd;
  color: #806000;
  padding: 4px 9px;
  font-size: .76rem;
  font-weight: 800;
}

.product-title {
  display: block;
  font-weight: 900;
}

.product-link {
  margin-top: 4px;
  font-size: .84rem;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.promo-panel {
  max-width: 1240px;
  margin: 34px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
  border-radius: 8px;
  padding: 54px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, .38), transparent 18%),
    linear-gradient(135deg, #27362d, #0f1612);
  color: #fff;
}

.promo-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(215, 154, 54, .26);
}

.promo-copy,
.promo-stack {
  position: relative;
  z-index: 1;
}

.promo-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, .72);
}

.promo-copy .small-caps {
  color: #ffd988;
}

.promo-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.promo-stack img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.promo-stack img:nth-child(3) {
  grid-column: 1 / -1;
  height: 140px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-links a {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quick-links strong {
  font-size: 1.12rem;
}

.quick-links span {
  color: var(--muted);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
}

.filters {
  position: sticky;
  top: 145px;
  align-self: start;
  max-height: calc(100vh - 165px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}

.filter-scroll {
  max-height: inherit;
  overflow-y: auto;
  padding: 0 20px 60px 0;
  scrollbar-width: thin;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.filter-head h2 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: none;
}

.filter-head a {
  color: var(--brick);
  font-size: .84rem;
  font-weight: 800;
}

.filter-panel,
.link-list-panel {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.filter-panel h3,
.link-list-panel h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 900;
}

.shape-filter,
.color-swatches,
.check-filter,
.radio-filter,
.link-list-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shape-filter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shape-filter a,
.color-swatches a {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 58px;
  color: var(--ink);
}

.shape-example {
  display: block;
  border: 2px solid var(--ink);
  background: #f5f2ed;
}

.shape-horizontal {
  width: 42px;
  height: 30px;
}

.shape-vertical {
  width: 30px;
  height: 42px;
}

.shape-square {
  width: 40px;
  height: 40px;
}

.shape-panoramic {
  width: 46px;
  height: 22px;
}

.shape-filter .selected .shape-example,
.color-swatches .selected .color-swatch {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
}

.filter-note {
  color: var(--muted);
  font-size: .82rem;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.color-swatch {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 999px;
}

.check-filter,
.radio-filter {
  display: grid;
  gap: 2px;
}

.check-filter a,
.check-filter > li > span,
.radio-filter a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 5px 0;
  color: var(--ink);
}

.check-box,
.radio-dot {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1.5px solid #8f8a82;
  background: #fff;
}

.radio-dot {
  border-radius: 999px;
}

.check-filter .selected .check-box {
  border-color: var(--brick);
  background: linear-gradient(135deg, var(--brick) 0 45%, #fff 45% 56%, var(--brick) 56%);
}

.radio-filter .selected .radio-dot {
  border: 5px solid var(--brick);
}

.check-filter .name,
.radio-filter .name {
  min-width: 0;
  color: #2b2b2b;
  font-size: .94rem;
}

.radio-filter .price {
  color: var(--brick);
  font-size: .84rem;
  font-weight: 900;
}

.radio-filter .price em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.exact-size {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.exact-size label {
  color: var(--muted);
  font-size: .84rem;
}

.exact-size div,
.sidebar-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.exact-size input,
.sidebar-search input {
  min-width: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  padding: 10px 12px;
}

.exact-size button,
.sidebar-search button {
  min-height: 0;
  border-radius: 0 999px 999px 0;
  padding: 10px 12px;
  font-size: .8rem;
}

.link-list-panel a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  font-weight: 650;
}

.link-list-panel a::after {
  content: ">";
  float: right;
  color: var(--muted);
}

.catalog-results-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.catalog-toolbar {
  margin-top: 22px;
}

.toolbar input,
.toolbar select,
.stack input,
.selector-form input,
.selector-form select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  background: #fff;
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pagination .active {
  background: var(--ink);
  color: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
}

.art-preview {
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: 28px;
  background: var(--soft);
}

.art-preview img {
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .14);
}

.product-panel {
  position: sticky;
  top: 150px;
  align-self: start;
}

.selector-form,
.stack {
  display: grid;
  gap: 14px;
}

.selector-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.meta-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 16px;
  margin-top: 24px;
}

.meta-list dt {
  color: var(--muted);
}

.line-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.line-item img {
  height: 90px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 8px;
}

.total {
  margin: 24px 0;
  text-align: right;
  font-size: 1.3rem;
  font-weight: 950;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
}

.summary {
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
}

.summary p {
  display: flex;
  justify-content: space-between;
}

.auth-card {
  max-width: 430px;
  margin: 60px auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.warn {
  border-color: #e8b2a8;
}

.admin-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.admin-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--soft);
}

.admin-page {
  max-width: 1480px;
  margin: 0 auto;
  padding: 34px 24px 70px;
}

.admin-page h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.admin-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 24px;
  margin-top: 28px;
}

.admin-panels > section,
.admin-form,
.admin-edit-grid > aside {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(5, minmax(150px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.admin-form,
.admin-form-grid,
.admin-checkbox-grid {
  display: grid;
  gap: 14px;
}

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

.admin-checkbox-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-edit-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-preview {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
}

.admin-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.admin-page table {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-page table thead,
.admin-page table tbody,
.admin-page table tr {
  width: 100%;
}

.admin-page th {
  white-space: nowrap;
  background: var(--soft);
}

.admin-page td {
  min-width: 110px;
}

.admin-page textarea,
.admin-page input,
.admin-page select {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.thumb {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
}

.empty {
  padding: 34px;
  border-radius: 8px;
  background: var(--soft);
}

.policy-hero {
  padding: 72px max(28px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 154, 54, .18), transparent 28%),
    linear-gradient(135deg, #fff7e8 0%, #f4ede4 52%, #e9f1ed 100%);
}

.policy-hero h1 {
  max-width: 860px;
}

.policy-hero p {
  max-width: 760px;
  color: #4d4d4d;
  font-size: 1.12rem;
}

.policy-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 54px 28px;
}

.policy-aside {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.policy-aside strong {
  font-size: 1.1rem;
}

.policy-aside p,
.policy-aside span {
  margin: 0;
  color: var(--muted);
}

.policy-aside .button {
  width: 100%;
  word-break: break-word;
  text-transform: none;
}

.policy-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.policy-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.policy-card h3 {
  margin-top: 30px;
  font-size: 1.2rem;
}

.policy-card p {
  color: #4d4d4d;
}

.policy-card a {
  color: var(--brick);
  font-weight: 800;
}

.policy-callout {
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.contact-grid > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-grid h3 {
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 70px;
  padding: 46px max(28px, calc((100vw - 1240px) / 2));
  background: #151515;
  color: #ddd;
}

.site-footer strong {
  color: #fff;
  font-weight: 900;
}

.site-footer p {
  max-width: 450px;
  color: rgba(255, 255, 255, .62);
}

.site-footer nav {
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: #d6d6d6;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 1040px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px 22px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }

  .header-search,
  .utility-nav {
    grid-column: 1 / -1;
  }

  .utility-nav,
  .main-nav {
    justify-content: flex-start;
  }

  .utility-nav {
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .utility-nav a {
    grid-auto-flow: column;
    align-items: center;
    justify-items: start;
    white-space: nowrap;
  }

  .main-nav {
    display: none;
    min-height: 0;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 6px 16px 14px;
    border-top-color: rgba(255, 255, 255, .12);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 6px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .mega-menu {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .hero.hero-room-banner {
    display: block;
    min-height: 620px;
    aspect-ratio: auto;
  }

  .hero-room-banner .hero-copy {
    left: 50%;
    top: 50%;
    width: min(90%, 38rem);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-room-banner .hero-copy h1,
  .hero-room-banner .hero-copy p {
    max-width: none;
  }

  .hero-room-banner .actions {
    justify-content: center;
  }

  .hero-art-slot {
    display: none;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    max-width: 720px;
  }

  .room-scene {
    justify-self: stretch;
    width: 100%;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .sale-bar {
    font-size: .78rem;
  }

  .header-shell {
    padding: 15px 18px;
  }

  .brand-word {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: .98rem;
  }

  .main-nav {
    padding: 6px 12px 14px;
  }

  .nav-link {
    white-space: nowrap;
    min-height: 52px;
    padding: 0 12px;
    font-size: .92rem;
  }

  .header-search input {
    min-height: 48px;
    font-size: .96rem;
  }

  .header-search button {
    min-width: 52px;
    font-size: .86rem;
  }

  .utility-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .utility-nav a {
    grid-auto-flow: row;
    justify-items: center;
    text-align: center;
    font-size: .8rem;
    min-width: 0;
  }

  .utility-icon {
    width: 24px;
    height: 24px;
  }

  .utility-icon svg {
    width: 23px;
    height: 23px;
  }

  .hero,
  .section,
  .dashboard,
  .narrow,
  .catalog-hero,
  .catalog-layout,
  .product-detail,
  .checkout,
  .policy-layout,
  .policy-hero {
    padding: 40px 18px;
  }

  .hero.hero-room-banner {
    padding: 0;
    min-height: 560px;
  }

  .hero-room-banner .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .hero-stats,
  .feature-strip,
  .product-detail,
  .checkout,
  .catalog-layout,
  .quick-links,
  .promo-panel,
  .policy-layout,
  .contact-grid,
  .admin-panels,
  .admin-edit-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-page {
    padding: 28px 14px 54px;
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }

  .policy-card {
    padding: 24px 18px;
  }

  .room-scene {
    min-height: 360px;
  }

  .print-1 {
    width: 185px;
    height: 132px;
    left: 9%;
  }

  .print-2 {
    width: 115px;
    height: 148px;
    right: 10%;
  }

  .print-3 {
    width: 105px;
    height: 96px;
    left: 45%;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head,
  .site-footer {
    display: block;
  }

  .section-head .button {
    margin-top: 16px;
  }

  .promo-panel {
    margin: 18px;
    padding: 34px 22px;
  }

  .filters,
  .product-panel {
    position: static;
    max-height: none;
    overflow: visible;
    border: 0;
    padding: 0;
  }

  .filter-scroll {
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .shape-filter {
    grid-template-columns: repeat(4, minmax(54px, 1fr));
  }

  .color-swatches {
    grid-template-columns: repeat(8, 1fr);
  }

  .art-preview {
    min-height: 360px;
  }

  .line-item {
    grid-template-columns: 70px 1fr;
  }

  .line-item > div:last-child {
    grid-column: 2;
  }
}
