:root {
  --ink: #171713;
  --ink-soft: #3b3a35;
  --paper: #f5f2ec;
  --paper-deep: #ebe6dc;
  --white: #ffffff;
  --sand: #c8b9a6;
  --bronze: #8b6f4d;
  --line: rgba(23, 23, 19, 0.18);
  --line-light: rgba(255, 255, 255, 0.28);
  --serif: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(92vw, 1500px);
  --header-height: 118px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(88px, 10vw, 160px);
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--ink-soft);
}

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 24px 12px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

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

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

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

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

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 6px;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.25);
}

.text-link span {
  transition: transform 300ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.button-reset {
  border: 0;
  background: transparent;
}

.icon-button,
.utility-button,
.menu-button {
  display: inline-grid;
  border: 0;
  padding: 0;
  background: transparent;
  place-items: center;
}

.icon-button svg,
.utility-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.announcement {
  position: relative;
  z-index: 110;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 48px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  margin-left: 7px;
}

.announcement-close {
  position: absolute;
  right: 18px;
  color: var(--paper);
}

.announcement-close svg {
  width: 16px;
  height: 16px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(23, 23, 19, 0.08);
  background: rgba(245, 242, 236, 0.96);
  transition: transform 350ms var(--ease), background-color 300ms ease, box-shadow 300ms ease;
  backdrop-filter: blur(16px);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(20, 20, 15, 0.06);
}

.header-shell {
  position: relative;
  display: grid;
  width: var(--page);
  height: 73px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.15vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.21em;
  line-height: 1;
  white-space: nowrap;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-left {
  justify-self: start;
}

.utility-right {
  justify-self: end;
}

.utility-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.utility-button svg {
  width: 18px;
  height: 18px;
}

.count-badge {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.58rem;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  width: var(--page);
  height: 45px;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.5vw, 58px);
  margin-inline: auto;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-utility a,
.utility-button {
  transition: opacity 200ms ease;
}

.desktop-nav a:hover,
.header-utility a:hover,
.utility-button:hover {
  opacity: 0.55;
}

.menu-button {
  display: none;
  width: 30px;
  height: 30px;
  justify-self: start;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.menu-button span:nth-child(2) {
  width: 15px;
  margin-top: 6px;
}

.mobile-menu {
  position: fixed;
  z-index: 210;
  top: 0;
  left: 0;
  display: flex;
  width: min(92vw, 520px);
  height: 100dvh;
  flex-direction: column;
  padding: 24px clamp(24px, 6vw, 54px) 36px;
  color: var(--paper);
  background: var(--ink);
  transform: translateX(-102%);
  transition: transform 500ms var(--ease);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
}

.mobile-menu .icon-button {
  color: var(--paper);
}

.mobile-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.mobile-nav a {
  display: grid;
  align-items: baseline;
  padding: 8px 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 4.2rem);
  line-height: 1;
  grid-template-columns: 42px 1fr;
}

.mobile-nav span {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.mobile-menu-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-footer button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.page-scrim {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.page-scrim.active {
  visibility: visible;
  opacity: 1;
}

.search-panel {
  position: fixed;
  z-index: 220;
  top: 0;
  right: 0;
  width: min(100%, 720px);
  height: 100dvh;
  padding: clamp(26px, 5vw, 58px);
  background: var(--paper);
  transform: translateX(102%);
  transition: transform 500ms var(--ease);
}

.search-panel.open {
  transform: translateX(0);
}

.search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.search-panel-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.search-field {
  position: relative;
  display: block;
  margin-top: clamp(42px, 8vw, 88px);
}

.search-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 15px 50px 15px 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.5vw, 2.7rem);
}

.search-field svg {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transform: translateY(-50%);
}

.search-results {
  margin-top: 34px;
}

.search-kicker {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.search-chips button {
  border: 1px solid var(--line);
  padding: 9px 14px;
  background: transparent;
  font-size: 0.72rem;
}

.search-result-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.search-result-list button {
  display: grid;
  width: 100%;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  background: transparent;
  text-align: left;
  grid-template-columns: 66px 1fr auto;
  gap: 16px;
}

.search-result-list img {
  width: 66px;
  height: 66px;
  object-fit: cover;
}

.search-result-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.search-result-list span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(880px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: var(--white);
  background: #b3a896;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroEnter 1400ms var(--ease) both;
}

@keyframes heroEnter {
  from { transform: scale(1.035); opacity: 0.65; }
  to { transform: scale(1); opacity: 1; }
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 15, 13, 0.66) 0%, rgba(16, 15, 13, 0.25) 48%, rgba(16, 15, 13, 0.04) 76%), linear-gradient(0deg, rgba(10, 10, 8, 0.28) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--page);
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding-block: clamp(80px, 10vh, 130px) 100px;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 9.3vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero-copy {
  max-width: 520px;
  margin: 34px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: max(4vw, calc((100vw - 1500px) / 2));
  bottom: 40px;
  display: grid;
  min-width: 230px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-light);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-template-columns: 1fr auto;
  gap: 5px 28px;
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.62);
  grid-column: 1 / -1;
}

.hero-caption strong {
  font-weight: 600;
}

.hero-caption a {
  border-bottom: 1px solid currentColor;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: max(4vw, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.scroll-line {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  content: "";
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.introduction {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(60px, 10vw, 170px);
}

.intro-copy {
  max-width: 560px;
  padding-bottom: 1.2vw;
}

.intro-copy p {
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.intro-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.intro-copy .text-link {
  margin-top: 16px;
}

.rooms {
  padding-top: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(40px, 5vw, 74px);
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.room-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(300px, 32vw)) minmax(380px, 40vw);
  gap: clamp(12px, 1.6vw, 24px);
}

.room-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #b2aa9e;
}

.room-card-large {
  grid-row: 1 / 3;
}

.room-card-wide {
  grid-row: 3;
  grid-column: 1 / -1;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.room-card[data-room="Dining"] img {
  object-position: 58% center;
}

.room-card[data-room="Bedroom"] img {
  object-position: center 48%;
}

.room-card:hover img {
  transform: scale(1.035);
}

.room-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 8, 0.55) 0%, rgba(10, 10, 8, 0.02) 55%);
  transition: background-color 400ms ease;
}

.room-label {
  position: absolute;
  right: clamp(24px, 3vw, 46px);
  bottom: clamp(24px, 3vw, 46px);
  left: clamp(24px, 3vw, 46px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.room-label strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.room-label span {
  max-width: 185px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.collection-feature {
  display: grid;
  min-height: 790px;
  background: var(--paper-deep);
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.55fr);
}

.collection-image {
  min-height: 620px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
}

.collection-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 7vw, 120px);
}

.collection-number {
  margin: 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.collection-copy h2 {
  margin: 12px 0 26px;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.collection-copy > p:not(.eyebrow):not(.collection-number) {
  max-width: 470px;
  margin: 0 0 40px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.collection-meta {
  display: grid;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collection-meta span {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.collection-meta small {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-heading {
  align-items: center;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.filter-tabs button {
  position: relative;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 250ms ease;
}

.filter-tabs button.active {
  color: var(--ink);
}

.filter-tabs button.active::after,
.filter-tabs button:hover::after {
  transform: scaleX(1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 70px) clamp(14px, 1.7vw, 26px);
}

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

.product-card[hidden] {
  display: none;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd7ce;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.product-card:nth-child(1) .product-image-wrap img {
  object-position: 46% center;
}

.product-card:nth-child(4) .product-image-wrap img {
  object-position: 52% center;
}

.product-image-tall img {
  object-position: center 50%;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.025);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(245, 242, 236, 0.92);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(245, 242, 236, 0.92);
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
  backdrop-filter: blur(8px);
}

.wishlist-button:hover {
  transform: scale(1.05);
}

.wishlist-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.wishlist-button.saved {
  color: var(--paper);
  background: var(--ink);
}

.wishlist-button.saved svg {
  fill: currentColor;
}

.quick-view {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 45px;
  border: 0;
  color: var(--ink);
  background: rgba(245, 242, 236, 0.94);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 250ms ease, transform 250ms var(--ease), background-color 200ms ease;
  backdrop-filter: blur(10px);
}

.quick-view:hover {
  color: var(--paper);
  background: var(--ink);
}

.product-card:hover .quick-view,
.quick-view:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.product-info span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.55vw, 1.6rem);
  font-weight: 400;
  line-height: 1.12;
}

.product-info > p {
  margin: 1px 0 0;
  font-size: 0.72rem;
  white-space: nowrap;
}

.no-products {
  margin: 60px 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  text-align: center;
}

.philosophy {
  display: grid;
  color: var(--paper);
  background: var(--ink);
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.85fr);
}

.philosophy-media {
  min-height: 820px;
  overflow: hidden;
}

.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 150px);
}

.philosophy-copy h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.philosophy-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(245, 242, 236, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.philosophy-list {
  margin: clamp(40px, 5vw, 70px) 0;
  border-top: 1px solid var(--line-light);
}

.philosophy-list > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.philosophy-list dt {
  color: rgba(245, 242, 236, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.philosophy-list dd {
  margin: 0;
}

.philosophy-list strong,
.philosophy-list span {
  display: block;
}

.philosophy-list strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.philosophy-list span {
  color: rgba(245, 242, 236, 0.6);
  font-size: 0.84rem;
}

.trade {
  background: #d8cfc2;
}

.trade-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: clamp(70px, 12vw, 190px);
}

.trade-copy h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.7vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.87;
}

.trade-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 0 0 42px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.trade-benefits {
  border-top: 1px solid rgba(23, 23, 19, 0.3);
}

.trade-benefits > div {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid rgba(23, 23, 19, 0.3);
  grid-template-columns: 42px 1fr;
  gap: 5px 18px;
}

.trade-benefits span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  grid-row: 1 / 3;
}

.trade-benefits h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.trade-benefits p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.journal {
  background: var(--paper);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.journal-card:nth-child(2) img {
  object-position: 54% center;
}

.journal-card a {
  display: block;
  overflow: hidden;
}

.journal-card a:hover img {
  transform: scale(1.025);
}

.journal-card span {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 9px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.journal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.showrooms {
  display: grid;
  min-height: 740px;
  background: var(--paper-deep);
  grid-template-columns: minmax(0, 1.3fr) minmax(420px, 0.7fr);
}

.showroom-image {
  min-height: 580px;
  overflow: hidden;
}

.showroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showroom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 120px);
}

.showroom-copy h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.6vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.82;
}

.showroom-copy > p {
  max-width: 460px;
  margin: 0 0 42px;
  color: var(--ink-soft);
}

.zip-form label {
  display: block;
  margin-bottom: 11px;
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zip-form > div {
  display: grid;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 1fr auto;
}

.zip-form input {
  min-width: 0;
  border: 0;
  padding: 13px 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.zip-form button {
  display: flex;
  align-items: center;
  border: 0;
  padding: 0 0 0 20px;
  background: transparent;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  gap: 12px;
}

.form-message {
  min-height: 1.3em;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.newsletter {
  color: var(--paper);
  background: var(--ink);
}

.newsletter-inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.7fr);
  gap: clamp(60px, 10vw, 160px);
}

.newsletter h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter-form input {
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  padding: 16px 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.newsletter-form input::placeholder {
  color: rgba(245, 242, 236, 0.48);
}

.newsletter-form button {
  border: 0;
  border-bottom: 1px solid var(--line-light);
  padding: 0 0 0 20px;
  color: var(--paper);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.newsletter-form p {
  margin: 11px 0 0;
  color: rgba(245, 242, 236, 0.47);
  font-size: 0.65rem;
  grid-column: 1 / -1;
}

.newsletter-form .form-message {
  color: var(--paper);
  grid-column: 1 / -1;
}

.site-footer {
  color: var(--paper);
  background: #10100d;
}

.footer-main {
  display: grid;
  padding-block: 80px 70px;
  grid-template-columns: 1.5fr repeat(4, 0.75fr);
  gap: clamp(30px, 4vw, 70px);
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 1.55rem;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(245, 242, 236, 0.55);
  font-size: 0.84rem;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 242, 236, 0.28);
  place-items: center;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 650;
  transition: color 200ms ease, background-color 200ms ease;
}

.social-links a:hover {
  color: var(--ink);
  background: var(--paper);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: rgba(245, 242, 236, 0.48);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(245, 242, 236, 0.8);
  font-size: 0.77rem;
  transition: color 200ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px 26px;
  border-top: 1px solid rgba(245, 242, 236, 0.16);
  color: rgba(245, 242, 236, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
}

.quick-view-dialog,
.trade-dialog {
  width: min(94vw, 1120px);
  max-height: 92vh;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.26);
}

.quick-view-dialog::backdrop,
.trade-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.88);
}

.dialog-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.1fr 0.9fr;
}

.dialog-image {
  min-height: 680px;
  background: var(--paper-deep);
}

.dialog-image img {
  width: 100%;
  height: 100%;
  max-height: 86vh;
  object-fit: cover;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 82px);
}

.dialog-copy h2,
.trade-dialog h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.dialog-price {
  margin: 0 0 26px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.dialog-copy > p:not(.eyebrow):not(.dialog-price) {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.finish-selector {
  display: grid;
  align-items: center;
  margin-top: 30px;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
}

.finish-selector > span {
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.finish-selector > div {
  display: flex;
  gap: 8px;
}

.finish-swatch {
  width: 27px;
  height: 27px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  outline: 1px solid transparent;
}

.finish-swatch.active {
  outline-color: var(--ink);
}

.finish-ivory { background: #e9e3d8; }
.finish-sand { background: #a78e72; }
.finish-charcoal { background: #3c3b37; }

.finish-selector small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.dialog-copy dl {
  display: grid;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
  gap: 9px 16px;
}

.dialog-copy dt {
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-copy dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.dialog-cta {
  width: 100%;
}

.dialog-save {
  align-self: center;
  border: 0;
  padding: 15px 0 0;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dialog-save span {
  margin-right: 7px;
  font-size: 1.05rem;
}

.trade-dialog {
  width: min(92vw, 780px);
}

.trade-dialog-inner {
  padding: clamp(48px, 8vw, 90px);
}

.trade-dialog-inner > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--ink-soft);
}

.trade-dialog form {
  margin-top: 34px;
}

.form-grid {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid label {
  display: grid;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 8px;
}

.form-grid input,
.form-grid select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0;
  outline: 0;
  background: transparent;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.form-span {
  grid-column: 1 / -1;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  padding: 15px 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 250ms ease, transform 250ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --page: min(94vw, 1500px);
    --header-height: 73px;
  }

  .utility-label,
  .utility-left {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto 1fr;
  }

  .menu-button {
    display: grid;
  }

  .desktop-nav {
    display: none;
  }


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

  .collection-feature,
  .philosophy,
  .showrooms {
    grid-template-columns: 1fr 1fr;
  }

  .collection-copy,
  .philosophy-copy,
  .showroom-copy {
    padding: clamp(48px, 6vw, 80px);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding-block: 88px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    justify-content: end;
    padding-bottom: 130px;
  }

  .hero-wash {
    background: linear-gradient(0deg, rgba(12, 11, 9, 0.78) 0%, rgba(12, 11, 9, 0.1) 68%), linear-gradient(90deg, rgba(12, 11, 9, 0.32), transparent 72%);
  }

  .hero-caption {
    display: none;
  }

  .intro-grid,
  .trade-grid,
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .room-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 520px;
  }

  .room-card-large,
  .room-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .collection-feature,
  .philosophy,
  .showrooms {
    grid-template-columns: 1fr;
  }

  .collection-image,
  .philosophy-media,
  .showroom-image {
    min-height: 65vw;
  }

  .collection-number {
    margin-bottom: 24px;
  }

  .product-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

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

  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-card:last-child {
    grid-column: 1 / -1;
    max-width: 55%;
  }

  .newsletter-form {
    max-width: 680px;
  }

  .dialog-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .dialog-image {
    min-height: 420px;
  }

  .dialog-image img {
    max-height: 52vh;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .announcement {
    min-height: 39px;
    padding-inline: 36px;
    font-size: 0.54rem;
  }

  .announcement a {
    display: none;
  }

  .header-shell {
    height: 68px;
  }

  .wordmark {
    font-size: 1.2rem;
    letter-spacing: 0.16em;
  }

  .utility-right {
    gap: 14px;
  }

  .utility-right .utility-button:nth-child(2) {
    display: none;
  }

  .count-badge {
    position: absolute;
    top: -8px;
    right: -9px;
    min-width: 15px;
    height: 15px;
    font-size: 0.5rem;
  }

  .hero {
    min-height: calc(100svh - 68px);
    max-height: none;
  }

  .hero-image {
    object-position: 46% center;
  }

  .hero-content {
    padding-block: 80px 88px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.8rem);
    line-height: 0.84;
  }

  .hero-copy {
    margin-block: 24px 27px;
    font-size: 0.92rem;
  }

  .hero .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding-block: 76px;
  }

  .display-heading {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .room-grid {
    display: flex;
    flex-direction: column;
  }

  .room-card {
    min-height: 520px;
  }

  .room-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .room-label span {
    text-align: left;
  }

  .collection-image,
  .philosophy-media,
  .showroom-image {
    min-height: 520px;
  }

  .collection-copy,
  .philosophy-copy,
  .showroom-copy {
    padding: 68px 18px;
  }

  .collection-copy h2,
  .philosophy-copy h2,
  .showroom-copy h2,
  .trade-copy h2 {
    font-size: clamp(3.7rem, 17vw, 5.3rem);
  }

  .collection-meta {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

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

  .product-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .quick-view {
    opacity: 1;
    transform: none;
  }

  .trade .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .trade .button {
    width: 100%;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card:last-child {
    max-width: none;
    grid-column: auto;
  }

  .journal-card img {
    aspect-ratio: 4 / 4.8;
  }

  .newsletter-form {
    grid-template-columns: 1fr auto;
  }

  .newsletter-form button span {
    display: none;
  }

  .footer-main {
    padding-block: 64px 48px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.16);
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-view-dialog,
  .trade-dialog {
    width: 100%;
    max-width: none;
    max-height: 100dvh;
    margin: auto 0 0;
  }

  .quick-view-dialog[open],
  .trade-dialog[open] {
    animation: dialogUp 380ms var(--ease) both;
  }

  @keyframes dialogUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .dialog-image {
    min-height: 300px;
  }

  .dialog-image img {
    max-height: 38vh;
  }

  .dialog-copy {
    padding: 42px 22px;
  }

  .dialog-copy h2,
  .trade-dialog h2 {
    font-size: 2.9rem;
  }

  .trade-dialog-inner {
    padding: 58px 22px 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-span {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
