:root {
  --black: #0e0d0b;
  --espresso: #1a1512;
  --charcoal: #22201d;
  --ivory: #f3efe7;
  --stone: #d8d0c3;
  --greige: #c3b9ad;
  --taupe: #a99b8d;
  --walnut: #3a2b22;
  --muted: #6e6258;
  --dark-text: #111111;
  --dark-border: #3a332e;
  --light-border: #d8d0c3;
  --serif: "Cormorant Garamond", "Baskerville", "Libre Baskerville", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --page-pad: 88px;
  --section-pad: 152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(243, 239, 231, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 239, 231, 0.16) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}

body.overlay-open {
  overflow: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
}

@keyframes quietDrift {
  from {
    transform: scale(1.012) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-0.7%, -0.5%, 0);
  }
}

@keyframes lineWake {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

button {
  color: inherit;
  cursor: pointer;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  padding: 0 var(--page-pad);
  color: var(--ivory);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height 360ms ease, background 360ms ease, color 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

.site-header.is-scrolled,
.site-header.force-light {
  height: 76px;
  color: var(--black);
  background: rgba(243, 239, 231, 0.96);
  border-bottom-color: var(--light-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(14, 13, 11, 0.08);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img,
.overlay-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wordmark {
  width: 198px;
}

.site-header.is-scrolled .wordmark img,
.site-header.force-light .wordmark img {
  filter: invert(1);
}

.header-action,
.footer-form button,
.btn,
.tile-link {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  touch-action: manipulation;
}

.btn,
.tile-link {
  letter-spacing: 0.08em;
  text-transform: none;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 11px;
}

.header-divider {
  opacity: 0.55;
}

.menu-overlay,
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 56px var(--page-pad);
  color: var(--ivory);
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.menu-overlay.is-open,
.search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay-kicker,
.eyebrow,
.caption-meta,
.form-label,
.accordion summary,
.spec-label {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.overlay-kicker {
  color: var(--taupe);
}

.overlay-links {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
  margin: auto 0;
}

.overlay-links a {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.02;
  color: var(--ivory);
  transition: color 200ms ease, transform 200ms ease;
}

.overlay-links a:hover {
  color: var(--taupe);
  transform: translateX(8px);
}

.overlay-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overlay-logo {
  width: 112px;
}

.search-panel {
  width: min(960px, 100%);
  margin: 18vh auto 0;
}

.search-panel input {
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--dark-border);
  outline: none;
  color: var(--ivory);
  background: transparent;
  font-family: var(--serif);
  font-size: 42px;
}

.search-panel input::placeholder {
  color: rgba(243, 239, 231, 0.42);
}

.search-results {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.search-result {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}

.search-result .thumb {
  height: 86px;
  background: var(--espresso);
}

.inquiry-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  justify-items: end;
  background: rgba(14, 13, 11, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.inquiry-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(560px, 100vw);
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding: 38px;
  color: var(--dark-text);
  background: var(--ivory);
  transform: translateX(28px);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -28px 0 80px rgba(14, 13, 11, 0.22);
}

.inquiry-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-border);
}

#inquiryDrawerBody {
  display: grid;
  align-content: start;
  gap: 34px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: 34px;
  padding-bottom: 38px;
}

.drawer-product {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 24px;
}

.drawer-thumb {
  height: 148px;
  background: var(--stone);
}

.drawer-product h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.drawer-product p {
  margin: 14px 0 0;
  color: var(--muted);
}

.drawer-specs {
  display: grid;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.drawer-specs div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
}

.drawer-specs span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-specs strong {
  font-weight: 400;
}

.page {
  background: var(--ivory);
  color: var(--dark-text);
}

#app {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

#app.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.dark-page {
  background: var(--black);
  color: var(--ivory);
}

.hero,
.collection-panel,
.closing,
.statement {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.hero-media,
.panel-media,
.feature-media,
.detail-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.collection-hero .hero-media img,
.collection-panel .hero-media img,
.detail-hero .hero-media img,
.outdoor-feature .hero-media img,
.about-hero .hero-media img,
.image-band .hero-media img {
  animation: quietDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after,
.collection-panel::after,
.outdoor-feature::after,
.detail-hero::after,
.image-band::after,
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(14, 13, 11, 0.72), rgba(14, 13, 11, 0.32) 50%, rgba(14, 13, 11, 0.12));
}

.hero-copy,
.panel-copy,
.outdoor-copy,
.detail-hero-copy,
.image-band-copy,
.about-hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: 96px;
  width: min(760px, calc(100% - 176px));
}

.hero-copy h1,
.statement h1,
.section-heading,
.panel-copy h2,
.feature-copy h2,
.closing h2,
.collection-hero-copy h1,
.detail-hero-copy h1,
.service-hero h1,
.about-hero-copy h1,
.product-info h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: 68px;
}

.hero-copy p,
.panel-copy p,
.feature-copy p,
.closing p,
.collection-hero-copy p,
.detail-hero-copy p,
.service-hero p,
.about-hero-copy p,
.statement p,
.intro-copy p,
.product-info p {
  max-width: 620px;
  margin: 24px 0 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.8;
  text-wrap: pretty;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border: 1px solid currentColor;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn.dark {
  color: var(--ivory);
  background: var(--black);
  border-color: var(--black);
}

.btn.dark:hover {
  background: var(--espresso);
  border-color: var(--espresso);
}

.btn.light {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.btn.light:hover {
  color: var(--ivory);
  background: var(--black);
  border-color: var(--black);
}

.btn.ghost:hover {
  color: var(--black);
  background: var(--ivory);
}

.btn.ghost {
  color: var(--ivory);
  background: transparent;
  border-color: rgba(243, 239, 231, 0.8);
}

.statement {
  display: grid;
  place-items: center;
  min-height: 62vh;
  padding: var(--section-pad) var(--page-pad);
  text-align: center;
}

.statement h1 {
  max-width: 760px;
  font-size: 48px;
}

.statement p {
  margin-inline: auto;
  color: var(--taupe);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-panel {
  min-height: 82vh;
}

.panel-copy h2,
.collection-hero-copy h1,
.detail-hero-copy h1,
.about-hero-copy h1 {
  font-size: 64px;
}

.panel-copy p,
.collection-hero-copy p {
  color: var(--stone);
}

.home-hero {
  min-height: 104vh;
}

.home-hero .hero-copy {
  bottom: 118px;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 48px;
  display: flex;
  gap: 26px;
  color: var(--stone);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.showroom-index {
  padding: 104px var(--page-pad) 116px;
  background: var(--ivory);
  color: var(--dark-text);
}

.collection-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.collection-entry {
  display: grid;
  gap: 24px;
}

.collection-entry-image,
.room-image,
.product-overview-image,
.gallery-image,
.feature-image,
.material-image {
  position: relative;
  overflow: hidden;
}

.collection-entry-image {
  height: 410px;
  background: var(--stone);
}

.collection-entry-copy {
  display: grid;
  gap: 10px;
}

.collection-entry-copy h3,
.flow-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}

.collection-entry-copy p,
.flow-grid p {
  margin: 0;
  color: var(--muted);
}

.refined-statement .eyebrow {
  margin-bottom: 24px;
  color: var(--taupe);
}

.home-room-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: 92vh;
  background: var(--espresso);
  color: var(--ivory);
}

.room-copy {
  align-self: center;
  padding: 104px var(--page-pad);
}

.room-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.room-copy p {
  max-width: 520px;
  color: var(--stone);
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.room-specs span {
  padding: 9px 12px;
  border: 1px solid var(--dark-border);
  color: var(--taupe);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-image {
  min-height: 720px;
  background: var(--charcoal);
}

.service-flow {
  padding: var(--section-pad) var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.flow-grid article {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
}

.flow-grid span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.section {
  padding: var(--section-pad) var(--page-pad);
}

.section.dark {
  background: var(--espresso);
  color: var(--ivory);
}

.section.ivory {
  background: var(--ivory);
  color: var(--dark-text);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading {
  max-width: 760px;
  font-size: 48px;
}

.section-intro {
  max-width: 560px;
  color: var(--muted);
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
  gap: 74px;
}

.signature-layout.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.45fr);
  margin-top: 88px;
}

.signature-stack {
  display: grid;
  gap: 72px;
}

.product-tile {
  display: grid;
  gap: 18px;
  transition: transform 360ms ease;
}

.product-tile.featured .tile-image {
  min-height: 720px;
}

.tile-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--stone);
}

.tile-image::after,
.collection-entry-image::after,
.feature-image::after,
.material-image::after,
.room-image::after,
.gallery-image::after,
.product-overview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--ivory);
  transform: translateY(-101%);
  transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal .tile-image::after,
.reveal .collection-entry-image::after,
.reveal .feature-image::after,
.reveal .material-image::after,
.reveal .room-image::after,
.reveal .gallery-image::after,
.reveal .product-overview-image::after {
  transform: translateY(0);
}

.reveal.is-visible .tile-image::after,
.reveal.is-visible .collection-entry-image::after,
.reveal.is-visible .feature-image::after,
.reveal.is-visible .material-image::after,
.reveal.is-visible .room-image::after,
.reveal.is-visible .gallery-image::after,
.reveal.is-visible .product-overview-image::after {
  transform: translateY(-101%);
}

.tile-image img {
  --image-position: var(--tile-position, 50% 50%);
  transition: transform 700ms ease;
}

.product-tile:hover {
  transform: translateY(-6px);
}

.product-tile:hover .tile-image img {
  transform: scale(1.035);
}

.tile-caption {
  display: grid;
  gap: 8px;
  color: var(--dark-text);
}

.dark .tile-caption {
  color: var(--ivory);
}

.tile-caption h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

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

.tile-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.tile-button {
  padding: 0 0 7px;
}

.dark .caption-meta {
  color: var(--taupe);
}

.tile-link {
  position: relative;
  color: var(--muted);
  width: fit-content;
  padding-bottom: 7px;
}

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

.product-tile:hover .tile-link::after,
.search-result:hover .tile-link::after {
  transform: scaleX(1);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.material-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 82vh;
  background: var(--espresso);
  color: var(--ivory);
}

.material-image {
  min-height: 680px;
  background: var(--charcoal);
}

.material-copy,
.feature-copy {
  align-self: center;
  padding: 120px var(--page-pad);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  background: var(--ivory);
  color: var(--dark-text);
}

.feature.reverse {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  background: var(--black);
  color: var(--ivory);
}

.feature-image {
  min-height: 680px;
  background: var(--stone);
}

.feature-copy h2 {
  max-width: 640px;
  font-size: 46px;
}

.feature-copy p {
  color: var(--muted);
}

.feature.reverse .feature-copy p {
  color: var(--stone);
}

.outdoor-feature {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: var(--ivory);
}

.consultation-callout {
  display: grid;
  place-items: center;
  padding: var(--section-pad) var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.callout-box {
  width: min(900px, 100%);
  padding: 86px;
  border: 1px solid var(--light-border);
  text-align: center;
}

.callout-box h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.callout-box p {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
}

.closing {
  display: grid;
  place-items: center;
  min-height: 58vh;
  padding: var(--section-pad) var(--page-pad);
  text-align: center;
}

.closing h2 {
  font-size: 48px;
}

.closing p {
  margin-inline: auto;
  color: var(--stone);
}

.collection-hero,
.detail-hero,
.about-hero,
.image-band {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.collection-hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: 90px;
  width: min(760px, calc(100% - 176px));
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding: 112px var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.intro-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.collection-browser {
  position: sticky;
  top: 76px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 18px var(--page-pad);
  background: rgba(243, 239, 231, 0.96);
  border-bottom: 1px solid var(--light-border);
  color: var(--dark-text);
  backdrop-filter: blur(18px);
}

.collection-browser-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-browser-meta strong {
  color: var(--dark-text);
  font-weight: 500;
}

.category-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--light-border);
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.category-pill strong {
  color: var(--dark-text);
  font-weight: 500;
}

.category-pill:hover,
.category-pill.is-active {
  color: var(--ivory);
  background: var(--black);
  border-color: var(--black);
}

.category-pill:hover strong,
.category-pill.is-active strong {
  color: var(--ivory);
}

.collection-products {
  padding-top: 104px;
  padding-bottom: 124px;
}

.collection-groups {
  display: grid;
  gap: 116px;
}

.product-group {
  display: grid;
  scroll-margin-top: 150px;
}

.product-group-header {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.85fr);
  gap: 64px;
  align-items: end;
  padding-top: 30px;
  margin-bottom: 44px;
  border-top: 1px solid var(--light-border);
}

.product-group-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.product-group-header p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.group-count {
  display: block;
  margin-top: 16px;
  color: var(--dark-text);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 52px;
  background: var(--ivory);
  color: var(--dark-text);
}

.organized-grid.feature-first .product-tile:first-child {
  grid-column: span 2;
}

.organized-grid.feature-first .product-tile:first-child .tile-image {
  height: 680px;
}

.product-hero .detail-hero-copy {
  width: min(900px, calc(100% - 176px));
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-specs span {
  padding: 10px 13px;
  border: 1px solid rgba(243, 239, 231, 0.32);
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 78px;
  padding: var(--section-pad) var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.product-overview-image {
  min-height: 700px;
  background: var(--stone);
}

.premium-info {
  position: sticky;
  top: 118px;
  align-self: start;
  padding-top: 26px;
  border-top: 1px solid var(--light-border);
}

.product-gallery-section {
  padding-top: 0;
}

.premium-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.premium-gallery .gallery-image {
  min-height: 620px;
}

.premium-gallery .gallery-image.wide {
  grid-column: span 2;
  min-height: 700px;
}

.product-material-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--dark-border);
  color: var(--ivory);
}

.material-note {
  min-height: 340px;
  padding: 56px;
  background: var(--espresso);
}

.material-note h2 {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.16;
  text-wrap: balance;
}

.product-inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 72px;
  align-items: end;
  padding: 104px var(--page-pad);
  background: var(--black);
  color: var(--ivory);
}

.product-inquiry-band h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.product-inquiry-band p {
  max-width: 620px;
  color: var(--stone);
}

.detail-hero {
  min-height: 100vh;
}

.detail-hero-copy {
  bottom: 82px;
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 90px;
  padding: var(--section-pad) var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.product-gallery {
  display: grid;
  gap: 34px;
}

.gallery-image {
  min-height: 640px;
  background: var(--stone);
}

.gallery-image:nth-child(even) {
  min-height: 520px;
}

.product-info {
  position: sticky;
  top: 118px;
  align-self: start;
}

.product-info h1 {
  font-size: 48px;
}

.product-info p {
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 18px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
}

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

.accordion {
  margin-top: 42px;
  border-top: 1px solid var(--light-border);
}

.accordion details {
  border-bottom: 1px solid var(--light-border);
}

.accordion summary {
  list-style: none;
  padding: 22px 0;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion details p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.pairing {
  background: var(--black);
  color: var(--ivory);
}

.pairing .section-intro {
  color: var(--stone);
}

.pairing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.service-hero {
  display: grid;
  align-content: end;
  min-height: 66vh;
  padding: 168px var(--page-pad) 96px;
  background: var(--black);
  color: var(--ivory);
}

.service-hero h1 {
  max-width: 820px;
  font-size: 62px;
}

.service-hero p {
  color: var(--stone);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 92px;
  padding: var(--section-pad) var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.form-intro h2,
.memo h2,
.text-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.form-intro p,
.text-block p,
.memo p {
  color: var(--muted);
}

.khoury-form {
  display: grid;
  gap: 24px;
}

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

.compact-form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-contact-form,
.drawer-inquiry-form {
  margin-top: 4px;
}

.drawer-inquiry-form {
  gap: 22px;
}

.drawer-inquiry-form .form-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.drawer-inquiry-form .field input,
.inquiry-contact-form .field input {
  min-height: 46px;
  padding: 10px 0;
}

.field {
  display: grid;
  gap: 10px;
}

.field.full {
  grid-column: span 2;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--light-border);
  outline: none;
  color: var(--dark-text);
  background: transparent;
  border-radius: 0;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.memo {
  display: none;
  margin-top: 34px;
  padding-top: 36px;
  border-top: 1px solid var(--light-border);
}

.memo.is-visible {
  display: grid;
  gap: 24px;
}

.memo-section {
  display: grid;
  gap: 8px;
}

.inquiry-status {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--light-border);
  color: var(--dark-text);
}

.inquiry-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  width: min(420px, calc(100vw - 32px));
  padding: 22px;
  color: var(--dark-text);
  background: var(--ivory);
  border: 1px solid var(--light-border);
  box-shadow: 0 24px 80px rgba(14, 13, 11, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.inquiry-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.notice-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.inquiry-notice strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.inquiry-notice p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.inquiry-notice button {
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-notice.success {
  border-color: rgba(58, 43, 34, 0.35);
}

.inquiry-notice.error {
  border-color: #8b2e22;
}

.benefit-list {
  display: grid;
  gap: 20px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-border);
  color: var(--muted);
}

.review-checklist {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.review-checklist span {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-border);
  color: var(--muted);
}

.about-story {
  display: grid;
  gap: 110px;
  padding: var(--section-pad) var(--page-pad);
  background: var(--ivory);
  color: var(--dark-text);
}

.text-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.inquiry-list {
  display: grid;
  gap: 28px;
}

.inquiry-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-border);
}

.inquiry-row .thumb {
  height: 126px;
  background: var(--stone);
}

.inquiry-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer {
  padding: 86px var(--page-pad) 72px;
  color: var(--ivory);
  background: var(--black);
  border-top: 1px solid var(--dark-border);
}

.footer-wordmark {
  margin-bottom: 72px;
  width: min(420px, 72vw);
}

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

.footer-grid section {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  color: var(--stone);
  font-size: 14px;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 8px;
}

.footer-form input {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid var(--dark-border);
  outline: none;
  color: var(--ivory);
  background: transparent;
}

.footer-form button {
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.08em;
  text-transform: none;
}

@media (max-width: 1100px) {
  :root {
    --page-pad: 48px;
    --section-pad: 112px;
  }

  .hero-copy h1,
  .panel-copy h2,
  .collection-hero-copy h1,
  .detail-hero-copy h1,
  .service-hero h1 {
    font-size: 54px;
  }

  .section-heading,
  .statement h1 {
    font-size: 44px;
  }

  .product-group-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-group-header h2 {
    font-size: 38px;
  }

  .signature-layout,
  .signature-layout.reverse,
  .collection-entry-grid,
  .home-room-feature,
  .material-section,
  .feature,
  .feature.reverse,
  .product-overview,
  .product-material-story,
  .product-inquiry-band,
  .detail-body,
  .form-section,
  .intro-copy,
  .flow-grid,
  .text-block {
    grid-template-columns: 1fr;
  }

  .collection-browser {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collection-entry-grid {
    gap: 48px 28px;
  }

  .feature.reverse .feature-copy {
    order: 2;
  }

  .feature.reverse .feature-image {
    order: 1;
  }

  .product-info {
    position: static;
  }

  .product-overview-image,
  .premium-gallery .gallery-image,
  .premium-gallery .gallery-image.wide,
  .room-image {
    min-height: 560px;
  }

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

@media (max-width: 760px) {
  :root {
    --page-pad: 22px;
    --section-pad: 88px;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    height: 72px;
    padding: 0 22px;
  }

  .site-header.is-scrolled,
  .site-header.force-light {
    height: 66px;
  }

  .wordmark {
    width: 142px;
  }

  .hide-mobile {
    display: none;
  }

  .hero-copy,
  .panel-copy,
  .outdoor-copy,
  .detail-hero-copy,
  .image-band-copy,
  .about-hero-copy,
  .collection-hero-copy {
    left: 22px;
    bottom: 64px;
    width: calc(100% - 44px);
  }

  .hero-copy h1,
  .panel-copy h2,
  .collection-hero-copy h1,
  .detail-hero-copy h1,
  .service-hero h1,
  .about-hero-copy h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .home-hero .hero-copy {
    bottom: 118px;
  }

  .hero-index {
    left: 22px;
    right: 22px;
    bottom: 30px;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
  }

  .section-heading,
  .statement h1,
  .closing h2,
  .callout-box h2,
  .feature-copy h2,
  .product-info h1 {
    font-size: 34px;
  }

  .showroom-index,
  .service-flow {
    padding: 76px 22px;
  }

  .collection-entry-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .collection-entry-copy h3,
  .flow-grid h3 {
    font-size: 30px;
  }

  .room-copy {
    padding: 78px 22px;
  }

  .room-copy h2,
  .product-inquiry-band h2 {
    font-size: 34px;
  }

  .room-image,
  .product-overview-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .statement {
    min-height: 56vh;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .signature-layout,
  .signature-layout.reverse {
    gap: 46px;
  }

  .signature-stack {
    gap: 46px;
  }

  .product-tile.featured .tile-image,
  .organized-grid.feature-first .product-tile:first-child .tile-image,
  .tile-image,
  .feature-image,
  .material-image,
  .premium-gallery .gallery-image,
  .premium-gallery .gallery-image.wide,
  .gallery-image,
  .gallery-image:nth-child(even) {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .collection-grid,
  .pairing-grid,
  .premium-gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .organized-grid.feature-first .product-tile:first-child,
  .premium-gallery .gallery-image.wide,
  .field.full {
    grid-column: auto;
  }

  .collection-browser {
    top: 66px;
    padding: 14px 22px;
  }

  .collection-browser-meta {
    font-size: 10px;
  }

  .category-pill {
    min-height: 34px;
    padding: 0 12px;
  }

  .collection-products {
    padding-top: 66px;
    padding-bottom: 86px;
  }

  .collection-groups {
    gap: 76px;
  }

  .product-group-header {
    margin-bottom: 28px;
  }

  .product-group-header h2 {
    font-size: 31px;
  }

  .material-copy,
  .feature-copy {
    padding: 78px 22px;
  }

  .form-intro h2,
  .memo h2,
  .text-block h2,
  .intro-copy h2,
  .material-note h2 {
    font-size: 31px;
  }

  .product-overview,
  .product-inquiry-band {
    gap: 40px;
    padding: 84px 22px;
  }

  .product-overview .btn-row,
  .product-inquiry-band .btn-row,
  .drawer-inquiry-form .btn-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-overview .btn,
  .product-inquiry-band .btn,
  .drawer-inquiry-form .btn {
    width: 100%;
  }

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

  .material-note {
    min-height: auto;
    padding: 42px 22px;
  }

  .material-note h2 {
    font-size: 28px;
  }

  .drawer-panel {
    width: 100vw;
    height: 100dvh;
    padding: 28px 22px;
  }

  #inquiryDrawerBody {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: calc(36px + env(safe-area-inset-bottom));
  }

  .drawer-product,
  .drawer-specs div {
    grid-template-columns: 1fr;
  }

  .inquiry-notice {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: calc(100vw - 32px);
    padding: 18px;
  }

  .drawer-thumb {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .callout-box {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    padding: 54px 24px;
  }

  .service-hero {
    min-height: 62vh;
    padding: 132px 22px 72px;
  }

  .overlay-links a {
    font-size: 39px;
  }

  .menu-overlay,
  .search-overlay {
    padding: 32px 22px;
  }

  .search-panel {
    margin-top: 14vh;
  }

  .search-panel input {
    font-size: 28px;
  }

  .search-result,
  .inquiry-row {
    grid-template-columns: 92px 1fr;
  }

  .search-result .tile-link,
  .inquiry-actions {
    grid-column: 2;
  }

  .tile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .tile-actions .tile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid var(--light-border);
  }

  .tile-actions .tile-link::after {
    display: none;
  }

  .inquiry-actions {
    flex-wrap: wrap;
  }

  .search-result .thumb,
  .inquiry-row .thumb {
    height: 92px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-wordmark {
    width: min(300px, 78vw);
  }
}

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

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