:root {
  --paper: #f2eee5;
  --paper-light: #faf8f2;
  --ink: #2a241e;
  --muted: #746b60;
  --wood: #79513b;
  --wood-dark: #3b2a21;
  --moss: #58624a;
  --line: rgba(42, 36, 30, 0.17);
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(51, 39, 29, 0.14);
  --radius: 1.1rem;
  --max: 1320px;
  --serif: "Microsoft YaHei", "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, sans-serif;
  --sans: "Microsoft YaHei", "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.8), transparent 30rem),
    repeating-linear-gradient(90deg, rgba(65,48,37,.018) 0 1px, transparent 1px 7px),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  color: var(--ink);
  background: rgba(250, 248, 242, .92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 5.25rem;
  margin: auto;
  gap: 2rem;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brandmark-logo {
  display: block;
  width: clamp(6.6rem, 8vw, 8.5rem);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 2.8vw, 3.2rem);
  font-size: .82rem;
  letter-spacing: .08em;
}

.nav-links a {
  position: relative;
  padding: 1.9rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 1.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  letter-spacing: .08em;
}

.nav-action::after {
  content: "↗";
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.4rem;
  height: 1px;
  margin: .34rem auto;
  background: currentColor;
  content: "";
  transition: transform .25s ease, opacity .25s ease;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(.45rem) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-.45rem) rotate(-45deg);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(100svh, 68rem);
  align-items: end;
  color: var(--white);
  background: var(--wood-dark);
  isolation: isolate;
}

.hero.compact {
  min-height: min(78svh, 49rem);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(25,20,16,.62) 0%, rgba(25,20,16,.16) 58%, rgba(25,20,16,.18)),
    linear-gradient(0deg, rgba(25,20,16,.55), transparent 55%);
  content: "";
}

.hero-content {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 10rem 0 clamp(4rem, 9vh, 7.5rem);
}

.hero-content.narrow {
  max-width: 900px;
  margin-left: max(1.5rem, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-no,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .65;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.28;
}

h1 {
  max-width: 960px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 6.6vw, 6.8rem);
  letter-spacing: -.035em;
}

.hero.compact h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .75rem 1.3rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button::after {
  content: "→";
  font-size: 1rem;
}

.button:hover {
  color: var(--paper-light);
  border-color: var(--wood-dark);
  background: var(--wood-dark);
  transform: translateY(-2px);
}

.button.light {
  color: var(--wood-dark);
  border-color: var(--white);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.48);
}

.button.ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.button.small {
  min-height: 2.65rem;
  padding: .55rem 1rem;
  font-size: .7rem;
}

.scroll-cue {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--max)) / 2));
  bottom: 3rem;
  display: grid;
  justify-items: center;
  gap: .6rem;
  font-size: .6rem;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,.6);
  content: "";
}

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.section.tight {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.section.dark {
  color: var(--paper-light);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 25rem),
    var(--wood-dark);
}

.section.moss {
  color: var(--paper-light);
  background: var(--moss);
}

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin: auto;
}

.narrow-container {
  width: min(calc(100% - 3rem), 920px);
  margin: auto;
}

.section-head {
  display: grid;
  grid-template-columns: .36fr 1fr;
  margin-bottom: clamp(2.8rem, 5vw, 5rem);
  gap: 2rem;
}

.section-head h2 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.4vw, 4.5rem);
  letter-spacing: -.025em;
}

.section-head p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-head-compact {
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.section-head-compact h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
}

.dark .section-head p,
.moss .section-head p {
  color: rgba(255,255,255,.7);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
}

.split-feature.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.split-feature.reverse .feature-media {
  order: 2;
}

.feature-media {
  position: relative;
}

.feature-media::before {
  position: absolute;
  z-index: -1;
  inset: -1.2rem 2.5rem 2.5rem -1.2rem;
  border: 1px solid var(--line);
  content: "";
}

.feature-media img {
  min-height: 480px;
  object-fit: cover;
}

.feature-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.feature-copy p {
  color: var(--muted);
}

.feature-copy .intro-answer {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.75;
}

.home-brand-intro {
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.home-brand-intro .split-feature {
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.home-page > .section:not(.faq-section) .section-head h2,
.home-page .brand-story-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

@media (min-width: 1200px) {
  .home-page .brand-story-copy h2 {
    white-space: nowrap;
  }
}

.signature {
  margin-top: 2rem;
  font: italic 1.3rem var(--serif);
  color: var(--wood);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.space-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  isolation: isolate;
}

.space-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.75,.3,1);
}

.space-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,20,15,.8), transparent 72%);
  content: "";
}

.space-card:hover img {
  transform: scale(1.045);
}

.space-card-content {
  position: absolute;
  right: 1.4rem;
  bottom: 1.5rem;
  left: 1.4rem;
}

.space-card h3 {
  margin-bottom: .35rem;
  font-size: 1.6rem;
}

.space-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  line-height: 1.7;
}

.strength-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  min-height: 650px;
  background: #161310;
}

.strength-media img {
  height: 100%;
  object-fit: cover;
  opacity: .84;
}

.strength-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5.5rem);
}

.strength-slide {
  display: none;
}

.strength-slide.is-active {
  display: block;
  animation: reveal .55s ease both;
}

.strength-slide h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.strength-slide p {
  color: rgba(255,255,255,.65);
}

.dots {
  display: flex;
  margin-top: 2rem;
  gap: .5rem;
}

.dot {
  width: 2.2rem;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.24);
  cursor: pointer;
}

.dot.is-active {
  background: var(--white);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.3rem;
}

.case-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  background: var(--wood-dark);
}

.case-card:nth-child(1),
.case-card:nth-child(5) {
  grid-column: span 7;
}

.case-card:nth-child(2),
.case-card:nth-child(6) {
  grid-column: span 5;
}

.case-card img {
  aspect-ratio: 1.35;
  object-fit: cover;
  opacity: .92;
  transition: transform .65s ease, opacity .35s ease;
}

.case-card:hover img {
  opacity: .72;
  transform: scale(1.035);
}

.case-card figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.case-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
}

.case-card span {
  font-size: .68rem;
  letter-spacing: .12em;
}

.showroom {
  position: relative;
  display: grid;
  min-height: 740px;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}

.showroom > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.showroom::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,18,14,.12) 20%, rgba(22,18,14,.76) 100%),
    linear-gradient(90deg, rgba(22,18,14,.22), transparent 55%);
  content: "";
}

.showroom-copy {
  display: grid;
  width: min(calc(100% - 8rem), 1240px);
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 6vw, 6rem);
  grid-template-columns: .9fr 1.1fr;
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
  text-align: left;
}

.showroom h2 {
  max-width: 12em;
  margin-bottom: 0;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1.38;
  text-wrap: balance;
}

.showroom-details {
  max-width: 660px;
}

.showroom-details p {
  margin: 0 0 1.6rem;
  color: rgba(255,255,255,.88);
  font-size: clamp(.9rem, 1vw, 1rem);
  line-height: 1.9;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
}

.article-card {
  min-height: 30rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  transition: background .25s ease, transform .25s ease;
}

.article-card:hover {
  background: var(--paper-light);
  transform: translateY(-4px);
}

.article-card .date {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
}

.article-card h3 {
  max-width: 600px;
  margin: 5rem 0 1rem;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.article-card p {
  max-width: 560px;
  color: var(--muted);
}

.channel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.channel {
  display: flex;
  min-height: 8rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
}

.channel::after {
  content: "↗";
}

.subnav {
  position: sticky;
  z-index: 20;
  top: 5.25rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.subnav-inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  padding: .75rem 1.5rem;
  gap: .4rem;
}

.tab-button,
.filter-button {
  padding: .65rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
}

.tab-button.is-active,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--wood-dark);
  background: var(--wood-dark);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: reveal .4s ease both;
}

.typology-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}

.typology-panel h3 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.typology-panel img {
  min-height: 470px;
  object-fit: cover;
}

.comparison-wrap {
  overflow-x: auto;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison th,
.comparison td {
  padding: 1.3rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  font: 600 .75rem var(--sans);
  letter-spacing: .08em;
}

.comparison td:first-child {
  width: 28%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.case-chapter {
  padding: clamp(5rem, 9vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.case-chapter-head {
  display: grid;
  grid-template-columns: .28fr .72fr;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.case-chapter h2 {
  margin-bottom: .6rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .8rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item:first-child,
.gallery-item:nth-child(5n) {
  grid-column: span 8;
}

.gallery-item img {
  height: 100%;
  min-height: 300px;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.case-index {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.case-index a {
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .75rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle-card {
  min-height: 23rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.2);
}

.principle-card .section-no {
  color: rgba(255,255,255,.5);
}

.principle-card h3 {
  margin-top: 6rem;
  font-size: 2rem;
}

.principle-card p {
  color: rgba(255,255,255,.68);
}

.small-space-page {
  background: var(--paper);
}

.space-collection {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--paper-light);
}

.space-collection.is-alternate {
  background: var(--paper);
}

.space-collection-banner {
  position: relative;
  display: flex;
  height: clamp(24rem, 34vw, 30rem);
  overflow: hidden;
  background: #e6d9ca;
}

.space-banner-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.space-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform .7s ease;
}

.space-collection-banner:hover .space-banner-media img {
  transform: scale(1.018);
}

.space-banner-copy {
  z-index: 1;
  display: flex;
  width: min(40%, 31rem);
  min-height: 100%;
  margin-left: auto;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(255,255,255,.28);
  background: rgba(250,248,242,.5);
  backdrop-filter: blur(16px) saturate(.9);
}

.space-banner-copy h2 {
  margin: 1.2rem 0 1rem;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.space-banner-copy p {
  max-width: 27em;
  margin: 0;
  color: var(--ink);
}

.space-banner-categories {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .76rem;
}

.space-more-button {
  margin-top: 2rem;
}

.space-more-button::after {
  content: none;
}

.space-product-heading {
  display: grid;
  grid-template-columns: .28fr .72fr;
  align-items: end;
  margin: clamp(3rem, 6vw, 5rem) 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}

.space-product-heading > span {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -.04em;
}

.space-product-heading h3 {
  margin: 0 0 .35rem;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.space-product-heading p {
  margin: 0;
  color: var(--muted);
}

.space-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

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

.space-product-image {
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.space-product-image img {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center 54%;
  transition: transform .5s ease;
}

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

.space-product-copy {
  padding: 1.15rem .15rem 0;
}

.space-product-copy > span,
.space-product-copy small {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
}

.space-product-copy h3 {
  margin: .3rem 0 .4rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.35;
}

.space-product-copy p {
  min-height: 2.8em;
  margin: 0 0 .65rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.shop-category-nav {
  overflow: hidden;
  border-top: 1px solid rgba(32, 27, 23, .06);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.shop-category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.75rem, 1.4vw, 1.4rem);
  padding: clamp(2rem, 3.4vw, 3.25rem) 0 clamp(1.5rem, 2.6vw, 2.4rem);
}

.shop-category-card {
  display: flex;
  min-width: 0;
  padding: 0 0 .8rem;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.shop-category-media {
  display: block;
  width: min(100%, 10rem);
  height: clamp(4.75rem, 6vw, 6rem);
  overflow: hidden;
  border: 1px solid rgba(32, 27, 23, .08);
  border-radius: 3px;
  background: var(--paper-light);
  box-shadow: 0 8px 22px rgba(38, 29, 22, .04);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.shop-category-media img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.shop-category-label {
  font-size: .86rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.shop-category-card:hover .shop-category-media,
.shop-category-card:focus-visible .shop-category-media {
  border-color: rgba(32, 27, 23, .22);
  box-shadow: 0 12px 28px rgba(38, 29, 22, .09);
  transform: translateY(-3px);
}

.shop-category-card:hover .shop-category-media img,
.shop-category-card:focus-visible .shop-category-media img {
  transform: scale(1.035);
}

.shop-category-card.is-active {
  color: var(--wood-dark);
  border-bottom-color: var(--wood-dark);
}

.shop-category-card.is-active .shop-category-media {
  border-color: var(--wood-dark);
  box-shadow: 0 12px 28px rgba(38, 29, 22, .12);
}

.shop-result-count {
  margin-right: .8rem;
  color: var(--moss);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: rgba(255,255,255,.35);
  transition: box-shadow .28s ease, transform .28s ease;
}

.dark .product-card {
  color: var(--ink);
  background: var(--paper-light);
}

.dark .product-card .product-space {
  color: #47523d;
}

.dark .product-card .product-feature,
.dark .product-card .product-id {
  color: #625a51;
}

.dark .product-card .product-actions {
  border-top-color: rgba(42, 36, 30, .2);
}

.dark .product-card .product-actions a {
  color: var(--ink);
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-image {
  display: block;
  overflow: hidden;
  background: #e8e1d5;
}

.product-image img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .55s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.product-space {
  margin-bottom: .5rem;
  color: var(--moss);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.product-copy h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

.product-feature {
  min-height: 3.2em;
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

.product-id {
  margin-top: auto;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .06em;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-actions a {
  padding: .85rem .4rem 0;
  font-size: .7rem;
  text-align: center;
}

.product-actions a + a {
  border-left: 1px solid var(--line);
}

.result-count {
  margin-left: auto;
  padding: .65rem 0;
  color: var(--muted);
  font-size: .72rem;
}

.product-hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1.1fr .9fr;
  padding-top: 5.25rem;
}

.product-gallery {
  min-height: 720px;
  background: #e5ded2;
}

.product-gallery img {
  height: 100%;
  object-fit: cover;
}

.product-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 7rem);
}

.breadcrumbs {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .7rem;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.product-summary h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.product-summary .lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.spec-list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}

.spec-list span:first-child {
  color: var(--muted);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fact-card {
  min-height: 18rem;
  padding: 1.8rem;
  border: 1px solid var(--line);
}

.fact-card h3 {
  margin-top: 4rem;
  font-size: 1.5rem;
}

.fact-card p {
  color: var(--muted);
  font-size: .84rem;
}

.brand-poster {
  position: relative;
}

.brand-poster img {
  min-height: 620px;
  object-fit: cover;
}

.brand-story-copy {
  max-width: 760px;
}

.brand-story-copy p {
  max-width: 42em;
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.9;
}

.brand-long-copy {
  max-width: 760px;
}

.brand-long-copy h2 {
  max-width: 12em;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1.3;
}

.brand-long-copy p {
  max-width: 46em;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.brand-heading-section .section-head h2 {
  max-width: none;
  font-size: clamp(2.15rem, 3.4vw, 3.2rem);
}

@media (min-width: 1200px) {
  .brand-heading-section .section-head {
    grid-template-columns: .28fr 1fr;
  }

  .brand-heading-section .section-head h2 {
    white-space: nowrap;
  }
}

.team-grid .team-image {
  grid-column: span 4;
  aspect-ratio: 1.2;
}

.team-grid .team-image:first-child {
  grid-column: span 8;
}

.team-grid .team-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-step {
  display: grid;
  grid-template-columns: .2fr .35fr .45fr;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}

.timeline-step h3 {
  font-size: 1.7rem;
}

.timeline-step p {
  color: var(--muted);
}

.timeline-step img {
  aspect-ratio: 1.45;
  object-fit: cover;
}

.contact-location {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(121, 81, 59, .07), transparent 42%),
    var(--paper-light);
}

.location-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e6e1d7;
  box-shadow: var(--shadow);
}

.location-map > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-card {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  left: clamp(1.25rem, 3vw, 2.5rem);
  width: min(calc(100% - 2.5rem), 29rem);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--paper-light);
  background: rgba(59, 42, 33, .96);
  box-shadow: 0 18px 45px rgba(42, 36, 30, .24);
}

.location-kicker {
  display: block;
  margin-bottom: 1.6rem;
  color: rgba(255, 253, 247, .62);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.location-card address {
  display: grid;
  gap: .75rem;
  font-style: normal;
}

.location-card strong {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.35;
}

.location-card address span {
  color: rgba(255, 253, 247, .78);
  line-height: 1.9;
}

.channel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.channel-card {
  display: grid;
  min-height: 15rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  align-content: center;
  justify-items: center;
  text-align: center;
}

.channel-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.channel-icon svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.channel-card h3 {
  font-size: 1.35rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 260px;
  justify-content: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.article-body {
  font-size: 1.03rem;
  line-height: 2;
}

.article-body h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.article-body .lede {
  font: 400 1.4rem/1.8 var(--serif);
}

.article-meta {
  position: sticky;
  top: 8rem;
  align-self: start;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .76rem;
}

.article-meta div {
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.article-nav a {
  padding: 1.5rem;
}

.article-nav a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-section .section-head h2 {
  max-width: none;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.35;
  white-space: nowrap;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "＋";
}

.faq-list details[open] summary::after {
  content: "－";
}

.faq-list details p {
  max-width: 800px;
  padding: 0 0 1.5rem;
  color: var(--muted);
}

.moss .faq-list details {
  border-bottom-color: rgba(255, 253, 247, .2);
}

.moss .faq-list details p {
  color: rgba(255, 253, 247, .82);
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: none;
  grid-template-columns: auto minmax(0, 1fr) auto;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  border: 0;
  background: rgba(19,15,12,.92);
  gap: clamp(.75rem, 2vw, 2rem);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-stage {
  display: grid;
  width: 100%;
  max-width: min(82vw, 1280px);
  height: 100%;
  max-height: 92vh;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(92vh - 3.5rem);
  object-fit: contain;
}

.lightbox-stage figcaption {
  display: flex;
  width: 100%;
  padding-top: .8rem;
  justify-content: space-between;
  color: rgba(255, 253, 247, .78);
  font-size: .72rem;
  gap: 1rem;
}

.lightbox-caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-counter {
  flex: 0 0 auto;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 100%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lightbox-nav {
  display: grid;
  width: clamp(2.75rem, 4vw, 3.5rem);
  height: clamp(2.75rem, 4vw, 3.5rem);
  padding: 0;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 100%;
  color: var(--white);
  background: rgba(19,15,12,.35);
  cursor: pointer;
  place-items: center;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: scale(1.04);
}

.lightbox-nav[hidden] {
  display: none;
}

.site-footer {
  color: var(--paper-light);
  background: #201914;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  padding: clamp(4rem, 8vw, 8rem) 0;
  gap: clamp(3rem, 8vw, 9rem);
}

.footer-statement {
  font: 400 clamp(1.75rem, 2.6vw, 3rem)/1.35 var(--serif);
  white-space: nowrap;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links strong {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  letter-spacing: .16em;
}

.footer-links a,
.footer-links span {
  display: block;
  padding: .28rem 0;
  color: rgba(255,255,255,.76);
  font-size: .82rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.social-item {
  position: relative;
}

.social-channel {
  display: grid;
  width: 3rem;
  padding: 0;
  color: rgba(255,255,255,.78);
  gap: .35rem;
  justify-items: center;
}

.social-channel svg {
  width: 2.55rem;
  height: 2.55rem;
  padding: .55rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-channel span {
  width: max-content;
  max-width: 4.5rem;
  padding: 0;
  color: inherit;
  font-size: .6rem;
  line-height: 1.35;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .brand-editorial,
  .brand-editorial.reverse {
    grid-template-columns: 1fr;
  }

  .brand-editorial.reverse .feature-media {
    order: 0;
  }

  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space-card:last-child {
    grid-column: span 2;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-action {
    display: none;
  }

  .nav-links {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    color: var(--ink);
    background: var(--paper-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2rem);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-links a {
    padding: .5rem 0;
    font: 500 clamp(1.8rem, 8vw, 3.5rem) var(--serif);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-open .site-header {
    color: var(--ink);
  }

  .section-head,
  .case-chapter-head {
    grid-template-columns: 1fr;
  }

  .shop-category-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .shop-category-strip::-webkit-scrollbar {
    display: none;
  }

  .shop-category-card {
    flex: 0 0 8.5rem;
    scroll-snap-align: start;
  }

  .shop-category-media {
    height: 6.4rem;
  }

  .showroom-copy {
    width: min(calc(100% - 3rem), 720px);
    padding-bottom: 3.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .showroom-details {
    max-width: 100%;
  }

  .split-feature,
  .split-feature.reverse,
  .typology-panel,
  .strength-stage,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .feature-media {
    order: 0;
  }

  .strength-stage {
    min-height: 0;
  }

  .strength-media img {
    min-height: 420px;
  }

  .case-card,
  .case-card:nth-child(1),
  .case-card:nth-child(2),
  .case-card:nth-child(5),
  .case-card:nth-child(6) {
    grid-column: span 6;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(5n) {
    grid-column: span 6;
  }

  .principle-grid,
  .fact-grid,
  .channel-cards {
    grid-template-columns: 1fr;
  }

  .location-map {
    display: grid;
  }

  .location-map > img {
    aspect-ratio: 1.35;
  }

  .location-card {
    position: static;
    width: 100%;
  }

  .space-collection-banner {
    height: clamp(29rem, 78vw, 38rem);
  }

  .space-banner-media {
    height: auto;
  }

  .space-banner-copy {
    width: min(52%, 27rem);
    min-height: 0;
    margin-top: auto;
    align-self: flex-end;
    padding: 3rem 2rem;
  }

  .space-product-heading {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .product-gallery {
    min-height: 60svh;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-meta {
    position: static;
  }

  .timeline-step {
    grid-template-columns: .25fr .75fr;
  }

  .timeline-step img {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lightbox {
    grid-template-columns: 1fr;
    padding: .75rem;
  }

  .lightbox-stage {
    max-width: 100%;
    max-height: 90vh;
  }

  .lightbox-stage img {
    max-height: calc(90vh - 3.5rem);
  }

  .lightbox-nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    background: rgba(19,15,12,.62);
    transform: translateY(-50%);
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .lightbox-previous {
    left: .75rem;
  }

  .lightbox-next {
    right: .75rem;
  }

  .lightbox-stage figcaption {
    padding-right: .35rem;
    padding-left: .35rem;
  }

  .showroom h2 {
    font-size: 1.75rem;
    line-height: 1.5;
  }

  .faq-section .section-head h2 {
    font-size: 1.8rem;
    white-space: normal;
  }

  .nav,
  .container,
  .hero-content,
  .narrow-container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .hero,
  .hero.compact {
    min-height: 82svh;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-content {
    padding-bottom: 3.4rem;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .space-product-grid::-webkit-scrollbar {
    display: none;
  }

  .space-collection {
    padding: 3.5rem 0;
  }

  .space-banner-media {
    height: auto;
  }

  .space-banner-copy {
    width: 100%;
    min-height: 0;
    margin-top: auto;
    align-self: flex-end;
    justify-content: flex-end;
    padding: 2rem 1.35rem 1.8rem;
    border-top: 1px solid rgba(255,255,255,.24);
    border-left: 0;
    background: linear-gradient(180deg, rgba(250,248,242,.05) 0%, rgba(250,248,242,.4) 58%, rgba(250,248,242,.56) 100%);
    backdrop-filter: blur(10px) saturate(.9);
  }

  .space-banner-copy h2 {
    margin-top: .6rem;
    margin-bottom: .65rem;
    font-size: 3rem;
  }

  .space-banner-categories {
    margin-top: .5rem;
  }

  .space-more-button {
    margin-top: 1.2rem;
  }

  .space-product-heading {
    margin-top: 2.7rem;
  }

  .space-product-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(78vw, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: .75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .space-product-card {
    scroll-snap-align: start;
  }

  .scroll-cue {
    display: none;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-card,
  .space-card:last-child {
    grid-column: auto;
    min-height: 25rem;
  }

  .case-card,
  .case-card:nth-child(1),
  .case-card:nth-child(2),
  .case-card:nth-child(5),
  .case-card:nth-child(6) {
    grid-column: span 12;
  }

  .showroom {
    min-height: 620px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 24rem;
  }

  .article-card h3 {
    margin-top: 3rem;
  }

  .channel-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(5n) {
    grid-column: span 12;
  }

  .gallery-item img {
    min-height: 250px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }

  .product-copy {
    padding: .85rem;
  }

  .product-copy h3 {
    font-size: 1rem;
  }

  .product-feature {
    font-size: .7rem;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-actions a + a {
    border-left: 0;
  }

  .product-actions a:last-child {
    display: none;
  }

  .product-gallery {
    min-height: 52svh;
  }

  .product-summary {
    padding: 2.2rem 1.2rem 4rem;
  }

  .team-grid .team-image,
  .team-grid .team-image:first-child {
    grid-column: span 12;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-step img {
    grid-column: 1;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
