:root {
  --soft-white: #ffffff;
  --graphite: #2f3432;
  --warm-plywood: #e8d8bf;
  --panel-green: #6f7f68;
  --oxide-red: #a7513d;
  --brick-red: #a84e3a;
  --cta-background: #a84e3a;
  --cnc-yellow: #e7be3f;
  --muted: #2f3432;
  --line: rgba(35, 37, 35, 0.16);
  --white: #ffffff;
  --content-width: 1680px;
}

/* Local product catalogue — Birch light */
.catalog-hero.section-pad {
  padding-top: clamp(104px, 8vw, 126px);
  padding-bottom: clamp(10px, 1.2vw, 18px);
  background: #fff;
}

.catalog-hero-panel {
  width: min(var(--content-width), 100%);
  max-width: calc(100vw - 20px);
  margin-inline: auto;
  padding: clamp(18px, 2vw, 30px) clamp(22px, 3vw, 42px);
  border-radius: 10px;
  background: #f1ede0;
}

.catalog-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.06rem, 1.68vw, 1.85rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  white-space: normal;
}

.catalog-hero-copy {
  min-width: 0;
}

.catalog-intro {
  max-width: 620px;
  margin: clamp(8px, 0.8vw, 14px) 0 0;
  color: rgba(22, 22, 20, 0.72);
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
  line-height: 1.45;
}


.catalog-toolbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(22, 22, 20, 0.14);
}

.catalog-product-search {
  width: min(560px, 100%);
}

.catalog-toolbar p,
.catalog-toolbar label {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.catalog-search {
  display: flex;
  align-items: center;
  width: min(520px, 100%);
  min-height: 48px;
  gap: 11px;
  padding: 0 16px;
  border: 1px solid rgba(22, 22, 20, 0.2);
  border-radius: 8px;
  background: #fff;
}

.catalog-search:focus-within {
  border-color: rgba(167, 81, 61, 0.48);
  box-shadow: 0 0 0 3px rgba(167, 81, 61, 0.1);
}

.catalog-search svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(35, 37, 35, 0.48);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--graphite);
  font: inherit;
}

.catalog-filter-group,
.catalog-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.catalog-filter-group > span {
  color: rgba(22, 22, 20, 0.58);
  font-size: 0.78rem;
}

.material-filter {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(22, 22, 20, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.material-filter i {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(22, 22, 20, 0.14);
  border-radius: 50%;
  background: url("assets/optimized/birch-plywood-texture-light-v03.png") center / cover;
}

.material-filter.is-active {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.catalog-toolbar-meta {
  position: absolute;
  right: clamp(18px, 7vw, 144px);
  justify-content: flex-end;
  white-space: nowrap;
}

.catalog-toolbar select {
  margin-left: 0.65rem;
  padding: 0.65rem 2.1rem 0.65rem 0.8rem;
  border: 1px solid rgba(22, 22, 20, 0.24);
  background: #fff;
  font: inherit;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(12px, 1.2vw, 20px);
  row-gap: clamp(10px, 1.2vw, 18px);
  padding-top: clamp(18px, 2vw, 30px);
  padding-bottom: clamp(18px, 2vw, 30px);
  background: #fff;
}

.catalog-product {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 22, 20, 0.1);
  border-radius: 10px;
  background: #f7f5f0;
}

.catalog-product-visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #efede7;
  cursor: pointer;
}

.catalog-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-product:hover .catalog-product-visual img {
  transform: scale(1.035);
}

.catalog-3d-badge {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: #1c1c1a;
  color: #fff;
  font-size: 0.72rem;
}

.catalog-visual-actions {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.catalog-3d-label {
  padding-bottom: 1px;
  border-bottom: 1px solid currentColor;
  color: #171715;
  font-size: 0.72rem;
  line-height: 1.2;
}

.catalog-product-copy {
  padding: 1.4rem 1.45rem 1.7rem;
}

.catalog-product-copy h2,
.catalog-product-copy strong {
  display: block;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.catalog-product-copy h2 {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
}

.catalog-product-copy h2 span {
  font-weight: 400;
}

.product-swatches,
.viewer-material-options {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.product-swatches {
  margin-bottom: 1.15rem;
}

.product-swatch-option {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  min-width: 48px;
}

.product-swatch-option > span {
  max-width: 62px;
  color: rgba(22, 22, 20, 0.66);
  font-size: 0.66rem;
  line-height: 1.15;
  text-align: center;
}

.product-swatch {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(22, 22, 20, 0.2);
  border-radius: 50%;
  background: #d5b991;
  box-shadow: none;
  cursor: pointer;
}

.product-swatch::before,
.product-swatch::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.product-swatch::before {
  top: 0;
  height: 53%;
  background: var(--swatch-color);
}

.product-swatch::after {
  bottom: 0;
  height: 47%;
  border-top: 1px solid rgba(67, 45, 29, 0.48);
  background:
    repeating-linear-gradient(
      to bottom,
      #e8cda7 0 2px,
      #75513a 2px 3px,
      #c99c6b 3px 5px,
      #5f412f 5px 6px
    );
}

.product-swatch[data-card-material="birch-light"]::before,
.product-swatch[data-viewer-material="birch-light"]::before {
  background: url("assets/optimized/birch-plywood-texture-light-v02.jpg") center / cover;
}

.product-swatch[data-card-material="slate-blue"],
.product-swatch[data-viewer-material="slate-blue"] { --swatch-color: #8fa2b2; }
.product-swatch[data-card-material="pistachio"],
.product-swatch[data-viewer-material="pistachio"] { --swatch-color: #b4b8a9; }
.product-swatch[data-card-material="vapour"],
.product-swatch[data-viewer-material="vapour"] { --swatch-color: #b8bab7; }

.product-swatch.is-active {
  border-color: #202321;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #202321;
}

.product-swatch:focus-visible {
  outline: 3px solid rgba(167, 81, 61, 0.28);
  outline-offset: 4px;
}

.catalog-product-copy strong {
  margin-top: 0.25rem;
  font-weight: 400;
}

.catalog-product-copy > span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(22, 22, 20, 0.58);
  font-size: 0.8rem;
}

.catalog-view-button {
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.catalog-note {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #d9c39d;
}

.catalog-note p {
  margin: 0;
}

.catalog-note a {
  color: inherit;
}

.product-viewer {
  width: min(1180px, calc(100vw - 2rem));
  max-width: none;
  padding: 0;
  border: 0;
  background: #f7f5f0;
  color: #171715;
}

.product-viewer::backdrop {
  background: rgba(18, 18, 16, 0.74);
  backdrop-filter: blur(4px);
}

.product-viewer[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.85fr);
}

.viewer-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(22, 22, 20, 0.16);
  border-radius: 50%;
  background: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.viewer-stage {
  position: relative;
  min-height: min(74vh, 760px);
  background: #efede7;
}

#product-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(74vh, 760px);
  touch-action: none;
  cursor: grab;
}

#product-canvas:active {
  cursor: grabbing;
}

.viewer-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.65rem 1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  transform: translateX(-50%);
}

.viewer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 3vw, 3rem);
}

.viewer-info h2 {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.6rem 0 0.35rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.viewer-display-size {
  margin: 0;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: inherit;
}

.viewer-info > .viewer-size-mm {
  margin: 0.65rem 0 2rem;
  color: rgba(22, 22, 20, 0.58);
  font-size: 0.9rem;
}

.viewer-product-heading > .viewer-size-mm {
  margin: 0.65rem 0 2rem;
  color: rgba(22, 22, 20, 0.58);
  font-size: 0.9rem;
}

.viewer-info dl {
  margin: 0;
}

.viewer-material-picker {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgba(22, 22, 20, 0.13);
  border-bottom: 1px solid rgba(22, 22, 20, 0.13);
}

.viewer-material-options {
  flex-wrap: wrap;
  align-items: center;
}

.viewer-material-picker strong {
  font-size: 0.84rem;
  font-weight: 500;
}

.viewer-material-picker > span {
  color: rgba(22, 22, 20, 0.58);
  font-size: 0.78rem;
}

.viewer-material-picker .material-filter {
  width: max-content;
}

.viewer-info dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(22, 22, 20, 0.13);
}

.viewer-info dl div:first-child {
  border-top: 0;
}

.viewer-info dt,
.viewer-info dd {
  margin: 0;
  font-size: 0.82rem;
}

.viewer-info dd {
  text-align: right;
}

.viewer-info dt {
  color: rgba(22, 22, 20, 0.58);
}

.viewer-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.viewer-actions button {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(22, 22, 20, 0.25);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .catalog-toolbar { flex-direction: column; }
  .catalog-toolbar-meta { position: static; align-self: stretch; }
  .catalog-filter-group, .catalog-toolbar-meta { justify-content: flex-start; flex-wrap: wrap; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-viewer[open] { grid-template-columns: 1fr; }
  .viewer-stage, #product-canvas { min-height: 54vh; }
}

@media (max-width: 600px) {
  .catalog-hero.section-pad { padding-top: 88px; }
  .products-page-hero { padding-top: 88px !important; }
  .catalog-hero h1 { font-size: clamp(1.35rem, 6.2vw, 1.85rem); }
  .catalog-toolbar, .catalog-note { align-items: flex-start; flex-direction: column; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-product-copy h2 { white-space: normal; }

  .product-viewer {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    overflow: hidden;
  }

  .product-viewer[open] {
    grid-template-rows: minmax(240px, calc(100dvh - 360px)) 360px;
  }

  .viewer-stage,
  #product-canvas {
    min-height: 0;
    height: 100%;
  }

  .viewer-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.35rem;
  }

  .viewer-hint {
    bottom: 0.65rem;
    max-width: calc(100% - 6rem);
    padding: 0.45rem 0.75rem;
    font-size: 0.66rem;
    white-space: nowrap;
  }

  .viewer-info {
    min-height: 0;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.8rem 1rem 0.75rem;
    line-height: 1.25;
  }

  .viewer-info .catalog-eyebrow {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
  }

  .viewer-info h2 {
    gap: 0.28rem;
    margin: 0.18rem 0 0;
    font-size: clamp(1rem, 4.8vw, 1.18rem);
    line-height: 1.08;
  }

  .viewer-product-heading > .viewer-size-mm {
    margin: 0.18rem 0 0;
    font-size: 0.75rem;
    line-height: 1.15;
  }

  .viewer-material-picker {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.2rem 0.65rem;
    margin: 0;
    padding: 0.45rem 0;
  }

  .viewer-material-picker > span {
    grid-column: 1;
    grid-row: 1;
  }

  .viewer-material-options {
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-wrap: nowrap;
    gap: 0.58rem;
  }

  .viewer-material-picker strong {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.936rem;
    line-height: 1.1;
  }

  .viewer-material-picker > span {
    font-size: 1.014rem;
  }

  .viewer-material-picker .product-swatch {
    width: 34px;
    height: 34px;
  }

  .viewer-info dl div {
    padding: 0.38rem 0;
  }

  .viewer-info dt,
  .viewer-info dd {
    font-size: 0.936rem;
    line-height: 1.15;
  }

  .viewer-actions {
    gap: 0.4rem;
    margin-top: 0;
  }

  .viewer-actions button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 36px;
    padding: 0.42rem 0.25rem;
    font-size: 0.91rem;
    line-height: 1.08;
  }
}

@media (max-width: 600px) {
  .products-page-hero {
    padding-top: 88px !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 400;
  color: var(--graphite);
  background: var(--soft-white);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(35, 37, 35, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 142px;
  height: 30px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(35, 37, 35, 0.74);
  font-size: 1rem;
  font-weight: 400;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--oxide-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 112svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--graphite);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 37, 35, 0.76), rgba(35, 37, 35, 0.22) 52%, rgba(35, 37, 35, 0.1)),
    linear-gradient(0deg, rgba(35, 37, 35, 0.62), transparent 50%);
  content: "";
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(0.96);
  opacity: 0;
  transform: scale(1.035);
  transform-origin: center;
  transition: opacity 1100ms ease, transform 6400ms linear;
  will-change: opacity, transform;
}


.hero-media img.is-active {
  opacity: 1;
  transform: scale(1.113) translate3d(var(--hero-pan-x, 0), var(--hero-pan-y, 0), 0);
}


.hero-media img.is-zoom-out {
  transform: scale(1.113) translate3d(var(--hero-pan-x, 0), var(--hero-pan-y, 0), 0);
}

.hero-media img.is-active.is-zoom-out {
  transform: scale(1.035);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 112px));
  margin: 0 auto;
  padding: 148px 0 132px;
  color: var(--soft-white);
  text-align: left;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--oxide-red);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cnc-yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1240px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.35vw, 3.65rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 820px;
  margin: 0 0 30px;
  color: rgba(247, 243, 236, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--soft-white);
  background: var(--cta-background);
}

.button.secondary {
  color: var(--soft-white);
  border-color: rgba(247, 243, 236, 0.5);
}

.section-pad {
  padding: clamp(24px, 3vw, 44px) clamp(18px, 7vw, 144px);
}

.section-label {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
  color: var(--oxide-red);
  font-size: 0.9rem;
  font-weight: 400;
}

.section-heading,
.steps,
.split,
.benefit-grid,
.project-grid,
.projects-teaser,
.materials-teaser,
.page-hero,
.realization-gallery,
.material-list,
.product-categories,
.contact {
  width: min(var(--content-width), 100%);
  max-width: var(--content-width);
  margin-inline: auto;
}

.split-copy p,
.detail-text p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.principle {
  background: var(--white);
}

.principle.section-pad {
  padding-inline: clamp(18px, 7vw, 144px);
}

.principle > .section-heading,
.materials-teaser > .section-heading,
.projects-showcase > .section-heading,
.page-hero > .section-heading {
  margin-bottom: clamp(6px, 0.6vw, 10px);
  padding: clamp(8px, 1vw, 15px) clamp(24px, 3vw, 42px);
  border-radius: 10px;
  background: #f1ede0;
}

.principle > .section-heading h2,
.materials-teaser > .section-heading h2,
.projects-showcase > .section-heading h2,
.page-hero > .section-heading h1 {
  margin-bottom: 0;
  font-size: clamp(1.06rem, 1.68vw, 1.85rem);
}

.projects-showcase > .section-heading {
  grid-column: 1 / -1;
}

.principle-quote {
  background: var(--white);
  padding-block: clamp(8px, 1vw, 16px);
}

.principle-quote p {
  width: min(1180px, calc(100% - 112px));
  max-width: 1180px;
  margin-left: max(56px, calc((100% - 1180px) / 2));
  margin-right: auto;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  text-align: center;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(12px, 1.2vw, 20px);
  row-gap: clamp(10px, 1.2vw, 18px);
}

.steps article {
  display: contents;
}

.steps article:nth-child(1) .step-visual-frame,
.steps article:nth-child(1) .step-copy {
  grid-column: 1;
}

.steps article:nth-child(2) .step-visual-frame,
.steps article:nth-child(2) .step-copy {
  grid-column: 2;
}

.steps article:nth-child(3) .step-visual-frame,
.steps article:nth-child(3) .step-copy {
  grid-column: 3;
}

.step-visual-frame {
  grid-row: 1;
}

.step-copy {
  grid-row: 2;
}

.step-visual-frame {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(35, 37, 35, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft-white);
}

.step-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.step-visual--contain {
  object-fit: contain;
}

.steps article:hover .step-visual,
.steps article:focus-within .step-visual {
  transform: scale(1.2);
}

.step-copy,
.projects-showcase-copy,
.materials-teaser-copy {
  overflow: hidden;
}

.step-copy > *,
.projects-showcase-copy > *,
.materials-teaser-copy > * {
  transition: transform 420ms ease;
  transform-origin: center;
}

.step-copy:hover > *,
.step-copy:focus-within > *,
.projects-showcase-copy:hover > *,
.projects-showcase-copy:focus-within > *,
.materials-teaser-copy:hover > *,
.materials-teaser-copy:focus-within > * {
  transform: scale(1.08);
}

.step-copy {
  min-width: 0;
  min-height: clamp(150px, 12vw, 210px);
  padding: clamp(22px, 2.2vw, 34px);
  border-radius: 10px;
  background: #f1ede0;
}

.steps h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.steps p {
  margin-bottom: 0;
}

.steps p,
.benefit-grid p,
.project-grid figcaption,
.realization-gallery figcaption,
.projects-teaser p,
.materials-teaser p,
.page-hero p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
}

.split-copy {
  max-width: none;
}

.swatches {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.swatches span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(35, 37, 35, 0.16);
  border-radius: 50%;
  background: var(--swatch);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  min-height: 560px;
  background: var(--graphite);
  color: var(--soft-white);
}

.detail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.detail-text h2 {
  max-width: 560px;
}

.detail-text p {
  max-width: 520px;
  color: rgba(247, 243, 236, 0.72);
}

.detail-band img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.projects-showcase {
  background: var(--soft-white);
  color: var(--graphite);
}

.projects-showcase-layout {
  display: grid;
  width: min(var(--content-width), 100%);
  max-width: var(--content-width);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
  align-items: stretch;
}

.projects-showcase-column {
  display: grid;
  min-width: 0;
  gap: clamp(12px, 1.2vw, 20px);
}

.projects-showcase-column--copy {
  grid-template-rows: minmax(clamp(320px, 24vw, 410px), auto) minmax(clamp(520px, 38vw, 700px), 1fr);
}

.projects-showcase-column--media {
  grid-template-rows: repeat(2, minmax(clamp(420px, 31vw, 560px), 1fr));
}

.projects-showcase-copy {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: clamp(26px, 3vw, 48px);
  border-radius: 10px;
  background: #f1ede0;
}

.projects-showcase h2 {
  max-width: 660px;
}

.projects-showcase-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.projects-showcase-action {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(28px, 4vw, 46px);
}

.projects-showcase-mobile-mosaic {
  display: none;
}

.projects-showcase-tile {
  display: block;
  height: 100%;
  min-width: 0;
  color: inherit;
}

.projects-showcase-tile figure {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.projects-showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.projects-showcase-detail img {
  object-position: 54% 57%;
}

.projects-showcase-column--media .projects-showcase-tile:not(.projects-showcase-main) img {
  object-position: 50% 55%;
}

.projects-showcase-tile:hover img,
.projects-showcase-tile:focus-visible img {
  transform: scale(1.2);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-grid figure {
  margin: 0;
}

.project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.project-grid figcaption {
  max-width: 520px;
  margin-top: 12px;
  font-size: 0.95rem;
}



.materials-teaser {
  background: var(--white);
  border-top: 0;
  border-bottom: 0;
}

.materials-teaser-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2.5fr);
  grid-template-areas: "copy images";
  gap: clamp(12px, 1.2vw, 20px);
  align-items: stretch;
}

.materials-teaser-copy {
  grid-area: copy;
  display: flex;
  min-width: 0;
  min-height: clamp(390px, 29vw, 520px);
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin-bottom: 0;
  padding: clamp(26px, 3vw, 48px);
  border-radius: 10px;
  background: #f1ede0;
  text-align: left;
}

.materials-teaser-copy p {
  color: var(--graphite);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.58;
}

.materials-teaser-image {
  grid-area: images;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 15vw, 220px);
  overflow: hidden;
  min-height: clamp(390px, 29vw, 520px);
  border: 1px solid rgba(35, 37, 35, 0.1);
  border-radius: 10px;
  background: #f1ede0;
  color: var(--graphite);
  text-decoration: none;
}

.materials-teaser-button {
  align-self: flex-end;
  margin-top: 4px;
}

.materials-teaser-panel {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.materials-teaser-preview {
  background: #e9e6dc;
}

.materials-teaser-preview-base,
.materials-teaser-preview-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.materials-teaser-preview-layer {
  pointer-events: none;
}

@media (max-width: 600px) {
  .materials-teaser-desktop-intro {
    display: none;
  }

  .steps article {
    overflow: hidden;
    border: 1px solid rgba(35, 37, 35, 0.1);
    border-radius: 10px;
    background: #f1ede0;
  }

  .steps .step-copy {
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
  }

  .steps .step-visual-frame {
    border: 0;
    border-radius: 0;
  }
}

.materials-teaser-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 2.2vw, 34px) clamp(18px, 1.8vw, 28px);
  background: #f5f1e5;
}

.materials-teaser-mobile-button {
  display: none;
}

.materials-teaser-controls-title {
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 600;
  line-height: 1.3;
}

.materials-teaser-swatches {
  display: grid;
  grid-template-columns: repeat(2, 42px);
  gap: 11px;
}

.materials-teaser-swatches i {
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(35, 37, 35, 0.16);
  border-radius: 50%;
  background: var(--teaser-swatch);
}

.materials-teaser-swatches i.is-selected {
  outline: 2px solid var(--brick-red);
  outline-offset: 3px;
}

.materials-teaser-handle-types {
  display: flex;
  gap: 8px;
}

.materials-teaser-handle-label {
  margin-top: auto;
  margin-bottom: -8px;
}

.materials-teaser-handle {
  position: relative;
  width: 44px;
  height: 34px;
  border: 1px solid rgba(35, 37, 35, 0.14);
  border-radius: 6px;
  background: #ead7b3;
}

.materials-teaser-handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #b88848;
  box-shadow: inset 1px 1px 2px rgba(88, 51, 19, 0.35);
  content: "";
  transform: translate(-50%, -50%);
}

.materials-teaser-handle--capsule::after {
  width: 20px;
  height: 9px;
  aspect-ratio: auto;
  border-radius: 999px;
}

.materials-teaser-handle--none::after {
  display: none;
}

.materials-teaser-handle.is-selected {
  outline: 2px solid var(--brick-red);
  outline-offset: 2px;
}

.materials-teaser-image:hover .materials-teaser-preview-base,
.materials-teaser-image:hover .materials-teaser-preview-layer,
.materials-teaser-image:focus-visible .materials-teaser-preview-base,
.materials-teaser-image:focus-visible .materials-teaser-preview-layer {
  transform: scale(1.025);
}

.projects-teaser p,
.materials-teaser p,
.page-hero p {
  max-width: none;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.page-hero {
  width: min(var(--content-width), 100%);
  max-width: var(--content-width);
  margin-inline: auto;
  padding-top: clamp(132px, 15vw, 184px);
  padding-bottom: clamp(12px, 1.2vw, 20px);
}

.page-hero .section-heading {
  width: 100%;
  max-width: var(--content-width);
  margin-bottom: 0;
  margin-inline: auto;
}

.page-hero .section-heading > p:not(.eyebrow):not(.page-subtitle) {
  max-width: none;
}

.material-page-hero .section-heading p strong {
  font-weight: 600;
}

.material-page-hero .section-heading p .configurator-emphasis {
  font-weight: 700;
}

.page-hero h1 {
  max-width: none;
}

.page-hero > .section-heading h1 + p {
  margin-top: clamp(14px, 1.44vw, 24px);
}

@media (min-width: 769px) {
  .material-page-hero {
    padding-top: clamp(72px, 6vw, 96px);
  }

  .material-page-hero > .section-heading {
    padding-block: clamp(8px, 1.2vw, 18px);
  }

  .material-page-hero > .section-heading h1 + p {
    margin-top: clamp(10px, 1vw, 16px);
  }

  .material-page-hero p {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .material-page-hero {
    padding-top: 88px;
  }
}

.realization-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.realization-gallery figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
}

.realization-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.realization-gallery figcaption {
  margin-top: 12px;
  font-size: 0.95rem;
}
.page-subtitle {
  max-width: 860px;
  margin: 0 0 22px;
  color: var(--graphite);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 300;
  line-height: 1.16;
}

.materials-teaser .button.primary {
  background: var(--cta-background);
}
.material-list {
  display: grid;
  width: min(var(--content-width), 100%);
  max-width: var(--content-width);
  gap: clamp(12px, 1.2vw, 20px);
  margin-inline: auto;
  padding-top: 0;
}

.material-customizer {
  width: min(var(--content-width), 100%);
  max-width: var(--content-width);
  margin-inline: auto;
  padding-top: 0;
}

.customizer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.48fr);
  gap: clamp(14px, 1.5vw, 24px);
  align-items: stretch;
  min-width: 0;
}

.customizer-preview {
  position: relative;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 1537 / 1023;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 37, 35, 0.12);
  border-radius: 10px;
  background: #f1ede0;
}

.customizer-preview img,
.customizer-overlay {
  width: 100%;
  height: 100%;
}

.customizer-preview img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.customizer-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.customizer-overlay {
  transition: opacity 180ms ease;
}

.customizer-controls {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
  padding: clamp(18px, 2vw, 28px);
  border-radius: 10px;
  background: #f1ede0;
}

.customizer-group {
  min-width: 0;
  margin: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(35, 37, 35, 0.12);
}

.customizer-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.customizer-group legend {
  margin-bottom: 12px;
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 500;
}

.customizer-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 14px 10px;
}

.customizer-swatch {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--graphite);
  font: inherit;
  cursor: pointer;
}

.customizer-swatch-code {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(35, 37, 35, 0.18);
  border-radius: 50%;
  background: var(--swatch, #e4ded2);
  color: var(--swatch-text, #232523);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.customizer-swatch--name-only .customizer-swatch-code {
  width: 68px;
  height: 68px;
  padding: 7px;
  font-size: 0.66rem;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: normal;
}

.customizer-swatch:hover .customizer-swatch-code,
.customizer-swatch:focus-visible .customizer-swatch-code {
  border-color: rgba(35, 37, 35, 0.48);
  transform: translateY(-1px);
}

.customizer-swatch:focus-visible {
  outline: 0;
}

.customizer-swatch:focus-visible .customizer-swatch-code {
  box-shadow: 0 0 0 3px rgba(35, 37, 35, 0.14);
}

.customizer-swatch.is-selected .customizer-swatch-code {
  border-color: var(--oxide-red);
  box-shadow: 0 0 0 3px rgba(167, 81, 61, 0.22);
}

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

.customizer-handle-option {
  display: flex;
  min-width: 0;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px 9px;
  border: 1px solid rgba(35, 37, 35, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--graphite);
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.15;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.customizer-handle-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 30px;
  border: 1px solid rgba(90, 68, 46, 0.2);
  border-radius: 4px;
  background: #e6d3b4;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.customizer-handle-icon::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(80, 55, 32, 0.32);
  background: #c39762;
  box-shadow: inset 0 2px 3px rgba(78, 50, 27, 0.28);
  content: "";
  transform: translateX(-50%);
}

.customizer-handle-option--circle .customizer-handle-icon::after {
  border-radius: 50%;
}

.customizer-handle-option--capsule .customizer-handle-icon::after {
  width: 28px;
  border-radius: 999px;
}

.customizer-handle-option--non .customizer-handle-icon::after {
  content: none;
}

.customizer-handle-label {
  display: block;
  white-space: nowrap;
}

.customizer-handle-option:hover,
.customizer-handle-option:focus-visible {
  border-color: rgba(35, 37, 35, 0.48);
  outline: 0;
  transform: translateY(-1px);
}

.customizer-handle-option.is-selected {
  border-color: var(--oxide-red);
  box-shadow: 0 0 0 3px rgba(167, 81, 61, 0.22);
}

.customizer-handle-note {
  margin: 10px 0 0;
  color: rgba(35, 37, 35, 0.72);
  font-size: 0.76rem;
  line-height: 1.4;
}

.customizer-swatch-label {
  max-width: 78px;
  font-size: 0.72rem;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.product-search-band {
  display: flex;
  justify-content: center;
  width: min(var(--content-width), calc(100% - 36px));
  max-width: var(--content-width);
  margin-inline: auto;
  padding-top: clamp(24px, 3vw, 44px);
  padding-bottom: clamp(24px, 3vw, 44px);
  border-bottom: 1px solid rgba(22, 22, 20, 0.14);
}

.product-search {
  display: flex;
  align-items: center;
  width: min(560px, 100%);
  min-height: 54px;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid rgba(35, 37, 35, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(35, 37, 35, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.product-search:focus-within {
  border-color: rgba(167, 81, 61, 0.44);
  box-shadow: 0 14px 36px rgba(35, 37, 35, 0.08), 0 0 0 3px rgba(167, 81, 61, 0.12);
}

.product-search svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: rgba(35, 37, 35, 0.48);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
}

.product-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--graphite);
  font: inherit;
  font-size: 1rem;
}

.product-search input::placeholder {
  color: rgba(35, 37, 35, 0.44);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  padding-top: clamp(14px, 1.8vw, 28px);
  padding-bottom: 0;
}

.all-products {
  position: relative;
  padding-top: 0;
}

.product-search-band--all-products {
  margin-top: 0;
  padding-top: clamp(42px, 3vw, 61px);
  padding-bottom: clamp(30px, 2.1vw, 43px);
  border-top: 0;
  border-bottom: 1px solid rgba(22, 22, 20, 0.14);
}

.catalog-toolbar-meta--all-products strong {
  color: var(--graphite);
  font-weight: 500;
}

.all-products-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  height: 0;
  gap: 1.5rem;
  margin-bottom: 0;
}

.all-products-heading > span {
  position: absolute;
  right: 0;
  bottom: 4px;
}

.all-products-heading h2,
.all-products-heading p {
  margin: 0;
}

.all-products-heading h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 400;
}

.all-products-heading p,
.all-products-heading > span {
  color: rgba(22, 22, 20, 0.62);
}

.all-products-heading p {
  margin-top: 0.35rem;
}

.all-products-heading strong {
  color: var(--graphite);
  font-weight: 500;
}

.all-products-grid {
  padding-inline: 0;
  padding-top: clamp(32px, 2.2vw, 45px);
}

.all-products-card .catalog-product-visual {
  text-decoration: none;
}

.all-products-empty {
  margin: 2rem 0 0;
  padding: 2.5rem;
  border-radius: 10px;
  background: var(--soft-cream);
  text-align: center;
}

.product-category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(35, 37, 35, 0.12);
  border-radius: 8px;
  background: #f7f3ec;
}

.product-category-card:focus-visible {
  outline: 3px solid rgba(167, 81, 61, 0.34);
  outline-offset: 3px;
}

.product-category-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--warm-plywood);
}

.product-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.product-visual--tile {
  isolation: isolate;
}

.product-visual--tile > img:not(.product-tile-base):not(.product-tile-after),
.product-visual--tile > .product-highlight,
.product-visual--tile > .product-worktop-sheen {
  display: none;
}

.product-visual--tile .product-tile-base {
  display: block;
}

.product-visual--tile .product-tile-after {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  height: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: tile-image-reveal 6.8s cubic-bezier(0.65, 0, 0.2, 1) forwards;
}

.product-visual--tile .product-tile-sweep {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  filter: blur(1px);
  opacity: 0;
  transform: skewX(-10deg);
  animation: tile-sweep 6.8s cubic-bezier(0.65, 0, 0.2, 1) forwards;
  pointer-events: none;
}

.product-visual--tile-middle .product-tile-after,
.product-visual--tile-middle .product-tile-sweep {
  animation-delay: 0.45s;
}

.product-visual--tile-right .product-tile-after,
.product-visual--tile-right .product-tile-sweep {
  animation-delay: 0.9s;
}

.product-visual--worktop .product-image-base {
  position: relative;
  z-index: 0;
}

.product-visual--worktop .product-image-worktop {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  opacity: 1;
  clip-path: polygon(3% 49.2%, 5.6% 36.2%, 5.6% 36.2%, 3% 49.2%);
  animation: reveal-worktop 7.3s cubic-bezier(0.65, 0, 0.2, 1) forwards;
  pointer-events: none;
}

.product-worktop-sheen {
  position: absolute;
  z-index: 2;
  left: 4.4%;
  top: 36.4%;
  width: 91.8%;
  height: 12.8%;
  background: linear-gradient(90deg, transparent, rgba(255, 238, 210, 0.46), transparent);
  filter: blur(0.5px);
  opacity: 0;
  transform: translateX(-102%);
  animation: worktop-sheen 7.3s cubic-bezier(0.65, 0, 0.2, 1) forwards;
  pointer-events: none;
}

.product-highlight {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 243, 206, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 244, 212, 0.24), rgba(231, 190, 63, 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 14px rgba(231, 190, 63, 0.28),
    inset 0 0 14px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.product-highlight--door-left {
  left: 6%;
  top: 46.3%;
  width: 28.9%;
  height: 29%;
}

.product-highlight--door-middle {
  left: 35.1%;
  top: 46.3%;
  width: 28.5%;
  height: 29%;
}

.product-highlight--drawer-top {
  left: 63.9%;
  top: 46.3%;
  width: 28.9%;
  height: 13.2%;
}

.product-highlight--drawer-bottom {
  left: 63.9%;
  top: 59.6%;
  width: 28.9%;
  height: 15.7%;
}

.product-highlight--left-panel {
  left: 4.4%;
  top: 46.3%;
  width: 1.8%;
  height: 34%;
}

.product-highlight--right-panel {
  right: 4.4%;
  top: 46.3%;
  width: 2.2%;
  height: 34%;
}

.product-highlight--plinth {
  left: 6%;
  top: 75.4%;
  width: 86.8%;
  height: 4.6%;
}

.product-category-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: clamp(12px, 1.1vw, 16px);
  text-align: center;
}

.product-category-copy h2 {
  margin: 0;
  font-size: clamp(1.18rem, 1.45vw, 1.62rem);
  font-weight: 400;
  line-height: 1.14;
}

.product-category-copy p {
  margin: 0;
  color: rgba(35, 37, 35, 0.72);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.products-page-hero h1,
.products-page-hero p,
.product-category-copy h2 {
  color: var(--graphite);
  overflow-wrap: anywhere;
}

.products-page-hero .section-heading.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.products-page-hero {
  padding-top: clamp(104px, 8vw, 126px) !important;
  padding-bottom: clamp(12px, 1.2vw, 20px) !important;
}

.products-page-hero > .section-heading {
  padding: clamp(14px, 1.5vw, 22px) clamp(18px, 2.4vw, 34px);
}

.products-page-hero > .section-heading h1 + p {
  margin-top: clamp(8px, 0.8vw, 14px);
  margin-bottom: 4px;
}

.product-detail-hero {
  padding-bottom: clamp(14px, 1.4vw, 22px);
}

.product-detail-hero > .section-heading {
  padding: clamp(18px, 2vw, 30px) clamp(22px, 3vw, 42px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(35, 37, 35, 0.62);
  font-size: 0.94rem;
}

.back-link::before {
  content: "<";
  margin-right: 8px;
}

.product-detail-list {
  display: grid;
  width: min(var(--content-width), 100%);
  max-width: var(--content-width);
  gap: clamp(18px, 2vw, 32px);
  margin-inline: auto;
  padding-top: 0;
}

.product-series {
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
}

.product-series-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 8px;
  background: var(--warm-plywood);
  color: var(--graphite);
}

.product-series-heading span {
  font-size: clamp(1.12rem, 1.5vw, 1.52rem);
  line-height: 1.15;
}

.product-series-heading small {
  color: rgba(35, 37, 35, 0.62);
  font-size: 0.92rem;
}

.product-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}

.product-item {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(35, 37, 35, 0.12);
  border-radius: 8px;
  background: #fffdf8;
}

.product-item h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(1.04rem, 1.16vw, 1.22rem);
  font-weight: 400;
  line-height: 1.2;
}

.product-item dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.product-item dl div {
  display: grid;
  grid-template-columns: minmax(74px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.product-item dt,
.product-item dd {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.35;
}

.product-item dt {
  color: rgba(35, 37, 35, 0.52);
}

.product-item dd {
  color: var(--graphite);
  overflow-wrap: anywhere;
}

@keyframes tile-image-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  6% {
    opacity: 1;
  }

  72%,
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes tile-sweep {
  0% {
    opacity: 0;
    left: -28%;
  }

  10% {
    opacity: 0.82;
  }

  72%,
  100% {
    opacity: 0;
    left: 100%;
  }
}

@keyframes reveal-worktop {
  0%,
  12% {
    clip-path: polygon(3% 49.2%, 5.6% 36.2%, 5.6% 36.2%, 3% 49.2%);
  }

  64%,
  100% {
    clip-path: polygon(3% 49.2%, 5.6% 36.2%, 93.8% 36.2%, 97.4% 47.8%, 97.4% 49.6%, 3% 49.6%);
  }
}

@keyframes worktop-sheen {
  0%,
  14% {
    opacity: 0;
    transform: translateX(-102%);
  }

  33% {
    opacity: 1;
  }

  64%,
  100% {
    opacity: 0;
    transform: translateX(102%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-media img.is-active,
  .hero-media img.is-zoom-out,
  .hero-media img.is-active.is-zoom-out {
    transform: none;
    transition: opacity 300ms ease;
  }

  .product-visual--tile .product-tile-after {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    animation: none;
  }

  .product-visual--tile .product-tile-sweep {
    display: none;
  }

  .product-visual--worktop .product-image-worktop {
    clip-path: polygon(3% 49.2%, 5.6% 36.2%, 93.8% 36.2%, 97.4% 47.8%, 97.4% 49.6%, 3% 49.6%);
    animation: none;
  }

  .product-worktop-sheen {
    display: none;
  }
}

.material-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.29fr) minmax(0, 0.71fr);
  gap: clamp(12px, 1.2vw, 20px);
  align-items: stretch;
  min-width: 0;
}

.material-list--compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.4vw, 22px);
  padding-top: clamp(20px, 2.4vw, 36px);
}

.material-list--compact .material-row {
  grid-template-columns: minmax(0, 1fr) clamp(180px, 18vw, 260px);
  gap: clamp(12px, 1.4vw, 22px);
}

.material-list--compact .material-copy {
  min-height: clamp(180px, 17vw, 240px);
  justify-content: flex-start;
  padding: clamp(28px, 3vw, 48px);
}

.material-list--compact .material-copy h2 {
  max-width: none;
}

.materials-used-heading {
  width: 100%;
  margin-bottom: clamp(6px, 0.8vw, 12px);
  padding: clamp(18px, 2vw, 28px) clamp(24px, 3vw, 48px);
  border-radius: 10px;
  background: #f1ede0;
}

.materials-used-heading h2 {
  margin: 0;
  font-weight: 400;
}

.material-list--compact .material-texture {
  position: relative;
  display: block;
  align-self: start;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 37, 35, 0.12);
  border-radius: 10px;
  background: var(--warm-plywood);
}

.material-list--compact .material-texture img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.material-texture-toggle {
  color: var(--graphite);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.material-texture-toggle:hover {
  border-color: rgba(35, 37, 35, 0.42);
  transform: translateY(-2px);
}

.material-texture-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--soft-white), 0 0 0 5px var(--oxide-red);
}

.material-texture-action {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(35, 37, 35, 0.12);
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.82);
  color: rgba(35, 37, 35, 0.72);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(5px);
  transition: background-color 180ms ease, color 180ms ease;
}

.material-texture-toggle:hover .material-texture-action,
.material-texture-toggle:focus-visible .material-texture-action {
  background: rgba(247, 243, 236, 0.96);
  color: var(--graphite);
}

.material-texture-color {
  position: absolute;
  inset: 0;
  background: var(--material-swatch, #777c6d);
  transition: background-color 220ms ease;
}

.material-texture-label {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(247, 243, 236, 0.88);
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  backdrop-filter: blur(5px);
}

.material-list--compact .material-row--birch:hover .material-copy,
.material-list--compact .material-row--birch.is-active .material-copy {
  background-color: #f1ede0;
  background-image: none;
}

.material-list--compact .material-row--pine:hover .material-copy,
.material-list--compact .material-row--pine.is-active .material-copy {
  background-color: #f1ede0;
  background-image: none;
}

.material-list--compact .material-row--hpl:hover .material-copy,
.material-list--compact .material-row--hpl.is-active .material-copy {
  background: #f1ede0;
  color: var(--graphite);
}

.material-list--compact .material-row--hpl:hover .material-copy p,
.material-list--compact .material-row--hpl.is-active .material-copy p {
  color: var(--graphite);
}

.material-row figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--warm-plywood);
  cursor: pointer;
  outline: none;
}

.material-row img {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 42vw, 640px);
  object-fit: cover;
}

.material-row .material-image-variant {
  position: absolute;
  inset: 0;
  object-position: center;
  opacity: 0;
  transition: opacity 420ms ease;
}

.material-row figure:focus-visible {
  box-shadow: 0 0 0 3px var(--soft-white), 0 0 0 5px var(--oxide-red);
}

.material-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: clamp(500px, 42vw, 640px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 96px);
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-color 420ms ease, color 420ms ease;
}

.material-copy::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(247, 243, 236, 0.2);
  content: "";
  opacity: 0;
  transition: opacity 420ms ease;
}

.material-copy h2 {
  max-width: 18ch;
  margin-bottom: 10px;
  font-size: clamp(1.06rem, 1.68vw, 1.85rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.material-copy p {
  max-width: 58rem;
  margin: 0;
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.55;
}

.material-row--birch .material-copy {
  background: #e8c99c;
}

.material-row--pine .material-copy {
  background: #c9c8c0;
}

.material-row--hpl .material-copy {
  background: #a84e3a;
  color: var(--soft-white);
}

.material-row--hpl .material-copy p {
  color: rgba(247, 243, 236, 0.88);
  transition: color 420ms ease;
}

.material-list--compact .material-copy,
.material-list--compact .material-row--hpl .material-copy {
  background: #f1ede0;
  color: var(--graphite);
}

.material-list--compact .material-copy p,
.material-list--compact .material-row--hpl .material-copy p {
  color: var(--graphite);
}

.material-row--birch:hover .material-copy,
.material-row--birch.is-active .material-copy {
  background-image: url("assets/optimized/birch-plywood-texture-1400.webp");
}

.material-row--pine:hover .material-copy,
.material-row--pine.is-active .material-copy {
  background-image: url("assets/optimized/pine-plywood-texture-1400.webp");
}

.material-row--birch:hover .material-copy::before,
.material-row--birch.is-active .material-copy::before,
.material-row--pine:hover .material-copy::before,
.material-row--pine.is-active .material-copy::before {
  opacity: 1;
}

.material-row--hpl:hover .material-image-variant,
.material-row--hpl.is-active .material-image-variant {
  opacity: 1;
}

.material-row--hpl:hover .material-copy,
.material-row--hpl.is-active .material-copy {
  background: #9ba88c;
  color: var(--graphite);
}

.material-row--hpl:hover .material-copy p,
.material-row--hpl.is-active .material-copy p {
  color: var(--graphite);
}

@media (hover: none), (pointer: coarse) {
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after {
    transform: scaleX(0);
  }

  .button:hover,
  .button:focus-visible,
  .social-links a:hover,
  .social-links a:focus-visible {
    transform: none;
  }

  .steps article:hover .step-visual,
  .steps article:focus-within .step-visual,
  .projects-showcase-tile:hover img,
  .projects-showcase-tile:focus-visible img,
  .materials-teaser-image:hover .materials-teaser-preview-base,
  .materials-teaser-image:hover .materials-teaser-preview-layer,
  .materials-teaser-image:focus-visible .materials-teaser-preview-base,
  .materials-teaser-image:focus-visible .materials-teaser-preview-layer {
    transform: none;
  }

  .step-copy > *,
  .projects-showcase-copy > *,
  .materials-teaser-copy > * {
    transform: none;
  }

  .step-copy:hover > *,
  .step-copy:focus-within > *,
  .projects-showcase-copy:hover > *,
  .projects-showcase-copy:focus-within > *,
  .materials-teaser-copy:hover > *,
  .materials-teaser-copy:focus-within > * {
    transform: none;
  }

  .material-row--birch .material-copy {
    background-image: url("assets/optimized/birch-plywood-texture-1400.webp");
  }

  .material-row--pine .material-copy {
    background-image: url("assets/optimized/pine-plywood-texture-1400.webp");
  }

  .material-row--birch .material-copy::before,
  .material-row--pine .material-copy::before {
    opacity: 1;
  }

  .material-row--hpl:hover:not(.is-active) .material-image-variant {
    opacity: 0;
  }

  .material-row--hpl:hover:not(.is-active) .material-copy {
    background: #a84e3a;
    color: var(--soft-white);
  }

  .material-row--hpl:hover:not(.is-active) .material-copy p {
    color: rgba(247, 243, 236, 0.88);
  }
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: var(--warm-plywood);
  border-radius: 6px;
  padding: clamp(36px, 5vw, 54px);
}

.contact-copy h2 {
  max-width: none;
  font-size: clamp(1.06rem, 1.68vw, 1.85rem);
}

.contact-email {
  display: inline-flex;
  margin-top: 12px;
  color: var(--graphite);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(167, 81, 61, 0.44);
  text-underline-offset: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(35, 37, 35, 0.12);
  border-radius: 10px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(35, 37, 35, 0.72);
  font-size: 0.88rem;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 37, 35, 0.18);
  border-radius: 4px;
  padding: 13px 14px;
  background: var(--soft-white);
  color: var(--graphite);
  font: inherit;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(167, 81, 61, 0.35);
  outline-offset: 2px;
}


.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(35, 37, 35, 0.14);
  border-radius: 50%;
  color: var(--graphite);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--warm-plywood);
  border-color: rgba(35, 37, 35, 0.28);
  transform: translateY(-2px);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(35, 37, 35, 0.64);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 120px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-inline: auto;
    background: var(--graphite);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

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

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

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

  .site-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--soft-white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 22px 60px rgba(35, 37, 35, 0.18);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .split,
  .detail-band,
  .contact,
  .customizer-layout,
  .product-categories {
    grid-template-columns: 1fr;
  }

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

  .materials-teaser-layout {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "images";
    row-gap: 0;
  }

  .materials-teaser-image {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 180px;
    min-height: 390px;
    margin-top: 28px;
  }

  .materials-teaser-panel {
    width: 100%;
  }

  .materials-teaser-controls {
    padding: 24px 20px;
  }

  .materials-teaser-swatches {
    grid-template-columns: repeat(2, 38px);
  }

  .materials-teaser-swatches i {
    width: 38px;
  }

  .materials-teaser-button {
    align-self: stretch;
    margin-top: 18px;
  }

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

  .steps article {
    display: flex;
    flex-direction: column;
  }

  .steps article:nth-child(1) .step-visual-frame,
  .steps article:nth-child(1) .step-copy,
  .steps article:nth-child(2) .step-visual-frame,
  .steps article:nth-child(2) .step-copy,
  .steps article:nth-child(3) .step-visual-frame,
  .steps article:nth-child(3) .step-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .step-copy {
    order: 1;
    margin-bottom: 14px;
  }

  .step-visual-frame {
    order: 2;
  }

  .project-grid,
  .realization-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    --contact-mobile-inner-pad: 20px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-inline: 10px;
  }

  .contact-copy {
    padding-inline: var(--contact-mobile-inner-pad);
  }

  .contact-form {
    padding: var(--contact-mobile-inner-pad);
  }

  .customizer-controls {
    grid-template-columns: 1fr;
  }

  .projects-showcase {
    display: block;
  }

  .projects-showcase-layout {
    grid-template-columns: 1fr;
  }

  .projects-showcase-column,
  .projects-showcase-column--copy,
  .projects-showcase-column--media {
    grid-template-rows: auto;
  }

  .projects-showcase-copy {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .projects-showcase-tile figure {
    min-height: 320px;
  }

}

@media (max-width: 768px) {
  .material-list {
    gap: clamp(12px, 1.2vw, 20px);
  }

  .material-list--compact .material-row {
    grid-template-columns: minmax(0, 1fr) clamp(96px, 25vw, 150px);
    gap: 10px;
    align-items: start;
  }

  .material-list--compact .material-texture {
    order: 2;
  }

  .material-list--compact .material-copy {
    min-height: 0;
    padding: clamp(22px, 6vw, 30px);
  }

  .material-list--compact .material-copy h2 {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  }

  .material-list--compact .material-copy p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .material-row {
    grid-template-columns: 1fr;
    gap: clamp(12px, 1.2vw, 20px);
  }

  .material-row figure {
    order: 2;
    border-radius: 10px;
  }

  .material-row--birch figure,
  .material-row--pine figure {
    margin-bottom: clamp(19px, 1.92vw, 32px);
  }

  .material-row img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .material-copy {
    order: 1;
    min-height: 0;
    padding: 38px 28px 44px;
    border-radius: 10px;
  }

  .material-copy h2 {
    font-weight: 500;
  }

  .projects-showcase-column--media {
    grid-template-columns: 1fr 1fr;
  }

  .projects-showcase-detail,
  .projects-showcase-column--media {
    display: none;
  }

  .projects-showcase-mobile-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    min-height: 320px;
    overflow: hidden;
    border-radius: 10px;
    color: inherit;
  }

  .projects-showcase-mobile-mosaic-item {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 10px;
  }

  .projects-showcase-mobile-mosaic-item--main {
    grid-row: 1 / -1;
  }

  .projects-showcase-mobile-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .projects-showcase-main {
    grid-column: 1 / -1;
  }

  .projects-showcase-tile figure {
    border-radius: 10px;
  }
}

@media (max-width: 620px) {
  body {
    font-weight: 300;
  }

  .brand {
    width: 112px;
    height: 24px;
  }

  .hero {
    min-height: 108svh;
  }

  h1 {
    font-size: 1.62rem;
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-content {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 96px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .section-pad,
  .principle.section-pad {
    padding-right: 10px;
    padding-left: 10px;
  }

  .principle > .section-heading,
  .materials-teaser > .section-heading,
  .projects-showcase > .section-heading,
  .page-hero > .section-heading {
    padding: 10px 20px;
  }

  .principle > .section-heading h2,
  .materials-teaser > .section-heading h2,
  .projects-showcase > .section-heading h2,
  .page-hero > .section-heading h1,
  .contact-copy h2 {
    font-size: 1.62rem;
    font-weight: 400;
    line-height: 1.12;
  }

  .material-page-hero > .section-heading h1,
  .materials-used-heading h2 {
    font-size: 1.4rem;
  }

  .materials-teaser-copy {
    min-height: 220px;
    padding: 20px;
    justify-content: center;
  }

  .materials-teaser-copy p {
    line-height: 1.5;
  }

  .materials-teaser-button {
    margin-top: 14px;
  }

  .materials-teaser-image {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(230px, 62vw) auto auto;
    min-height: 0;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .materials-teaser-layout {
    overflow: hidden;
    border: 1px solid rgba(35, 37, 35, 0.1);
    border-radius: 10px;
    background: #f1ede0;
  }

  .materials-teaser-copy {
    min-height: 0;
    padding-bottom: 24px;
    border-radius: 0;
    background: transparent;
  }

  .materials-teaser-preview {
    min-height: 0;
  }

  .materials-teaser-button {
    display: none;
  }

  .materials-teaser-mobile-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 20px;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 4px;
    background: var(--cta-background);
    color: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
  }

  .materials-teaser-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .materials-teaser-controls-title {
    grid-column: 1 / -1;
  }

  .materials-teaser-swatches {
    display: flex;
    align-items: center;
  }

  .materials-teaser-swatches i {
    width: 30px;
  }

  .materials-teaser-handle-types {
    margin-top: 0;
  }

  .materials-teaser-handle-label {
    display: none;
  }

  .materials-teaser-handle-types {
    display: none;
  }

  .principle-quote p {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-inline: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .principle-quote-mobile-hidden {
    display: none;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(35, 37, 35, 0.48), rgba(35, 37, 35, 0.08) 76%),
      linear-gradient(90deg, rgba(35, 37, 35, 0.22), transparent);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media img:nth-child(1) {
    object-position: 42% center;
  }

  .hero-media img:nth-child(3) {
    object-position: 88% center;
    filter: brightness(1.16) saturate(1.08) contrast(1.03);
  }

  .button {
    width: 100%;
  }

  .project-grid,
  .realization-gallery {
    grid-template-columns: 1fr;
  }

  .projects-showcase-action {
    align-items: stretch;
    flex-direction: column;
  }

  .projects-showcase h2,
  .projects-showcase p {
    overflow-wrap: anywhere;
  }

  .projects-showcase-action .button {
    width: 100%;
  }

  .page-hero,
  .section-heading,
  .material-row,
  .material-customizer,
  .product-categories,
  .product-detail-list,
  .material-copy {
    width: 100%;
    max-width: 100%;
  }

  .page-hero,
  .material-customizer,
  .material-list,
  .product-detail-list,
  .product-categories {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-inline: 10px;
    padding-right: 0;
    padding-left: 0;
  }

  .site-header {
    width: 100%;
  }

  .customizer-preview {
    border-radius: 10px;
  }

  .customizer-controls {
    padding: 20px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }

  .customizer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 20px;
    border-radius: 10px;
    background: #f1ede0;
  }

  .customizer-controls {
    display: contents;
  }

  .customizer-preview {
    order: 2;
    margin-bottom: 22px;
  }

  .customizer-group {
    padding-bottom: 20px;
  }

  .customizer-group:nth-child(1) {
    order: 3;
  }

  .customizer-group:nth-child(2) {
    order: 4;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .customizer-group:nth-child(3) {
    order: 1;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(35, 37, 35, 0.12);
  }

  .material-customizer .section-heading h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .customizer-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-hero p,
  .material-copy h2,
  .material-copy p {
    overflow-wrap: break-word;
  }

  .products-page-hero > .section-heading,
  .products-page-hero > .section-heading h1,
  .products-page-hero > .section-heading p {
    max-width: calc(100vw - 60px);
  }

  .product-detail-hero > .section-heading,
  .product-detail-hero > .section-heading h1,
  .product-detail-hero > .section-heading p {
    max-width: calc(100vw - 124px);
  }

  .product-series-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
  }

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

  .detail-band img {
    min-height: 340px;
  }

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

@media (min-width: 921px) {
  h1 {
    font-size: clamp(1.47rem, 2.345vw, 2.555rem);
  }

  h2,
  .page-hero h1 {
    font-size: clamp(1.33rem, 2.1vw, 2.31rem);
  }

  .principle > .section-heading h2,
  .materials-teaser > .section-heading h2,
  .projects-showcase > .section-heading h2,
  .page-hero > .section-heading h1,
  .contact-copy h2 {
    font-weight: 400;
  }

  h3 {
    font-size: 0.728rem;
  }
}

/* Final material-card sizing and responsive layout. */
.materials-used-heading h2 {
  font-size: clamp(1.06rem, 1.68vw, 1.85rem);
}

.material-list--compact .material-copy,
.material-list--compact .material-row--birch .material-copy,
.material-list--compact .material-row--pine .material-copy,
.material-list--compact .material-row--hpl .material-copy {
  background-color: #f1ede0;
  background-image: none;
  color: var(--graphite);
}

.material-list--compact .material-copy p {
  color: var(--graphite);
}

.material-list--compact .material-copy h2 {
  font-size: clamp(1rem, 1.25vw, 1.28rem);
}

.material-texture-label {
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 5px rgba(247, 243, 236, 0.95);
  backdrop-filter: none;
}

.material-texture-toggle--color .material-texture-label {
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.58);
}

@media (min-width: 769px) {
  .materials-used-heading {
    margin-bottom: 0;
  }

  .material-texture-action {
    top: 12px;
    right: 12px;
    display: block;
    padding: 7px 10px;
    border-color: rgba(35, 37, 35, 0.2);
    background: rgba(247, 243, 236, 0.92);
    color: rgba(35, 37, 35, 0.82);
    font-size: 0.74rem;
    box-shadow: 0 2px 8px rgba(35, 37, 35, 0.08);
  }

  .material-list--compact .material-copy {
    min-height: 0;
    padding: clamp(24px, 2vw, 32px);
  }

  .material-list--compact .material-copy p {
    max-width: none;
  }

  .material-list--compact .material-texture {
    align-self: stretch;
    height: 100%;
    min-height: 160px;
    aspect-ratio: auto;
  }
}

@media (max-width: 620px) {
  .material-page-hero > .section-heading {
    padding-top: 18px;
  }

  .material-page-hero > .section-heading h1,
  .materials-used-heading h2 {
    font-size: 1.4rem;
  }

  .material-page-hero > .section-heading h1 + p {
    margin-top: 18px;
  }

  .material-list--compact .material-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 0 10px 19px;
    overflow: hidden;
    border-radius: 10px;
    background: #f1ede0;
  }

  .material-list--compact .material-copy,
  .material-list--compact .material-row--birch .material-copy,
  .material-list--compact .material-row--pine .material-copy,
  .material-list--compact .material-row--hpl .material-copy {
    order: 1;
    padding: clamp(22px, 6vw, 30px) 12px 12px;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
  }

  .material-list--compact .material-texture {
    order: 2;
    justify-self: center;
    width: calc(100% - 18px);
    aspect-ratio: 16 / 7;
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(35, 37, 35, 0.08), 0 3px 10px rgba(35, 37, 35, 0.08);
  }

  .material-list--compact .material-copy h2 {
    font-size: clamp(1rem, 4.1vw, 1.1rem);
  }

  .material-list--compact .material-row--hpl:hover .material-copy,
  .material-list--compact .material-row--hpl.is-active .material-copy,
  .material-list--compact .material-row--hpl:hover:not(.is-active) .material-copy {
    background: transparent;
    color: var(--graphite);
  }

  .material-list--compact .material-row--hpl:hover .material-copy p,
  .material-list--compact .material-row--hpl.is-active .material-copy p,
  .material-list--compact .material-row--hpl:hover:not(.is-active) .material-copy p {
    color: var(--graphite);
  }
}

@media (max-width: 600px) {
  .products-page-hero {
    padding-top: 88px !important;
  }
}
