@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --red: #ed4336;
  --ink: #171717;
  --muted: #696969;
  --paper: #f4f3ef;
  --media-radius: 14px;
  --content-width: 1160px;
  --content-gutter: max(5%, calc((100% - var(--content-width)) / 2));
  font-family: "Manrope", system-ui, sans-serif;
  font-optical-sizing: auto;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Manrope", system-ui, sans-serif;
}

body {
  background: #fff;
  font-size: 16px;
  letter-spacing: -0.005em;
}

.soft { background: #fff; }

main > section:not(.hero) {
  border-top: 1px solid #e7e7e5;
}

section {
  padding-top: clamp(4.5rem, 8vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 8.5rem);
  padding-inline: var(--content-gutter);
}

.motion-ready .tilda-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease var(--reveal-delay, 0ms), transform 600ms ease var(--reveal-delay, 0ms);
}

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

header {
  min-height: 72px;
  background: rgb(28 28 28 / 86%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

nav {
  letter-spacing: 0.01em;
}

h1,
h2 {
  font-weight: 750;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(2.2rem, 3.75vw, 3.7rem);
  line-height: 1.08;
}
h3 { letter-spacing: 0; }

.primary,
.cart-toggle,
.menu-toggle {
  min-height: 44px;
  border-radius: 8px;
  transition: transform 140ms ease-out, filter 140ms ease-out;
}

.primary:hover { filter: brightness(.94); }
.primary:active,
.cart-toggle:active,
.menu-toggle:active { transform: scale(.97); }

.lead {
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.individual {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  background: #fff;
}

.individual > img {
  width: 100%;
  min-height: 44rem;
  object-fit: cover;
}

.steps {
  margin: 3rem 0;
  border-top: 1px solid #c9c9c9;
}

.steps > div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #c9c9c9;
}

.steps span { color: var(--muted); }
.steps h3,
.steps p { margin: 0; }
.steps p { grid-column: 2; color: var(--muted); }

.dark {
  background: #1b1b1b;
  color: #fff;
}

.craft article {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 28%);
}

.craft article p { color: #bdbdbd; }

.stories {
  overflow: hidden;
  background: #171717;
  color: #fff;
  border-top-color: #171717 !important;
}
.stories h2 { margin-bottom: clamp(3rem, 7vw, 6rem); }

.story-list {
  display: flex;
  gap: 2rem;
  width: calc(100vw - max(5%, calc((100vw - 1160px) / 2)));
  max-width: none;
  padding-right: max(5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.story-list::-webkit-scrollbar { display: none; }

.story-list::before,
.story-list::after {
  content: "";
  flex: 0 0 max(0px, calc((100% - min(52rem, 72vw)) / 2 - 1rem));
}

.story-list blockquote {
  flex: 0 0 min(52rem, 72vw);
  width: min(52rem, 72vw);
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.25rem, 5vw, 4rem);
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.6;
  scroll-snap-align: center;
  cursor: pointer;
  transition: box-shadow 180ms ease-out;
}

.story-list blockquote[aria-current="true"] { box-shadow: 0 12px 36px rgb(0 0 0 / 8%); }
.story-list blockquote:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }

.story-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: calc(100vw - max(5%, calc((100vw - 1160px) / 2)));
  margin-top: 2rem;
  padding-right: max(5vw, 2rem);
}

.story-controls button {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid #1c1c1c;
  border-radius: 50%;
  background: #1c1c1c;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 140ms ease-out, opacity 140ms ease-out;
}

.story-controls button:last-child { justify-self: end; }
.story-controls button:active { transform: scale(.94); }
.story-controls button:disabled { opacity: .25; }
.story-status { color: rgb(255 255 255 / 62%); font-size: .85rem; font-variant-numeric: tabular-nums; }

.stories .story-controls button {
  border-color: #fff;
  background: #fff;
  color: #171717;
}

.massive-story {
  overflow: clip;
  padding-inline: var(--content-gutter);
  padding-bottom: clamp(4.5rem, 8vw, 8.5rem);
  background: #fff;
}

.massive-story > h2 {
  max-width: 16ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.massive-scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.massive-table {
  width: 100%;
  min-height: clamp(18rem, 34vw, 29rem);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  background: #f6f6f4;
}

.massive-table img {
  display: block;
  width: min(100%, 70rem);
  max-height: none;
  object-fit: contain;
  border-radius: var(--media-radius);
  filter: drop-shadow(0 20px 26px rgb(0 0 0 / 10%));
}

.massive-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 1.5vw, 1.25rem);
}

.massive-points article {
  width: 100%;
  min-height: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border: 1px solid #e5e5e2;
  border-radius: 1.25rem;
  background: #fafaf9;
  box-shadow: 0 1px 1px rgb(0 0 0 / 3%);
}

.massive-points article:first-child { align-items: flex-start; }
.massive-points article:last-child { padding-bottom: clamp(1.5rem, 2.5vw, 2.25rem); border-bottom: 1px solid #e5e5e2; }

.massive-points img {
  flex: 0 0 clamp(4.25rem, 6vw, 6.5rem);
  width: clamp(4.25rem, 6vw, 6.5rem);
  height: clamp(4.25rem, 6vw, 6.5rem);
  object-fit: contain;
}

.massive-points p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .massive-story > h2 { max-width: none; }
  .massive-scroll { grid-template-columns: 1fr; }
  .massive-table { width: 100%; min-height: 18rem; margin: 0; }
  .massive-points { grid-template-columns: 1fr; }
  .massive-points article,
  .massive-points article:first-child,
  .massive-points article:last-child { width: 100%; min-height: 0; padding: 1.5rem; align-items: flex-start; }
}

.story-list blockquote p { margin: 4rem 0 0; }
.story-author { display: flex; align-items: center; gap: 1.5rem; }
.story-author img { width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover; }
.story-author strong { display: block; font-size: 1.5rem; }
.story-author span { display: block; margin-top: .55rem; color: #999; font-size: 1rem; }

dialog {
  border-radius: 18px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 30%);
}

dialog::backdrop {
  background: rgb(0 0 0 / 52%);
  backdrop-filter: blur(5px);
}

@media (max-width: 900px) {
  .individual,
  .stories { grid-template-columns: 1fr; }
  .individual > img { min-height: 32rem; }
  .order-info { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  h1,
  h2 { letter-spacing: 0; }
  .individual > img { min-height: 25rem; }
  .stories { gap: 1rem; }
}

@media (prefers-reduced-transparency: reduce) {
  header { background: #1c1c1c; backdrop-filter: none; }
  dialog::backdrop { backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  header { background: #111; border-bottom-color: #fff; }
  .muted { color: #4b4b4b; }
}

@media (prefers-reduced-motion: reduce) {
  .primary,
  .cart-toggle,
  .menu-toggle,
  .tilda-reveal { transition: none; transform: none; opacity: 1; }
}

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

.table-configurator {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(23rem, .78fr) minmax(17rem, .52fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
  padding-inline: var(--content-gutter);
  background: #fff;
}

.configurator-intro h2 {
  max-width: none;
}

.configurator-visual {
  position: relative;
  margin-top: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #f8f8f8;
}

.configurator-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1), opacity 180ms ease;
}

.configurator-visual.is-loading img { opacity: .55; }

.configurator-zoom {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  font-size: 0;
}

.configurator-zoom::before {
  content: "";
  position: absolute;
  inset: .78rem;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
}

.configurator-zoom::after {
  content: "";
  position: absolute;
  width: .65rem;
  height: 2px;
  right: .55rem;
  bottom: .7rem;
  background: #1a1a1a;
  transform: rotate(45deg);
  transform-origin: center;
}

.configurator-lightbox {
  width: min(calc(100vw - 2rem), 1464px);
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: clamp(.75rem, 2vw, 1.25rem);
  overflow: hidden;
  border: 0;
  background: #f7f7f7;
}

.configurator-lightbox[open] { display: grid; place-items: center; }

.configurator-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 4.5rem);
  object-fit: contain;
}

.configurator-lightbox-close {
  position: absolute;
  z-index: 1;
  top: .8rem;
  right: .8rem;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
}

.configurator-intro > .muted {
  max-width: 39rem;
  margin-top: 1.25rem;
}

.configurator-options { padding-top: .25rem; }

.config-group {
  min-width: 0;
  margin: 0 0 2.25rem;
  padding: 0;
  border: 0;
}

.config-group legend,
.config-size,
.config-contacts h3,
.config-total > span {
  display: block;
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
}

.config-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(5.8rem, 1fr));
  gap: 1.45rem .75rem;
}

.config-choice {
  min-width: 0;
  margin: 0;
  cursor: pointer;
  text-align: center;
  color: #666;
  font-size: .9rem;
  line-height: 1.25;
}

.config-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.config-icon {
  --wood-tint: rgb(255 255 255 / 0%);
  --icon-image: linear-gradient(var(--wood-tint), var(--wood-tint)), url('/assets/constructor-table.jpg');
  --icon-position: 48% 17%;
  --icon-size: 330%;
  position: relative;
  display: block;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto .65rem;
  border: 1px solid #dedede;
  border-radius: .45rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 52%);
}

.config-icon::before {
  content: "";
  position: absolute;
  inset: .4rem;
  border-radius: 50%;
  background-color: #eee;
  background-image: var(--icon-image);
  background-position: var(--icon-position);
  background-size: var(--icon-size);
}

.config-choice input:checked + .config-icon::after {
  content: "✓";
  position: absolute;
  z-index: 2;
  top: -.6rem;
  left: -.55rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f20d16;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 0 0 3px #fff;
}

.config-choice input:focus-visible + .config-icon {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.config-icon--black { --wood-tint: rgb(12 15 18 / 78%); }
.config-icon--brown { --wood-tint: rgb(69 31 21 / 54%); }
.config-icon--burgundy { --wood-tint: rgb(83 15 32 / 64%); }
.config-icon--grey { --wood-tint: rgb(92 100 108 / 62%); filter: saturate(.55); }
.config-icon--steel-base { --icon-image: repeating-linear-gradient(118deg, #777 0 3px, #929292 3px 6px, #686868 6px 8px); }
.config-icon--no-base { --icon-image: linear-gradient(45deg, transparent 47%, #666 48% 52%, transparent 53%), linear-gradient(-45deg, transparent 47%, #666 48% 52%, transparent 53%); }
.config-icon--no-base::before { background-color: #f3e8db; }
.config-icon--natural-cut { --icon-position: 72% 12%; --icon-size: 250%; }
.config-icon--straight-cut { --icon-position: 82% 21%; --icon-size: 270%; }
.config-icon--no-cut { --icon-position: 44% 14%; --icon-size: 280%; }
.config-icon--natural-edge { --icon-position: 21% 22%; --icon-size: 290%; }
.config-icon--straight-edge { --icon-position: 85% 22%; --icon-size: 290%; }

.configurator-order { padding-top: .25rem; }
.configurator-order select,
.configurator-order input { min-height: 4.6rem; border-color: #222; border-radius: 0; }
.config-size { font-weight: 500; }
.config-size select { margin-top: 1.25rem; font-size: 1rem; font-weight: 400; }
.config-contacts { margin-top: 2rem; }
.config-contacts h3 { margin-bottom: 1.25rem; }
.config-contacts input { margin: 0 0 1.25rem; }
.config-total { margin-top: clamp(3rem, 8vw, 8.5rem); }
.config-total .price { margin: .15rem 0 1.25rem; font-size: clamp(2.8rem, 3.7vw, 3.75rem); font-weight: 400; white-space: nowrap; }
.config-total .primary { width: 100%; }
.config-total .muted { margin-top: 1rem; font-size: .78rem; line-height: 1.65; }

@media (max-width: 1100px) {
  .table-configurator { grid-template-columns: minmax(0, 1.1fr) minmax(21rem, .9fr); }
  .configurator-order { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
  .config-contacts,
  .config-total { margin-top: 0; }
}

@media (max-width: 760px) {
  .table-configurator { grid-template-columns: 1fr; }
  .configurator-visual { margin-top: 2.75rem; }
  .configurator-order { grid-column: auto; grid-template-columns: 1fr; }
  .configurator-options,
  .configurator-order { padding-top: 0; }
  .configurator-intro h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .config-choices { grid-template-columns: repeat(3, 1fr); }
}

.audiences article {
  overflow: hidden;
}

.audiences article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 1.4rem;
  object-fit: cover;
  border-radius: var(--media-radius);
}

#constructor .split > div:first-child > img,
#catalog .split > a > img {
  border-radius: var(--media-radius);
}

.custom-size {
  position: relative;
  width: min(100%, 1400px);
  /* The source image is 3.5:1.  A slightly taller card keeps a calm
     breathing space under the CTA instead of letting it meet the edge. */
  aspect-ratio: 3.2 / 1;
  min-height: 0;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--media-radius);
}

.custom-size > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-size__content {
  position: relative;
  z-index: 1;
  width: 46%;
  margin: 0;
  padding: clamp(2rem, 4.2vw, 3.75rem) clamp(2rem, 3vw, 3.5rem) clamp(2rem, 4.2vw, 3.75rem) clamp(2rem, 4.2vw, 3.75rem);
}

.custom-size__content h2 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 3.1vw, 3.35rem);
}

.custom-size__content > p:not(.eyebrow) {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.5;
}

.custom-size__content .primary { margin-top: .9rem; }

.pricing-story {
  position: relative;
  isolation: isolate;
  min-height: min(58rem, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #161616 url("/assets/price-background.jpg") center 44% / cover no-repeat;
  color: #fff;
}

.pricing-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(0 0 0 / 78%);
}

.pricing-story__content { width: 100%; }

.pricing-story h2 {
  max-width: 18ch;
}

.pricing-story .lead {
  max-width: 72rem;
  color: rgb(255 255 255 / 82%);
}

.price-factors {
  margin-top: clamp(3rem, 7vw, 6rem);
  gap: clamp(2rem, 5vw, 5rem);
}

.price-factors article { align-self: start; }
.price-factors img { width: 5rem; height: 5rem; object-fit: contain; margin-bottom: 1.35rem; }
.price-factors h3 { color: #fff; }
.price-factors p { margin-bottom: 0; color: rgb(255 255 255 / 72%); }
.order-section {
  background: #171717;
  color: #fff;
  border-top-color: #171717 !important;
}
.order-section .lead { max-width: 68rem; color: rgb(255 255 255 / 76%); }
.order-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.order-info article { display: grid; grid-template-columns: 7rem 1fr; gap: 2rem; align-items: start; }
.order-info article > img { width: 7rem; height: 7rem; object-fit: contain; filter: brightness(0) invert(1); }
.order-info h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.order-info article p { max-width: 34rem; color: rgb(255 255 255 / 76%); }
.order-info article strong { color: #fff; }

.special-order {
  display: block;
  min-height: 0;
  padding: clamp(4.5rem, 8vw, 8.5rem) var(--content-gutter);
  background: #fff;
}

.special-order__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0;
}

.special-order__form > p:not(.eyebrow) { max-width: 39rem; }
.special-order__form h2 { max-width: none; }
.special-order__form form { width: min(100%, 33rem); margin-top: 1.25rem; }
.special-order__form label { margin-top: 1.1rem; text-align: left; }
.special-order__form input,
.special-order__form textarea {
  margin: .45rem 0 0;
  border-color: #aaa;
  border-radius: 0;
}
.special-order__form textarea { resize: vertical; min-height: 8rem; }
.special-order__form .primary { width: 100%; margin-top: 1.4rem; }
.special-order__form .muted { margin: 1rem 0 0; font-size: .78rem; line-height: 1.55; }
.form-success { margin: 1rem 0 0; color: #16713f; font-weight: 650; }

.product {
  gap: clamp(2.75rem, 6vw, 5.5rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(5rem, 7vw, 7.5rem);
}
.product-gallery { position: sticky; top: 6rem; }
.product-main { border-radius: var(--media-radius); }
.product-copy { max-width: 38rem; padding-top: 1rem; }
.product h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 4.25vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.product .price { margin: 1.75rem 0 .75rem; }
.product .specs { margin: 2rem 0; }
.product .specs div { min-height: 3.25rem; align-items: center; }
.thumbs { gap: .65rem; }
.thumbs button {
  min-width: 4.5rem;
  min-height: 4.5rem;
  overflow: hidden;
  border-radius: 8px;
  transition: border-color 140ms ease-out, transform 140ms ease-out;
}
.thumbs button:active { transform: scale(.96); }
.thumbs img { width: 100%; height: 100%; }
.lead-small { font-size: 1.1rem; line-height: 1.6; }
.product-benefits h2 { max-width: 54rem; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.product-benefits .grid { gap: clamp(1.5rem, 3vw, 2.5rem); }
.product-benefits article img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 1.5rem; border-radius: var(--media-radius); }
.delivery-story { align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.delivery-story > img { min-height: 32rem; border-radius: var(--media-radius); }
.product-quotes h2 { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.product-quotes blockquote { padding: 2rem 0 0; border-top: 1px solid rgb(255 255 255 / 28%); line-height: 1.55; }
.product-quotes cite { color: #bdbdbd; }
.lifestyle { align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.lifestyle > img { min-height: 32rem; border-radius: var(--media-radius); }
.product-details { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.product-details > img { width: 100%; min-height: 34rem; object-fit: cover; border-radius: var(--media-radius); }
.detail-list { margin-top: 2rem; }
.detail-list details { padding: 1.25rem 0; }
.detail-list summary { min-height: 44px; display: flex; align-items: center; }
.product-final { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; padding-top: clamp(4rem, 7vw, 7rem); padding-bottom: clamp(4rem, 7vw, 7rem); background: #1b1b1b; color: #fff; }
.product-final > img { width: 100%; height: 100%; min-height: 34rem; object-fit: cover; border-radius: var(--media-radius); }
.product-final > div { max-width: 34rem; }

@media (max-width: 900px) {
  header { gap: 12px; padding: 14px 20px; min-height: 70px; }
  header img { width: 90px; }
  .menu-toggle { display: block; margin-left: auto; }
  .cart-toggle,
  .menu-toggle { padding: 9px 12px; font-size: 13px; }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 24px 20px 28px;
    background: rgb(28 28 28 / 96%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    font-size: 16px;
    flex-direction: column;
    gap: 20px;
  }
  nav.open { display: flex; }
  .product-gallery { position: static; }
  .product-details,
  .product-final { grid-template-columns: 1fr; }
  .order-info { grid-template-columns: 1fr; }
  .product-final { padding: 4rem 1.4rem; }
  .product-final > div { padding: 0; }
}

@media (max-width: 650px) {
  :root { --content-gutter: 22px; }
  .audiences { grid-template-columns: 1fr; }
  .thumbs { overflow-x: auto; padding-bottom: .35rem; scrollbar-width: none; -ms-overflow-style: none; }
  .thumbs::-webkit-scrollbar { display: none; }
  .thumbs button { flex: 0 0 4.75rem; }
  .delivery-story > img,
  .lifestyle > img,
  .product-details > img,
  .product-final > img { min-height: 22rem; }
  .custom-size {
    display: flex;
    width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    flex-direction: column-reverse;
  }
  .custom-size > img {
    position: relative;
    height: 15rem;
    object-fit: cover;
    object-position: right center;
  }
  .custom-size__content {
    width: 100%;
    margin-left: 0;
    padding: 3.5rem 1.4rem;
  }
  .story-list { width: calc(100vw - 1.4rem); gap: 1rem; }
  .story-list blockquote { flex-basis: calc(100vw - 3.5rem); width: calc(100vw - 3.5rem); min-height: 28rem; padding: 2rem; }
  .story-list blockquote p { margin-top: 3rem; }
  .story-author { gap: 1rem; }
  .story-author img { width: 4.5rem; height: 4.5rem; }
  .story-author strong { font-size: 1.2rem; }
  .order-info article { grid-template-columns: 4.5rem 1fr; gap: 1.25rem; }
  .order-info article > img { width: 4.5rem; height: 4.5rem; }
  .special-order { padding-block: 4rem; }
  .pricing-story {
    min-height: 0;
    align-items: start;
    background-position: 38% center;
  }
  .pricing-story h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .price-factors { margin-top: 3rem; }
  .price-factors img { width: 4rem; height: 4rem; }
}

/* Shared editorial scale and responsive composition. */
:root { --media-radius: 16px; }
section { padding-block: clamp(3.5rem, 6vw, 6rem); }
main > section:not(.hero) { border-top: 0; }
h1, h2 { text-transform: none; letter-spacing: 0; font-weight: 650; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 3.2vw, 2.75rem); line-height: 1.15; margin-bottom: 2rem; }
h3 { font-size: 1.3rem; font-weight: 650; }
p { line-height: 1.65; }
.eyebrow { font-size: .75rem; letter-spacing: .1em; }
.primary, .secondary { min-height: 52px; padding: 15px 24px; font-weight: 600; border-radius: 10px; }
.secondary { display: inline-flex; align-items: center; border: 1px solid #333; background: rgb(255 255 255 / 80%); }
.hero { min-height: 620px; background: linear-gradient(90deg, #fff 0%, #ffffffef 26%, #ffffff60 58%, #ffffff00 80%), url('/assets/hero.jpg') center/cover; }
.hero h1 { max-width: 10ch; }
.hero-description { max-width: 26rem; font-size: 1.2rem; margin: 0; }
.hero-bottom { gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.crumbs { padding-inline: var(--content-gutter); }
#catalog .split { align-items: center; }
#catalog .muted { margin-top: 1rem; }
.audiences { gap: 1.5rem; }
.audiences article { border: 0; padding-top: 0; }
.audiences p { font-size: .95rem; }
.table-configurator { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 2rem 3.5rem; }
.configurator-heading { grid-column: 1 / -1; }
.configurator-heading h2 { margin: 0; }
.configurator-intro { grid-column: 1; grid-row: 2; position: sticky; top: 6rem; }
.configurator-visual { margin-top: 0; }
.configurator-visual img { aspect-ratio: 16 / 9; object-fit: contain; }
.configurator-options { grid-column: 2; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.config-group { margin: 0; }
.config-group--color { grid-column: 1 / -1; }
.config-group--color .config-choices { grid-template-columns: repeat(5,minmax(0,1fr)); }
.config-group legend, .config-size, .config-total > span { font-size: 1rem; font-weight: 600; }
.config-choices { grid-template-columns: repeat(3,minmax(0,1fr)); gap: .75rem .4rem; }
.config-icon { width: 3.8rem; height: 3.8rem; }
.config-choice { position: relative; }
.config-choice input { width: 1px; height: 1px; inset: 0 auto auto 0; margin: 0; padding: 0; }
.config-choice > span:last-child { font-size: .75rem; line-height: 1.4; }
.config-icon::after { transform: scale(.75); transform-origin: center; }
.configurator-order {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--media-radius);
  background: #f5f4f1;
}
.config-total { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .25rem 1.5rem; align-items: center; margin-top: 0; }
.config-total > span { grid-column: 1; margin-bottom: .25rem; }
.config-total .price { grid-column: 1; margin: 0; font-size: clamp(2rem, 3vw, 2.65rem); line-height: 1.15; }
.config-total .primary { grid-column: 2; grid-row: 1 / 3; width: auto; min-width: 13.5rem; white-space: nowrap; }
.config-total .muted { grid-column: 1 / -1; margin: .7rem 0 0; }
.config-size { margin: 0; }
.config-size select { min-height: 3.5rem; margin: .65rem 0 0; padding: .75rem 1rem; border: 1px solid #bdbdbb; border-radius: 10px; background-color: #fff; }
.custom-size { width: min(90%,var(--content-width)); aspect-ratio: auto; margin: 1rem auto; padding: 0; background: #f7f7f7; }
.custom-size > img { inset: 0 0 0 auto; width: 52%; height: 100%; object-fit: cover; object-position: right center; }
.custom-size__content { width: 48%; padding: clamp(2rem,4vw,3rem); background: #f7f7f7; }
.custom-size__content h2 { font-size: clamp(2rem,3vw,2.75rem); max-width: none; overflow-wrap: anywhere; }
.custom-size__content .primary { margin-top: .5rem; }
.stories h2 { margin-bottom: 2.5rem; }
.stories { overflow: clip; }
.story-controls { width: 100%; padding-right: 0; }
.story-list blockquote { min-height: 0; justify-content: flex-start; gap: 2rem; padding: 2.5rem; font-size: 1.2rem; }
.story-list blockquote p { margin: 0; }
.massive-story { padding-bottom: clamp(3.5rem,6vw,6rem); }
.massive-story > h2 { max-width: 28ch; margin-bottom: 2.5rem; }
.massive-scroll { grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; }
.massive-table { min-height: 0; }
.massive-table img { width: 100%; max-height: 420px; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 0; filter: none; }
.massive-points { grid-template-columns: 1fr; gap: .75rem; }
.massive-points article, .massive-points article:last-child { flex-direction: row; align-items: center; padding: 1.25rem; gap: 1.25rem; box-shadow: none; }
.massive-points img { width: 3rem; height: 3rem; flex: 0 0 3rem; }
.massive-points p { font-size: 1rem; }
.pricing-story h2 { max-width: 26ch; }
.pricing-story .lead { max-width: 45rem; font-size: 1.15rem; }
.price-factors { margin-top: 3rem; }
.price-factors img { width: 3.5rem; height: 3.5rem; }
.order-section .lead { max-width: 48rem; font-size: 1.1rem; }
.special-order__form input, .special-order__form textarea, select { border-radius: 10px; border-color: #b5b5b5; }
.special-order__form form { margin-top: .75rem; }
.product h1 { font-size: clamp(2.5rem,4vw,3.5rem); line-height: 1.1; font-weight: 650; }
.product { gap: 3rem; }
.product > * { min-width: 0; }
.product-main { display: block; max-width: 100%; }
.thumbs { max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.thumbs::-webkit-scrollbar { display: none; }
.product-copy { padding-top: 0; }
.product-copy .specs { margin: 1.25rem 0; }
.product-copy .price { margin: 1.25rem 0 .5rem; }
.product-copy > .muted { margin: .75rem 0 1.25rem; }
.purchase-note { font-size: .85rem; color: var(--muted); margin: 1rem 0; }
.product-benefits article img { height: 230px; }
.product-benefits article .assembly-icon { object-fit: contain; padding: 4.5rem; background: #f7f7f7; }
.delivery-summary { display: block; background: #171717; color: white; }
.delivery-summary > div { max-width: 48rem; }
.delivery-summary .muted { color: #c4c4c4; }
.product-quotes .grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.lifestyle h2 { max-width: 16ch; }
.product-final > img { min-height: 0; max-height: 460px; }
.mobile-purchase { display: none; }
.motion-ready .tilda-reveal { transform: translateY(10px); transition-duration: 300ms; }
.motion-ready .tilda-reveal.is-visible { transform: none; }
@media (max-width: 900px) {
  .hero { min-height: 560px; }
  .table-configurator { gap: 2rem; }
  .configurator-options { display: block; }
  .config-group { margin-bottom: 1.5rem; }
  .config-group--color .config-choices { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .configurator-order { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .config-total { grid-template-columns: 1fr; }
  .config-total .primary, .config-total .muted { grid-column: 1; grid-row: auto; }
  .config-total .primary { width: 100%; }
  .custom-size { display: block; }
  .custom-size > img { position: absolute; height: 100%; }
  .custom-size__content { width: 48%; padding: 2rem; }
  .massive-scroll { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .massive-points article { gap: .75rem; }
}
@media (max-width: 650px) {
  section { padding-block: 3.5rem; }
  h2 { font-size: 2rem; }
  .hero { background-position: 62% center; background-image: linear-gradient(90deg,#fffffff5,#ffffffb0),url('/assets/hero.jpg'); }
  .hero h1 { font-size: 2.7rem; }
  .hero-bottom { flex-direction: row; }
  .table-configurator { grid-template-columns: minmax(0,1fr); }
  .configurator-heading, .configurator-intro, .configurator-options, .configurator-order { grid-column: 1; grid-row: auto; position: static; }
  .configurator-visual img { max-height: 350px; }
  .config-group--color .config-choices { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .config-icon { width: 3rem; height: 3rem; }
  .configurator-order { grid-template-columns: 1fr; }
  .config-total .primary { width: 100%; }
  .custom-size__content { width: 100%; padding: 2rem 1.5rem; }
  .custom-size > img { position: relative; width: 100%; height: 200px; display: block; object-position: right; }
  .story-list blockquote { padding: 1.5rem; gap: 1.5rem; font-size: 1rem; }
  .massive-scroll { grid-template-columns: 1fr; }
  .massive-table img { max-height: 300px; }
  .product-quotes .grid { grid-template-columns: 1fr; }
  .product-final { grid-template-columns: 1fr; }
  .product-final > img { max-height: 380px; }
  .mobile-purchase { display: flex; position: fixed; bottom: 0; inset-inline: 0; z-index: 6; background: #fffffff2; backdrop-filter: blur(16px); box-shadow: 0 -2px 20px #0001; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom)); }
  .mobile-purchase span { font-size: .75rem; }
  .mobile-purchase strong { display: block; font-size: 1.2rem; }
  body:has(.mobile-purchase) { padding-bottom: 90px; }
  body:has(dialog[open]) .mobile-purchase { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .tilda-reveal { transition: none; transform: none; }
}

/* Shared navigation, footer and editorial pages. */
nav a { position: relative; white-space: nowrap; }
nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

footer {
  display: grid;
  grid-template-columns: minmax(15rem, 1.5fr) repeat(3, minmax(9rem, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--content-gutter);
}
footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
footer h3 { margin: 0 0 .75rem; font-size: .9rem; color: #aaa; text-transform: uppercase; letter-spacing: .08em; }
footer a { font-size: .95rem; }
footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
footer p { max-width: 22rem; color: #c7c7c7; line-height: 1.65; }
footer small { margin-top: .8rem; color: #888; }
.footer-brand img { margin-bottom: 1rem; }

.crumbs {
  display: flex;
  gap: .6rem;
  padding: 2rem var(--content-gutter) 0;
  color: var(--muted);
}
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.page-hero {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 0 !important;
  padding-top: clamp(4rem, 8vw, 8rem);
}
.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}
.page-lead { max-width: 46rem; margin: 0; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: #505050; }
.document-section { background: var(--paper); }
.document {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 0 rgb(0 0 0 / 6%);
}
.document h2 { margin: 3.5rem 0 1rem; font-size: clamp(1.55rem, 2.4vw, 2.15rem); line-height: 1.2; }
.document h2:first-child { margin-top: 0; }
.document p, .document li { line-height: 1.8; }
.document ul, .document ol { margin: 1rem 0 1.75rem; padding-left: 1.4rem; }
.document li { padding-left: .35rem; margin-bottom: .55rem; }
.document a { text-decoration: underline; text-decoration-color: #aaa; text-underline-offset: 4px; }
.document-callout { margin: 2rem 0; padding: 1.5rem; background: #f4f3ef; border-radius: 12px; }
.document-callout > :last-child { margin-bottom: 0; }
.document-callout--warning { border-left: 4px solid var(--red); }
.article-back { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid #ddd; }

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-layout article { max-width: 46rem; }
.about-layout article > p { font-size: 1.08rem; }
.about-layout blockquote { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #bbb; line-height: 1.65; }
.about-aside { display: grid; gap: 1.25rem; }
.about-photo { margin: 0; overflow: hidden; border-radius: 18px; background: var(--paper); }
.about-photo img { display: block; width: 100%; height: auto; aspect-ratio: 900 / 577; object-fit: cover; }
.fact-card { position: sticky; top: 7rem; padding: 2rem; color: #fff; background: #171717; border-radius: 16px; }
.fact-card span { display: block; margin-bottom: 4rem; color: #aaa; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.fact-card strong { display: block; margin-bottom: 1rem; font-size: 1.65rem; line-height: 1.2; }
.fact-card p { margin: 0; color: #c7c7c7; }
.about-video { background: var(--paper); }
.about-video__heading { max-width: 46rem; margin-bottom: 2rem; }
.about-video__heading h2 { margin-bottom: .75rem; }
.about-video__heading p:last-child { margin-bottom: 0; color: var(--muted); }
.video-player { position: relative; width: 100%; max-width: 960px; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: #171717; }
.video-poster { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: #171717; }
.video-poster img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease, opacity 220ms ease; }
.video-poster:hover img { transform: scale(1.015); opacity: .9; }
.video-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-link { margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }
.video-link a { text-decoration: underline; text-underline-offset: .2em; }

.contact-grid, .process-grid, .color-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.contact-card { min-height: 17rem; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; background: #f4f3ef; border-radius: 16px; transition: transform 180ms ease, background 180ms ease; }
.contact-card:hover { transform: translateY(-3px); background: #ecebe6; }
.contact-card span, .contact-card small { color: var(--muted); }
.contact-card strong { font-size: clamp(1.25rem, 2vw, 1.75rem); overflow-wrap: anywhere; }
.company-details { display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem; }
.company-details dl { margin: 0; }
.company-details dl div { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #ddd; }
.company-details dt { color: var(--muted); }
.company-details dd { margin: 0; }

.process-grid article { padding: 2rem; background: #f4f3ef; border-radius: 16px; }
.process-grid article > span { display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 5rem; border-radius: 50%; background: #fff; color: var(--muted); }
.process-grid h2 { font-size: 1.75rem; }
.delivery-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.delivery-cta h2 { max-width: 18ch; margin: 0; }

.color-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.color-grid article { padding: 1rem; border: 1px solid #e3e3e0; border-radius: 16px; }
.color-grid h2 { margin: 1.25rem .5rem .5rem; font-size: 1.5rem; }
.color-grid p { margin: 0 .5rem .75rem; color: var(--muted); }
.color-swatch { aspect-ratio: 4 / 3; border-radius: 11px; background-color: #ccc; background-image: linear-gradient(120deg, #fff3, #0002), repeating-linear-gradient(7deg, transparent 0 12px, #fff2 13px 15px); }
.color-swatch--natural { background-color: #c8955d; }
.color-swatch--black { background-color: #252525; }
.color-swatch--grey { background-color: #777570; }
.color-swatch--brown { background-color: #5b3828; }
.color-swatch--orange { background-color: #b7652c; }
.color-swatch--burgundy { background-color: #51252b; }
.color-note { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: end; }
.color-note h2, .color-note p { margin-bottom: 0; }

.blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blog-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #ddd; border-radius: 16px; transition: transform 180ms ease, box-shadow 180ms ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgb(0 0 0 / 8%); }
.blog-card > img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card__content { display: flex; flex: 1; flex-direction: column; padding: 1.75rem 2rem 2rem; }
.blog-card__content > span { color: #999; }
.blog-card .eyebrow { margin: 1.75rem 0 .75rem; }
.blog-card h2 { max-width: 15ch; margin-bottom: 1rem; font-size: clamp(1.65rem, 3vw, 2.5rem); }
.blog-card p:not(.eyebrow) { color: var(--muted); }
.blog-card strong { margin-top: auto; padding-top: 1rem; }
.article-figure { margin: 0 0 2.5rem; }
.article-figure img { display: block; width: 100%; height: auto; max-height: 34rem; object-fit: cover; border-radius: 14px; }
.document .video-player { margin-bottom: 0; }
.media-placeholder { min-height: 24rem; display: flex; flex-direction: column; justify-content: flex-end; gap: .7rem; margin-bottom: 3rem; padding: 2rem; color: #fff; background: linear-gradient(145deg, #3b3b3b, #151515); border-radius: 14px; }
.media-placeholder span { color: #aaa; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.media-placeholder strong { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.media-placeholder p { max-width: 35rem; margin: 0; color: #ccc; }
.not-found-actions { display: flex; gap: 1rem; padding-top: 0; border: 0 !important; }

@media (max-width: 1120px) {
  header nav { gap: 14px; font-size: 12px; }
}

@media (max-width: 900px) {
  nav a[aria-current="page"]::after { display: none; }
  footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: 1fr; }
  .fact-card { position: static; }
  .contact-grid, .process-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 12rem; }
  .company-details { grid-template-columns: 1fr; gap: 2rem; }
  .delivery-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 650px) {
  .hero h1 { letter-spacing: 0; }
  .page-hero { min-height: 22rem; }
  .page-hero h1 { font-size: 2.7rem; letter-spacing: 0; }
  .document-section { padding-inline: 0; }
  .document { padding: 2rem 1.4rem; border-radius: 0; }
  .document h2 { margin-top: 2.5rem; }
  footer { grid-template-columns: 1fr; }
  .company-details dl div { grid-template-columns: 1fr; gap: .25rem; }
  .color-grid, .blog-grid { grid-template-columns: 1fr; }
  .color-note { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-card__content { padding: 1.5rem; }
  .not-found-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .video-poster img { transition: none; }
  .contact-card, .blog-card { transition: none; }
}

/* Catalog of photographed tables from the local source folder. */
.catalog-section { background: #fff; }
.catalog-page { padding-top: clamp(2.5rem, 5vw, 4.5rem); }
.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, .8fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: 2.4rem;
}
.catalog-heading h1,
.catalog-heading h2 { margin-bottom: 0; font-size: clamp(2.2rem, 3.75vw, 3.7rem); line-height: 1.08; }
.catalog-heading > p { max-width: 31rem; margin: 0 0 .3rem; color: #555; line-height: 1.65; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.catalog-filters button {
  min-height: 2.65rem;
  padding: .5rem 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #444;
  font-size: .88rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.catalog-filters button:hover { border-color: #222; }
.catalog-filters button[aria-pressed="true"] { background: #1c1c1c; border-color: #1c1c1c; color: #fff; }
.catalog-count { margin: 0 0 1rem; color: #777; font-size: .83rem; }
.catalog-group + .catalog-group { margin-top: clamp(3rem, 6vw, 5rem); }
.catalog-group > h2 { margin-bottom: 1.5rem; font-size: clamp(1.8rem, 2.5vw, 2.7rem); }
.catalog-group[hidden] { display: none; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.catalog-item { min-width: 0; }
.catalog-item[hidden] { display: none; }
.catalog-card {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: var(--media-radius);
  background: #fff;
  color: inherit;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease;
}
.catalog-card:hover { border-color: #a7a7a7; transform: translateY(-2px); }
.catalog-card img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; background: #f4f4f4; }
.catalog-card-body { display: flex; flex-direction: column; min-height: 7.3rem; padding: 1.2rem 1.2rem 1.1rem; gap: .5rem; }
.catalog-card-title { font-size: clamp(1rem, 1.55vw, 1.22rem); font-weight: 650; line-height: 1.35; letter-spacing: -.015em; }
.catalog-card-price { font-size: clamp(1.05rem, 1.65vw, 1.35rem); font-weight: 700; font-variant-numeric: tabular-nums; }
.catalog-card-meta { display: flex; justify-content: space-between; margin-top: auto; color: #777; font-size: .83rem; }
.catalog-card-meta span { color: var(--red); font-size: 1.1rem; line-height: 1; }
.catalog-note { max-width: 44rem; margin: 1.5rem 0 0; color: #666; font-size: .88rem; }
.catalog-more { display: flex; justify-content: center; margin-top: 2.5rem; }
.catalog-more .primary { min-width: 15rem; }
.cart-toggle[hidden], #cart[hidden] { display: none !important; }
.lead-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.model-form-status:not([hidden]), .form-success:not([hidden]) { display: block; margin-top: 1rem; color: #246837; }
.model-form-status.is-error, .form-success.is-error { color: #b2362b; }

@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-heading { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card img { aspect-ratio: 4 / 3; }
  .catalog-card-body { min-height: 6.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .catalog-card, .catalog-filters button { transition: none; }
}

/* Individual photographed catalog models. */
.model-crumbs { flex-wrap: wrap; line-height: 1.5; }
.model-crumbs [aria-current="page"] { color: var(--ink); }
.model-intro { padding-top: clamp(2.4rem, 5vw, 4rem); background: #fff; }
.model-intro-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.model-intro-heading .eyebrow { margin-bottom: .8rem; }
.model-intro h1 { max-width: 17ch; margin: 0; font-size: clamp(2.2rem, 4.2vw, 4.25rem); line-height: 1.1; }
.model-intro-size { margin: .75rem 0 0; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 650; font-variant-numeric: tabular-nums; }
.model-back { flex: 0 0 auto; padding-bottom: .35rem; color: #555; font-size: .92rem; }
.model-back:hover { color: var(--red); }
.model-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(18rem, .82fr); align-items: start; gap: clamp(2rem, 5vw, 5rem); }
.model-gallery, .model-information { min-width: 0; }
.model-gallery-main { position: relative; display: grid; place-items: center; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--media-radius); background: #f2f1ef; touch-action: pan-y; }
.model-gallery-main > img { display: block; width: 100%; height: 100%; object-fit: contain; }
.model-gallery-arrow { position: absolute; top: 50%; display: grid; place-items: center; width: 2.9rem; height: 2.9rem; padding: 0; border: 1px solid #ddd; border-radius: 50%; background: rgb(255 255 255 / 93%); color: #171717; font-size: 1.4rem; line-height: 1; transform: translateY(-50%); box-shadow: 0 3px 14px rgb(0 0 0 / 9%); }
.model-gallery-arrow:hover { background: #fff; border-color: #777; }
.model-gallery-prev { left: .85rem; }
.model-gallery-next { right: .85rem; }
.model-gallery-count { position: absolute; right: .85rem; bottom: .85rem; min-width: 3.6rem; padding: .35rem .65rem; border-radius: 999px; background: rgb(255 255 255 / 92%); color: #333; font-size: .78rem; text-align: center; font-variant-numeric: tabular-nums; }
.model-thumbnails { display: flex; gap: .65rem; margin-top: .8rem; padding: .2rem .1rem .55rem; overflow-x: auto; scrollbar-width: none; }
.model-thumbnails::-webkit-scrollbar { display: none; }
.model-thumbnail { flex: 0 0 clamp(4.25rem, 7vw, 5.4rem); height: clamp(4.25rem, 7vw, 5.4rem); padding: 0; border: 2px solid transparent; border-radius: 9px; background: #f2f1ef; overflow: hidden; }
.model-thumbnail[aria-pressed="true"] { border-color: var(--red); }
.model-thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; }
.model-information h2 { margin: 0 0 .8rem; font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.2; }
.model-description { margin-bottom: 1rem; font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.7; }
.model-photo-note { margin-bottom: 2.2rem; color: #666; font-size: .88rem; line-height: 1.65; }
.model-specs { margin: 0 0 2rem; }
.model-specs > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; padding: .75rem 0; border-bottom: 1px solid #e5e5e5; font-size: .9rem; line-height: 1.45; }
.model-specs dt { color: #696969; }
.model-specs dd { margin: 0; text-align: right; font-weight: 600; }
.model-order-link { min-width: 13rem; }
.model-order { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 8vw, 7rem); align-items: start; background: #f4f3f0; }
.model-order-copy h2 { max-width: 13ch; margin-bottom: 1.25rem; font-size: clamp(2rem, 3.5vw, 3.4rem); }
.model-order-copy > p:not(.eyebrow) { max-width: 28rem; line-height: 1.65; }
.model-selected { padding-top: 1.25rem; border-top: 1px solid #d8d6d2; font-size: .91rem; }
.model-selected strong { display: block; margin-top: .3rem; }
.model-selected span { display: block; margin-top: .35rem; font-weight: 650; font-variant-numeric: tabular-nums; }
.model-order-copy > a { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.model-order-form { padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid #e4e2df; border-radius: var(--media-radius); background: #fff; }
.model-order-form label { font-size: .87rem; font-weight: 650; }
.model-order-form label span { color: var(--red); }
.model-form-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.model-order-form input, .model-order-form textarea { margin: .45rem 0 1.1rem; padding: .85rem .95rem; border: 1px solid #c9c9c9; border-radius: 9px; font-weight: 400; }
.model-order-form textarea { min-height: 7rem; resize: vertical; }
.model-form-note { margin: .2rem 0 1.2rem; color: #686868; font-size: .76rem; line-height: 1.6; }
.model-form-note a, .model-form-status a { text-decoration: underline; text-underline-offset: 3px; }
.model-order-form .primary { width: 100%; }
.model-form-status { margin: 1rem 0 0; padding: 1rem; border-radius: 9px; background: #f5f2e9; color: #333; font-size: .9rem; line-height: 1.5; }
.model-form-status[hidden] { display: none; }

@media (max-width: 900px) {
  .model-layout { grid-template-columns: minmax(0, 1fr) minmax(16rem, .9fr); gap: 2rem; }
  .model-order { gap: 2rem; }
}
@media (max-width: 700px) {
  .model-intro-heading { align-items: start; flex-direction: column; gap: .75rem; }
  .model-layout, .model-order { grid-template-columns: 1fr; }
  .model-gallery-main { aspect-ratio: 4 / 3; }
  .model-information { padding-top: .7rem; }
  .model-order-copy h2 { max-width: none; }
}
@media (max-width: 480px) {
  .model-intro h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .model-form-pair { grid-template-columns: 1fr; gap: 0; }
  .model-gallery-arrow { width: 2.5rem; height: 2.5rem; }
  .model-order-form { padding: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .model-gallery-arrow { transition: none; }
}
