:root {
  color-scheme: light;
  --paper: #f6f0e7;
  --paper-deep: #e7dac9;
  --cream: #fffaf3;
  --ink: #243029;
  --muted: #6f756f;
  --clay: #b86145;
  --clay-dark: #8b432d;
  --olive: #65705d;
  --sage: #dbe2d4;
  --line: rgba(36, 48, 41, .16);
  --shadow: 0 28px 70px rgba(78, 62, 43, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 14px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 240, 231, .92);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand > span {
  display: grid;
  font-family: var(--serif);
  font-size: 26px;
  line-height: .9;
  letter-spacing: -.035em;
}
.brand b { font-weight: 700; }
.brand small {
  margin-top: 8px;
  color: var(--muted);
  font: 700 9px/1 var(--sans);
  letter-spacing: .17em;
  text-transform: uppercase;
}
.topbar nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}
.topbar nav a {
  position: relative;
  padding-block: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .035em;
}
.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--clay);
  transition: right .25s ease;
}
.topbar nav a:hover::after { right: 0; }
.tools { display: flex; align-items: center; gap: 10px; }
.tools select {
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 243, .82);
  font-weight: 800;
}
.bag {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--cream);
  background: var(--ink);
  font-weight: 800;
}
.bag b {
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  font-size: 12px;
}

.hero {
  width: min(1500px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(70px, 8vw, 125px) 0;
}
.kicker {
  display: inline-block;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font: 500 clamp(54px, 6vw, 96px)/.97 var(--serif);
  letter-spacing: -.055em;
}
.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.solid,
.hero-actions button,
.room-copy button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--clay);
  border-radius: 3px;
  color: var(--cream);
  background: var(--clay);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.solid:hover,
.hero-actions button:hover,
.room-copy button:hover { transform: translateY(-2px); background: var(--clay-dark); }
.underlined {
  color: var(--ink) !important;
  border-color: transparent !important;
  border-bottom: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.hero-collage {
  position: relative;
  min-height: 580px;
}
.hero-collage figure { margin: 0; }
.hero-large {
  position: absolute;
  inset: 0 19% 7% 0;
  overflow: hidden;
  border-radius: 2px;
  background: #ddd3c6;
  box-shadow: var(--shadow);
}
.hero-large::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(30, 30, 25, .64));
}
.hero-large img { width: 100%; height: 100%; object-fit: cover; }
.hero-large figcaption {
  position: absolute;
  left: clamp(20px, 3vw, 42px);
  right: 25px;
  bottom: clamp(20px, 3vw, 40px);
  z-index: 2;
  display: grid;
  gap: 7px;
  color: #fff;
}
.hero-large figcaption small { font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.hero-large figcaption strong { max-width: 430px; font: 500 clamp(22px, 2.2vw, 34px)/1.16 var(--serif); }
.hero-small {
  position: absolute;
  right: 0;
  width: 31%;
  overflow: hidden;
  border: 9px solid var(--paper);
  background: var(--cream);
  box-shadow: 0 20px 45px rgba(68, 54, 39, .17);
}
.hero-small.top { top: 5%; height: 39%; }
.hero-small.bottom { bottom: 3%; height: 34%; }
.hero-small img { width: 100%; height: 100%; object-fit: contain; padding: 10%; }
.hand-note {
  position: absolute;
  right: 3%;
  top: 48%;
  z-index: 5;
  transform: rotate(-7deg);
  color: var(--clay-dark);
  font: italic 500 clamp(18px, 2vw, 28px)/1 var(--serif);
}

.ticker {
  overflow: hidden;
  padding: 19px 0;
  border-block: 1px solid var(--line);
  color: var(--olive);
  background: rgba(255, 250, 243, .66);
  white-space: nowrap;
}
.ticker div {
  width: max-content;
  min-width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .2em;
}
.ticker i { margin: 0 28px; color: var(--clay); }

.editorial {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  padding: clamp(95px, 11vw, 170px) 0;
}
.editorial-photo { position: relative; min-height: 580px; margin: 0; overflow: hidden; background: #d7d8d0; }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial-photo > span {
  position: absolute;
  right: 22px;
  top: 18px;
  color: #fff;
  font: 500 50px/1 var(--serif);
}
.editorial-copy h2,
.section-title h2,
.room-copy h2,
.promise-title h2 {
  margin: 14px 0 20px;
  font: 500 clamp(42px, 5vw, 74px)/1.04 var(--serif);
  letter-spacing: -.045em;
}
.editorial-copy p,
.section-title p,
.room-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.editorial-copy button {
  margin-top: 18px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-weight: 850;
}
.editorial blockquote {
  grid-column: 2;
  margin: -44px 0 0;
  padding: 32px;
  border-left: 2px solid var(--clay);
  color: var(--olive);
  background: rgba(255, 250, 243, .62);
  font: italic 500 24px/1.45 var(--serif);
}
.editorial blockquote span { display: block; color: var(--clay); font-size: 50px; line-height: .5; }
.editorial blockquote p { margin: 14px 0 0; }

.catalog {
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1420px) / 2));
  background: var(--cream);
}
.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: end;
  gap: 60px;
}
.section-title p { margin: 0 0 12px; }
.catalog-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 45px 0 34px;
}
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 780;
}
.filters button.active { border-color: var(--ink); color: var(--cream); background: var(--ink); }
.search {
  min-width: min(360px, 100%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-bottom: 1px solid var(--ink);
}
.search span { font-size: 21px; }
.search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px; }
.product-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 48, 41, .12);
  background: #fff;
  box-shadow: 0 10px 28px rgba(63, 49, 33, .06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card:nth-child(1),
.product-card:nth-child(5) { grid-column: span 8; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  width: 100%;
  height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #eee9e1;
}
.product-card:nth-child(1) .product-media,
.product-card:nth-child(5) .product-media { height: 410px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-media img.contain { object-fit: contain; padding: 9%; }
.product-card:hover .product-media img { transform: scale(1.025); }
.status {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 8px 10px;
  border-radius: 2px;
  color: #fff;
  background: rgba(36, 48, 41, .84);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-info { min-height: 245px; display: flex; flex-direction: column; gap: 10px; padding: 23px; }
.product-info small { color: var(--clay-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { margin: 0; font: 500 25px/1.18 var(--serif); }
.product-info p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 12px; }
.product-actions button {
  min-height: 43px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}
.product-actions .add { color: #fff; border-color: var(--clay); background: var(--clay); }

.room-story {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: stretch;
  padding: clamp(95px, 10vw, 150px) 0;
}
.room-copy { padding: clamp(35px, 6vw, 80px); background: var(--sage); }
.room-art { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; background: #d7b995; }
.room-art::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.38); }
.room-art img { position: relative; width: min(620px, 88%); max-height: 490px; object-fit: contain; z-index: 1; }
.room-art > div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: end;
  padding: 20px;
  background: rgba(255,250,243,.9);
  backdrop-filter: blur(12px);
}
.room-art small { grid-column: 1; color: var(--clay-dark); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.room-art strong { grid-column: 1; font: 500 24px/1.2 var(--serif); }
.room-art button { grid-column: 2; grid-row: 1 / 3; align-self: center; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-weight: 850; }

.promise { padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1420px) / 2)); background: #263029; color: #f6f0e7; }
.promise-title { max-width: 850px; }
.promise .kicker { color: #d9a88e; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 65px; background: rgba(255,255,255,.14); }
.promise-grid article { min-height: 250px; padding: 32px; background: #263029; }
.promise-grid article > span { color: #d9a88e; font: 500 40px/1 var(--serif); }
.promise-grid h3 { margin: 45px 0 10px; font: 500 27px/1.2 var(--serif); }
.promise-grid p { margin: 0; color: rgba(246,240,231,.7); line-height: 1.65; }

footer {
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
footer p { color: var(--muted); }
footer > a:last-child { color: var(--muted); font-size: 13px; }

/* Product dialog */
dialog {
  width: min(1000px, calc(100% - 28px));
  max-height: 92vh;
  overflow: auto;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 40px 120px rgba(30, 25, 20, .35);
}
dialog::backdrop { background: rgba(32, 36, 31, .64); backdrop-filter: blur(7px); }
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,250,243,.88);
  font-size: 25px;
}
.dialog-layout { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 580px; }
.dialog-layout > img { width: 100%; height: 100%; max-height: 680px; object-fit: cover; background: #ebe6de; }
.dialog-layout > img.contain { object-fit: contain; padding: 8%; }
.dialog-info { display: flex; flex-direction: column; padding: clamp(36px, 6vw, 72px); }
.dialog-info h2 { margin: 14px 0 16px; font: 500 clamp(35px, 4.2vw, 56px)/1.04 var(--serif); }
.dialog-info > p { color: var(--muted); line-height: 1.72; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 22px 0; }
.specs span { padding: 12px; border: 1px solid var(--line); color: var(--olive); font-size: 13px; }
.dialog-info > button { min-height: 50px; margin-top: auto; border: 0; color: #fff; background: var(--clay); font-weight: 850; }

/* Inquiry drawer */
.cart-drawer { position: fixed; inset: 0; z-index: 70; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; border: 0; background: rgba(30, 34, 29, .62); opacity: 0; transition: opacity .25s ease; }
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-drawer aside {
  position: absolute;
  top: 0;
  right: 0;
  width: min(510px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  box-shadow: -25px 0 60px rgba(34, 30, 24, .22);
  transform: translateX(100%);
  transition: transform .32s ease;
}
.cart-drawer.open aside { transform: none; }
.cart-drawer aside > header { display: flex; justify-content: space-between; gap: 20px; padding: 25px; border-bottom: 1px solid var(--line); }
.cart-drawer h2 { margin: 7px 0 0; font: 500 33px/1 var(--serif); }
.cart-drawer header button { border: 0; background: transparent; font-size: 29px; }
.cart-items { flex: 1; overflow: auto; display: grid; align-content: start; gap: 12px; padding: 20px; }
.cart-empty { grid-column: 1 / -1; padding: 60px 20px; color: var(--muted); text-align: center; }
.cart-row { display: grid; grid-template-columns: 76px minmax(0, 1fr) auto; gap: 13px; padding: 10px; border: 1px solid var(--line); background: #fff; }
.cart-row img { width: 76px; height: 76px; object-fit: contain; background: #eee9e1; }
.cart-row small { color: var(--clay-dark); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.cart-row h4 { margin: 4px 0 9px; font: 500 17px/1.25 var(--serif); }
.qty { display: inline-flex; align-items: center; gap: 8px; }
.qty button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; background: var(--cream); }
.remove { border: 0; color: var(--muted); background: transparent; font-size: 20px; }
.note { display: grid; gap: 8px; padding: 0 20px 18px; color: var(--muted); font-size: 13px; font-weight: 750; }
.note textarea { min-height: 86px; resize: vertical; padding: 12px; border: 1px solid var(--line); outline: 0; color: var(--ink); background: #fff; }
.cart-actions { padding: 18px 20px 24px; border-top: 1px solid var(--line); }
.cart-actions p { margin: 0 0 13px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.cart-actions > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cart-actions button { min-height: 44px; border: 1px solid var(--line); color: var(--ink); background: #fff; font-weight: 800; }
.cart-actions .clear { width: 100%; margin-top: 8px; color: var(--muted); background: transparent; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  max-width: calc(100% - 30px);
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .topbar { grid-template-columns: auto auto; }
  .topbar nav { display: none; }
  .tools { justify-self: end; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 880px; }
  .hero-collage { min-height: 620px; }
  .editorial { grid-template-columns: 1fr 1fr; gap: 38px; }
  .section-title { grid-template-columns: 1fr; gap: 5px; }
  .catalog-tools { align-items: stretch; flex-direction: column; }
  .search { width: 100%; }
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) { grid-column: span 6; }
  .product-card:nth-child(1) .product-media,
  .product-card:nth-child(5) .product-media,
  .product-media { height: 340px; }
  .room-story { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar { min-height: 70px; padding: 10px 15px; gap: 10px; }
  .brand svg { width: 36px; height: 36px; }
  .brand > span { font-size: 21px; }
  .brand small { display: none; }
  .tools select { width: 62px; padding-inline: 7px; }
  .bag { width: 46px; padding: 0; justify-content: center; }
  .bag > span { display: none; }
  .hero,
  .editorial,
  .room-story { width: min(100% - 30px, 1420px); }
  .hero { min-height: 0; padding: 65px 0 85px; gap: 45px; }
  .hero-copy h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-collage { min-height: 470px; }
  .hero-large { inset: 0 10% 12% 0; }
  .hero-small { width: 34%; border-width: 6px; }
  .hero-small.top { top: 4%; height: 32%; }
  .hero-small.bottom { bottom: 2%; height: 29%; }
  .hand-note { top: 45%; right: 0; font-size: 18px; }
  .ticker div { text-align: left; padding-left: 24px; }
  .editorial { grid-template-columns: 1fr; padding: 85px 0; }
  .editorial-photo { min-height: 360px; }
  .editorial blockquote { grid-column: 1; margin: 0; }
  .catalog,
  .promise { padding-inline: 15px; }
  .section-title h2,
  .editorial-copy h2,
  .room-copy h2,
  .promise-title h2 { font-size: 43px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { flex: 0 0 auto; }
  .product-grid { gap: 14px; }
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) { grid-column: span 12; }
  .product-media,
  .product-card:nth-child(1) .product-media,
  .product-card:nth-child(5) .product-media { height: 320px; }
  .product-info { min-height: 0; }
  .room-art { min-height: 450px; }
  .room-art > div { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; }
  .room-art button { grid-column: 1; grid-row: auto; justify-self: start; }
  footer { align-items: flex-start; flex-direction: column; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-layout > img { height: 330px; }
  .dialog-info { padding: 30px 24px; }
  .specs { grid-template-columns: 1fr; }
}
